class Pvcglue::Packages::Bundler
Public Instance Methods
install!()
click to toggle source
# File lib/pvcglue/packages/bundler.rb, line 8 def install! # TODO: Figure out why this isn't automatic connection.run!(user_name, '', 'gem install bundler') end
installed?()
click to toggle source
# File lib/pvcglue/packages/bundler.rb, line 4 def installed? connection.run_get_stdout!(user_name, '', 'which bundler') =~ /bundler/ end