Method: Command::OutputStandin#method_missing

Defined in:
lib/command-set/results.rb

#method_missing(m, *args) ⇒ Object

:nodoc:



60
61
62
63
64
65
# File 'lib/command-set/results.rb', line 60

def method_missing(m, *args)  # :nodoc:
  unless @_dc_obj.respond_to?(m)
    super(m, *args)
  end
  @_dc_obj.__send__(m, *args)
end