Exception: Ext::Forward::Forwarder
- Defined in:
- lib/ext/forward.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#controller ⇒ Object
Returns the value of attribute controller.
-
#method ⇒ Object
Returns the value of attribute method.
Instance Method Summary collapse
-
#initialize(controller, method, *args) ⇒ Forwarder
constructor
A new instance of Forwarder.
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
#args ⇒ Object
Returns the value of attribute args.
72 73 74 |
# File 'lib/ext/forward.rb', line 72 def args @args end |
#controller ⇒ Object
Returns the value of attribute controller.
72 73 74 |
# File 'lib/ext/forward.rb', line 72 def controller @controller end |
#method ⇒ Object
Returns the value of attribute method.
72 73 74 |
# File 'lib/ext/forward.rb', line 72 def method @method end |