Method: Command::QuickInterpreter#process_input

Defined in:
lib/command-set/interpreter/quick.rb

#process_input(*words) ⇒ Object

Accepts it’s input as multiple arguments for convenience



72
73
74
75
76
77
78
# File 'lib/command-set/interpreter/quick.rb', line 72

def process_input(*words)
  if words.length == 1 and Array === words.first
    super words.first
  else
    super(words)
  end
end