class Array

Ruby array extensions

Public Instance Methods

run(&block) click to toggle source

Run array content as shell command

# File lib/grably/core/commands/run.rb, line 4
def run(&block)
  Grably.run(self, &block)
end
run_log() click to toggle source

Run array content as shell command and print it output to STDOUT

# File lib/grably/core/commands/run.rb, line 14
def run_log
  Grably.run_log(self)
end
run_safe() click to toggle source

Run array content as shell command and handle exception automaticly

# File lib/grably/core/commands/run.rb, line 9
def run_safe
  Grably.run_safe(self)
end