aboutsummaryrefslogtreecommitdiffstats
path: root/lib/controller_patches.rb
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2016-04-26 11:39:52 +0100
committerLouise Crow <louise.crow@gmail.com>2016-04-26 11:39:52 +0100
commitc7ea96ca87e6a4293247c47b7e4991477de56967 (patch)
tree7eb1ddca092342f245b1a877764085ad04603b89 /lib/controller_patches.rb
parentc596594a6907ea478a3f62a6adfa8688d60412a2 (diff)
parent62b5ac9fab138f17bfe8cfa7654af75ca341f55b (diff)
Merge branch 'remove-examples'
Diffstat (limited to 'lib/controller_patches.rb')
-rw-r--r--lib/controller_patches.rb21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/controller_patches.rb b/lib/controller_patches.rb
index 9959f86..5c48e70 100644
--- a/lib/controller_patches.rb
+++ b/lib/controller_patches.rb
@@ -5,14 +5,15 @@
# See http://stackoverflow.com/questions/7072758/plugin-not-reloading-in-development-mode
#
Rails.configuration.to_prepare do
- # Example adding an instance variable to the frontpage controller
- GeneralController.class_eval do
- def mycontroller
- @say_something = "Greetings friend"
- end
- end
- HelpController.class_eval do
- def help_out
- end
- end
+ # Example adding an instance variable to the frontpage controller
+ # GeneralController.class_eval do
+ # def mycontroller
+ # @say_something = "Greetings friend"
+ # end
+ # end
+ # Example adding a new action to an existing controller
+ # HelpController.class_eval do
+ # def help_out
+ # end
+ # end
end