Sha256: 93b695452082b2b6123ca38a5d4b61758b77dd715115d9c3e41aeec5d6fdf33d

Contents?: true

Size: 436 Bytes

Versions: 24

Compression:

Stored size: 436 Bytes

Contents

module BinInstall
  module Gem
    def self.install
      puts 'Installing gems...'.white
      system('gem install bundler --conservative')
      system('bundle install')
    end

    def self.install!
      puts 'Installing gems...'.white
      BinInstall.system!('gem install bundler --conservative')
      BinInstall.system!('bundle install')
    end

    def self.installed?
      Shell.executable_exists?('gem')
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
bin_install-0.0.12 lib/bin_install/gem.rb
bin_install-0.0.11 lib/bin_install/gem.rb
bin_install-0.0.10 lib/bin_install/gem.rb
bin_install-0.0.9 lib/bin_install/gem.rb