Method: Ramaze::Helper::UserHelper::Wrapper#method_missing

Defined in:
lib/ramaze/helper/user.rb

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

Refer everything not known THINK: This might be quite confusing… should we raise instead?



277
278
279
280
# File 'lib/ramaze/helper/user.rb', line 277

def method_missing(meth, *args, &block)
  return unless _user
  _user.send(meth, *args, &block)
end