Module: ActsAsConnectable::Controller::InstanceMethods
- Defined in:
- lib/application_controller.rb
Instance Method Summary collapse
-
#second_controller_instance_method ⇒ Object
This method is available inside application_controller but it is not being automatically executed.
- #test_controller_instance_method ⇒ Object
Instance Method Details
#second_controller_instance_method ⇒ Object
This method is available inside application_controller but it is not being automatically executed. Notice the before_filter line above that is automatically executing the first method.
19 20 21 |
# File 'lib/application_controller.rb', line 19 def second_controller_instance_method puts "###### This method is not automatically run inside application_controller, but it is available inside application_controller. To see this example add 'before_filter :second_controller_instance_method' at the top of your app's application_controller.rb ######" end |
#test_controller_instance_method ⇒ Object
12 13 14 |
# File 'lib/application_controller.rb', line 12 def test_controller_instance_method puts "###### This text is coming from an application_controller before_filter that is being declared and triggered from inside the engine. This before_filter is automatically integrated in when the engine is installed into an app. Look inside lib/application_controller.rb to find it. ######" end |