Skip to content

Instantly share code, notes, and snippets.

@abriening
Created May 4, 2011 13:17
Show Gist options
  • Save abriening/955190 to your computer and use it in GitHub Desktop.
Save abriening/955190 to your computer and use it in GitHub Desktop.
Gem Install Chef Recipe
bash "install #{name} gems" do
cwd "/tmp/#{name}"
code <<-end_code
for gem_file in `ls *.gem`
do
gem install ./$gem_file
done
end_code
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment