Class: Space::App::Command::Remote

Inherits:
Space::App::Command show all
Defined in:
lib/space/app/command/development.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



17
18
19
20
21
22
23
24
25
# File 'lib/space/app/command/development.rb', line 17

def run
  Shell::Watcher.suspend do
    repos.each do |repo|
      system "bundle config --delete local.#{repo.name}"
    end
    confirm
  end
  project.bundler.refresh
end