Class: Space::App::Command::Refresh

Inherits:
Space::App::Command show all
Defined in:
lib/space/app/command/builtin.rb

Instance Attribute Summary

Attributes inherited from Space::App::Command

#args, #project, #scope

Instance Method Summary collapse

Methods inherited from Space::App::Command

#initialize

Constructor Details

This class inherits a constructor from Space::App::Command

Instance Method Details

#runObject



19
20
21
22
23
24
25
26
# File 'lib/space/app/command/builtin.rb', line 19

def run
  Bundler.with_clean_env do
    project.bundler.refresh
    in_scope do |repo|
      repo.refresh
    end
  end
end