Method: Context::Controller#method_missing

Defined in:
lib/context/controller.rb

#method_missing(method_name, *args, &block) ⇒ Object (private)



18
19
20
21
22
23
24
# File 'lib/context/controller.rb', line 18

def method_missing(method_name, *args, &block)
  if @__context.respond_to?(method_name)
    @__context.public_send(method_name, *args, &block)
  else
    super
  end
end