https://github.com/rom-rb/rom-rb.org
The official rom-rb website
https://github.com/rom-rb/rom-rb.org
rom-rb
Last synced: 3 months ago
JSON representation
The official rom-rb website
- Host: GitHub
- URL: https://github.com/rom-rb/rom-rb.org
- Owner: rom-rb
- Created: 2013-06-02T10:50:47.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2023-03-25T10:48:59.000Z (about 2 years ago)
- Last Synced: 2025-01-10T16:53:52.925Z (4 months ago)
- Topics: rom-rb
- Language: SCSS
- Homepage: https://rom-rb.org/
- Size: 5.7 MB
- Stars: 45
- Watchers: 12
- Forks: 108
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[actions]: https://github.com/rom-rb/rom-rb.org/actions
[chat]: https://rom-rb.zulipchat.com# rom-rb.org [][chat]

The official rom-rb website.
## Build Instructions
1. Install gem dependencies:
```shell
bundle install
```2. Install node dependencies:
```shell
npm install
```
3. Clone and symlink docsites from individual rom-rb repositories:
```
bundle exec rake projects:symlink
```
4. Serve locally at [http://localhost:4567](http://localhost:4567):```shell
bundle exec middleman server
```or build to `/docs`:
```shell
bundle exec middleman build
```## Windows Instructions
If you're getting the following error:
```
Unable to load the EventMachine C extension; To use the pure-ruby reactor, require 'em/pure_ruby'
```
or features such as Live Reload are not working then it's because the
C extension for eventmachine needs to be installed.
```
gem uninstall eventmachine
```
take note of the version being used. (At the time of writing '1.2.0.1')
```
gem install eventmachine -v '[VERSION]' --platform=ruby
```
If you have a proper environment with DevKit installed then eventmachine with its
C extension will be installed and everything will work fine.