Jass
Jass

Reputation: 43

linking of devise gem and rapidfire gem with application.html.erb common properties

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

Error

Upvotes: 0

Views: 130

Answers (1)

jfr
jfr

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

Related Questions