class SleepingKingStudios::Tasks::Apps::Bundle::UpdateRunner

Service object to run bundle update as an external process.

Public Instance Methods

call(gemfile) click to toggle source
# File lib/sleeping_king_studios/tasks/apps/bundle/update_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/update_runner.rb, line 17
def base_command
  'bundle update'
end