Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/grably/core/commands/run.rb
Overview
Ruby array extensions
Instance Method Summary collapse
-
#run(&block) ⇒ Object
Run array content as shell command.
-
#run_log ⇒ Object
Run array content as shell command and print it output to STDOUT.
-
#run_safe ⇒ Object
Run array content as shell command and handle exception automaticly.
Instance Method Details
#run(&block) ⇒ Object
Run array content as shell command
4 5 6 |
# File 'lib/grably/core/commands/run.rb', line 4 def run(&block) Grably.run(self, &block) end |