Method: Nasty::CompositeCommand#run

Defined in:
lib/nasty/composite_command.rb

#run(*args) ⇒ Object



10
11
12
13
# File 'lib/nasty/composite_command.rb', line 10

def run(*args)
  @first.run(*args)
  @last.run(*args)
end