summaryrefslogtreecommitdiff
path: root/providers/gem.rb
blob: 9c05f605b6cb6e08d4ecd9a7c26d477565834a44 (plain)
1
2
3
4
5
6
7
8
9
10
use_inline_resources

action :install do
  bash "gem_#{new_resource.name}" do
    code <<-BASH
source /etc/profile.d/rbenv.sh
gem install #{new_resource.name} --no-ri --no-rdoc
BASH
  end
end