Skip to content

Commit

Permalink
Update user_installs attribute to be an array of hashes in README.
Browse files Browse the repository at this point in the history
References sous-chefs#38
  • Loading branch information
fnichol committed Oct 5, 2011
1 parent a9fcb24 commit 5f89472
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ development), include `recipe[rvm::user]` in your run_list and add a user
hash to the `user_installs` attribute list. For example:

node['rvm']['user_installs'] = [
'wigglebottom' => {
{ 'user' => 'wigglebottom'
'default_ruby' => 'rbx',
'rubies' => ['1.9.2', '1.8.7']
}
Expand All @@ -125,7 +125,7 @@ LWRPs, then include `recipe[rvm::user_install]` in your run_list and add a
user hash to the `user_installs` attribute list. For example:

node['rvm']['user_installs'] = [
'wigglebottom' => {}
{ 'user' => 'wigglebottom' }
]

See the **Resources and Providers** section for more details.
Expand Down Expand Up @@ -341,7 +341,7 @@ A list of user specific RVM installation hashes. The `user_install` and
The hash keys correspond to the default/system equivalents. For example:

node['rvm']['user_installs'] = [
'jdoe' => {
{ 'user' => 'jdoe',
'upgrade' => "head",
'default_ruby' => 'ree',
'rvm_gem_options' => "",
Expand All @@ -352,7 +352,7 @@ The hash keys correspond to the default/system equivalents. For example:
{ 'name' => 'rake' }
]
},
'jenkins' => {
{ 'user' => 'jenkins',
'version' => '1.7.0',
'default_ruby' => 'jruby-1.6.3',
'rubies' => ['1.8.7', '1.9.2', 'ree', 'rbx'],
Expand Down

0 comments on commit 5f89472

Please sign in to comment.