Sha256: 1e01b2259b2b9a479e61bbda0debcdd73e75863aff75277e03fb400bcba67607
Contents?: true
Size: 410 Bytes
Versions: 34
Compression:
Stored size: 410 Bytes
Contents
class Fanforce::PluginFactory::CLI::Bundler include Fanforce::PluginFactory::CLI::Utils attr_reader :plugin def initialize(plugin) @plugin = plugin end def setup if Gem::Specification::find_all_by_name('bundler').empty? puts 'Installing Bundler... ' `gem install bundler` puts 'DONE' end console_command('bundle', true) puts 'DONE'.format(:green) end end
Version data entries
34 entries across 34 versions & 1 rubygems