Class: Avm::Tools::Runner::AppSrc::Ruby::Bundler::GemfileLock

Inherits:
Object
  • Object
show all
Defined in:
lib/avm/tools/runner/app_src/ruby/bundler/gemfile_lock.rb

Instance Method Summary collapse

Instance Method Details

#runObject



21
22
23
24
25
26
27
28
29
# File 'lib/avm/tools/runner/app_src/ruby/bundler/gemfile_lock.rb', line 21

def run
  loop do
    git_reset_checkout
    bundle_update
    bundle_install
    git_continue
    break if complete?
  end
end