Reputation: 27
I am trying to install scambra/devise_invitable gem. Both manual and automatic ways of installing it do not work.
I am adding the gem to the Gemfile, running bundle install, after which attempt to either run rails generate devise_invitable:install
or rails g migration CreateDeviseInvitable
with its corresponding code, and in both cases I am getting the stack trace placed in the gist: https://gist.github.com/anonymous/c0b40c1970dd586ed8c8. If I keep the module in my Gemfile, I am unable to generate to continue the steps decribed in https://github.com/scambra/devise_invitable. I also cannot start the server anymore, unless I remove the gem.
Upvotes: 0
Views: 123
Reputation: 68
It looks like a fix for this was merged into devise_invitable on December 31, 2015. Your version of devise_invitable (1.5.5) was released on December 17, 2015. If you're committed to your current versions of Devise and Rails, you might try pulling the gem from GitHub instead of RubyGems.
Upvotes: 1