Method: DO::Commands#method_missing

Defined in:
lib/do/commands.rb

#method_missing(method, *args, &block) ⇒ Object



123
124
125
# File 'lib/do/commands.rb', line 123

def method_missing(method, *args,  &block)
  current_server && current_server.respond_to?(method) ? current_server.send(method, *args) : super(method, *args,  &block)
end