Rails says, "Undefined method 'call' for SomeController"

By: Johnathon Wright on: June 04, 2009

20 minutes of my life were lost because I hand-generated a controller.

If your controller looks like this:

---ruby class SomeController

end

it should look like this:

---ruby class SomeController < ApplicationController

end

:)



Back