metasploitable3/chef/cookbooks/metasploitable/recipes/ruby23.rb

20 lines
281 B
Ruby
Raw Normal View History

#
# Cookbook:: metasploitable
# Recipe:: ruby23
#
# Copyright:: 2017, Rapid7, All Rights Reserved.
#
#
2017-04-20 20:43:11 +02:00
apt_repository 'rvm' do
uri 'ppa:brightbox/ruby-ng'
end
execute 'apt-get update' do
command 'apt-get update'
end
package 'ruby2.3'
package 'ruby2.3-dev'
package 'bundler'