Method: CollinsShell::Console::Asset#method_missing

Defined in:
lib/collins_shell/console/asset.rb

#method_missing(meth, *args, &block) ⇒ Object (protected)



101
102
103
104
105
106
107
108
109
# File 'lib/collins_shell/console/asset.rb', line 101

def method_missing meth, *args, &block
  if meth.to_sym == :asset then
    underlying
  elsif @asset_client.respond_to?(meth) then
    @asset_client.send(meth, *args, &block)
  else
    super
  end
end