From b940c5ae46ccfa88e99bcfd45e612d66a638c194 Mon Sep 17 00:00:00 2001 From: Ryan Duryea Date: Thu, 2 Feb 2017 14:57:37 -0800 Subject: [PATCH] Add missing commas to README One of the examples was missing some commas and resulted in invalid YAML --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 16890e6..cd584ed 100644 --- a/README.md +++ b/README.md @@ -101,12 +101,12 @@ If you need to pass a list of ruby versions, pass it in an array like so. roles: - { role: rvm_io.ruby, tags: ruby, - become: yes + become: yes, rvm1_rubies: ['ruby-2.2.5','ruby-2.3.1'], - rvm1_install_flags: '--auto-dotfiles' # Remove --user-install from defaults - rvm1_install_path: /usr/local/rvm # Set to system location - rvm1_user: root # Need root account to access system location + rvm1_install_flags: '--auto-dotfiles', # Remove --user-install from defaults + rvm1_install_path: /usr/local/rvm, # Set to system location + rvm1_user: root # Need root account to access system location } ``` _rvm_rubies must be specified via `ruby-x.x.x` so that if you want_