Method: ComposedCommands::Command#initialize

Defined in:
lib/composed_commands/command.rb

#initialize(options = {}) ⇒ Command

Returns a new instance of Command.



19
20
21
22
23
24
# File 'lib/composed_commands/command.rb', line 19

def initialize(options = {})
  @execution = Execution.new
  @state = State.new

  super(options)
end