Reputation: 43
I am trying to implement Rapidfire Gem in my application which include Devise Gem for Login process. All goes well, but the problem occurs when I trying to set layout of Edit and logout through Application.html.erb file.
The ERROR is shown of
NameError in Rapidfire::QuestionGroups#index'
on Rapidfire's index page
Upvotes: 0
Views: 130
Reputation: 13
First of all, the root cause should be that there are no devise routes available in the engine by definition. You have to connect it first.
There's a discussion over here on how to do that: https://github.com/plataformatec/devise/issues/2827
Upvotes: 1