Switch the order of how the variables are listed in the readme

This commit is contained in:
Nick Janetakis
2014-07-01 15:23:51 -04:00
parent 6144181edf
commit 997f8d6d0a
2 changed files with 9 additions and 9 deletions

View File

@@ -13,12 +13,6 @@ ansible-ruby solves this by using rvm to install 1 or more versions of ruby. It
Below is a list of default values along with a description of what they do.
```
# Which user should own all of rvm's files?
rvm1_user: '{{ ansible_ssh_user }}'
# Which group should rvm be installed to?
rvm1_group: 'rvm'
# Install 1 or more versions of ruby, just add them to the list.
# The last version listed will be set as the default ruby.
# Change it to `ruby_rubies:` if you want no rubies installed.
@@ -29,6 +23,12 @@ rvm1_rubies:
# Example: `rvm1_delete_ruby: ruby-2.1.0`
rvm1_delete_ruby: ''
# Which user should own all of rvm's files?
rvm1_user: '{{ ansible_ssh_user }}'
# Which group should rvm be installed to?
rvm1_group: 'rvm'
# Where should the rvm-installer and other temp files be downloaded to?
rvm1_temp_download_path: '/usr/local/src'