Exception: Ext::Forward::Forwarder

Inherits:
Exception
  • Object
show all
Defined in:
lib/ext/forward.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(controller, method, *args) ⇒ Forwarder

Returns a new instance of Forwarder.



74
75
76
# File 'lib/ext/forward.rb', line 74

def initialize(controller, method, *args)
  @controller, @method, @args = controller, method, args
end

Instance Attribute Details

#argsObject

Returns the value of attribute args.



72
73
74
# File 'lib/ext/forward.rb', line 72

def args
  @args
end

#controllerObject

Returns the value of attribute controller.



72
73
74
# File 'lib/ext/forward.rb', line 72

def controller
  @controller
end

#methodObject

Returns the value of attribute method.



72
73
74
# File 'lib/ext/forward.rb', line 72

def method
  @method
end