-
-
Save ryansch/928628 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby_block "rvm use default" do | |
block do | |
Chef::Mixin::Command.popen4('bash -l -c "rvm use default && env"') do |p,i,o,e| | |
o.each_line do |line| | |
next if line.nil? | |
line.chomp! | |
next if line.empty? | |
env_bits = line.split("=") | |
ENV[env_bits[0]] = env_bits[1] | |
end | |
end | |
end | |
end | |
# All future stuff should get the rvm environment | |
gem_package "rails" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment