module Mucks::Executor

Public Instance Methods

run(command, session = nil) click to toggle source
# File lib/mucks/mucks.rb, line 305
def run(command, session = nil)
  puts command if Config.verbose || Config.dry_run
  `#{command}` unless Config.dry_run
  $?
end