module Nasty::Command

Public Instance Methods

then(next_command) click to toggle source
# File lib/nasty/command.rb, line 3
def then(next_command)
  CompositeCommand.new(self, next_command)
end