Class: Space::App::Command::Execute

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



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/space/app/command/builtin.rb', line 5

def run
  Bundler.with_clean_env do
    in_scope do |repo|
      repo.buffering do
        puts
        repo.execute(*args)
      end
    end
    confirm
  end
end