class SleepingKingStudios::Tasks::Apps::Bundle::InstallRunner

Service object to run bundle install as an external process.

Public Instance Methods

call(gemfile) click to toggle source
# File lib/sleeping_king_studios/tasks/apps/bundle/install_runner.rb, line 9
def call gemfile
  command = build_command :env => { :bundle_gemfile => gemfile }

  stream_process(command)
end

Private Instance Methods

base_command() click to toggle source
# File lib/sleeping_king_studios/tasks/apps/bundle/install_runner.rb, line 17
def base_command
  'bundle install'
end