Method: Bowline::Desktop::Proxy#method_missing
- Defined in:
- lib/bowline/desktop/proxy.rb
#method_missing(sym, *args) ⇒ Object
:nodoc:
66 67 68 69 70 71 72 73 |
# File 'lib/bowline/desktop/proxy.rb', line 66 def method_missing(sym, *args) #:nodoc: method_name = sym.to_s @crumbs << [method_name, args] if method_name.last == "=" call end self end |