Top "Applicationcontroller" questions

"undefined method" when calling helper method from controller in Rails

Does anyone know why I get undefined method `my_method' for #<MyController:0x1043a7410> when I call my_…

ruby-on-rails helper helpers applicationcontroller
How to set cookies in ApplicationController?

I need to set cookies in my ApplicationController but I'm not sure how. I've tried using cookies - nothing, using …

ruby-on-rails cookies applicationcontroller
How do you route an action to the application controller in Rails 3?

I am using the gem rails3-jquery-autocomplete and had no problems with it, however I have now moved my autocomplete …

ruby-on-rails ruby-on-rails-3 routes applicationcontroller
How can I extend ApplicationController in a gem?

I thought I'd come up with a slick way to extend ApplicationController in a Rails 3.x gem. In my gem's …

ruby-on-rails ruby-on-rails-3 gem applicationcontroller load-order
'protect_from_forgery' in Application controller in Rails

In the config/application_controller.rb file in my Rails application directory, I found the code below: class ApplicationController < …

ruby-on-rails applicationcontroller