Class: Isomorfeus::Installer::Bundle

Inherits:
Object
  • Object
show all
Defined in:
lib/isomorfeus/installer/bundle.rb

Class Method Summary collapse

Class Method Details

.executeObject



4
5
6
7
8
9
10
# File 'lib/isomorfeus/installer/bundle.rb', line 4

def self.execute
  puts 'Executing bundle install:'
  bundle_command = Gem.bin_path("bundler", "bundle")
  Bundler.with_original_env do
    system("#{Gem.ruby} #{bundle_command} install")
  end
end