You can see the documentation live online at https://rvm.io/.
For small changes like single wording fixes it is enough to use Github builtin editor, navigate to https://github.com/rvm/rvm-site/tree/master/content, find the page to fix and press the Edit button, try to give meaningful description so it is easier to understand why this change is needed.
If you're going to help you'll first need to get the site running locally. Start by forking the repository and cloning the fork.
The site relies on a specific verion of Ruby, which is listed in the Gemfile. You can run install it with:
rvm use . --install --create
rvm-site requires a few gems that can be found in Gemfile
, including:
To install the gemset file, use
bundle install
If you are in RVM and have the proper version of Ruby running already,
simply clone this repository and cd to
the directory. The project .rvmrc
will be loaded and you can open in your editor and
start hacking away.
If you would like to view the changes locally as you hack, use nanoc-guard:
# in window/tab 1
guard
# in window/tab 2
nanoc view
It's required to reload page after changing code.
Validating site links integrity with Nanoc:
rake test
Once you are satisfied with your changes to the documentation push it back to your Github fork and initiate a pull request.
Thanks for taking the time to work on the RVM documentation project!