Class: Space::Action::Execute

Inherits:
Space::Action show all
Defined in:
lib/space/action/builtin.rb

Instance Attribute Summary

Attributes inherited from Space::Action

#args, #project, #scope

Instance Method Summary collapse

Methods inherited from Space::Action

#initialize

Constructor Details

This class inherits a constructor from Space::Action

Instance Method Details

#runObject



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

def run
  in_scope do |repo|
    in_repo(repo) do
      system(*args)
      puts
    end
  end
  confirm
end