public Method

Rio.method_missing(sym,*args,&block)

There's no documentation for this item.

Source Code

# File rio.rb, line 109
def method_missing(sym,*args,&block) #:nodoc:
  #p callstr('method_missing',sym,*args)

  result = target.__send__(sym,*args,&block)
  return result unless result.kind_of? State::Base and result.equal? target

  self
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.