summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-08-14 13:40:31 -0600
committermo khan <mo@mokhan.ca>2015-08-14 13:40:31 -0600
commit41dfecb0269c61ee1b8c30ef4049fe7e18fd9a07 (patch)
tree576b8b3fe313cdd5a13a715479da28331672c74a
parent6ddb222b8c6bdc15c2ee87beb14b8c1a80b0a49e (diff)
use MRI.
-rw-r--r--config/chef_apply.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/chef_apply.rb b/config/chef_apply.rb
index 7be057c..3eda972 100644
--- a/config/chef_apply.rb
+++ b/config/chef_apply.rb
@@ -73,13 +73,13 @@ git "/usr/local/rbenv/plugins/ruby-build" do
action :sync
end
-bash "install_jruby" do
+bash "install_ruby" do
user "root"
not_if { ::File.exist?("/usr/local/rbenv/shims/ruby") }
code <<-EOH
source /etc/profile.d/rbenv.sh
- rbenv install jruby-1.7.11
- rbenv global jruby-1.7.11
+ rbenv install 2.2.2
+ rbenv global 2.2.2
EOH
end