Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to setup Devise inside a Rails Engine to handle auth for the main app. The engine is a mountable isolated engine mounted at '/ryte'. When I run my specs I get an undefined method "authenticate_admin" error. My engines routes file looks like:

Ryte::Engine.routes.draw do
  devise_for :admins, {
    class_name: "Ryte::Admin",
    module: :devise
  }
end

I have included:

config.include Devise::TestHelpers, :type => :controller

In my devise.rb initializer I have:

config.router_name = :ryte

In the spec_helper.rb. I've also mounted the app inside the engine's dummy app. The model for admins is Ryte::Admin. Lastly I am placing the before_filter for authenticate_admin inside my application controller. I'm confused why this error is coming up. Help is appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.