Sha256: 979f8b9f111c3b9a3b501fa8c969c9d4ce5ad6b56ea63bf7413d71fe15cc4296
Contents?: true
Size: 392 Bytes
Versions: 18
Compression:
Stored size: 392 Bytes
Contents
class Fanforce::AppFactory::CLI::Bundler include Fanforce::AppFactory::CLI::Utils attr_reader :app def initialize(app) @app = app 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
18 entries across 18 versions & 1 rubygems