On Wed, Mar 20, 2013 at 11:21 AM, Ezequiel Delpero wrote:
> Finally I could solve the problem. The problem was on the definition of
> the anonymous controller on the spec:
>
> instead of:
>
> controller do
> def index
> end
> end
>
> I used:
>
> controller(Admins::Base) do
Finally I could solve the problem. The problem was on the definition of
the anonymous controller on the spec:
instead of:
controller do
def index
end
end
I used:
controller(Admins::Base) do
def index
end
end
You need to specify always the anonymous cont
Hello there,
I'm creating a base controller for the admin section of a project. All
controllers whitin the admin section will inherit from it.
#
#app/controllers/admins/base_controller.rb
class Admins::BaseController < ApplicationController
l