RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: honkimi
Site: http://bokukoko.hatenablog.com/
In my case, the order of each gems in gemfile were wrong.
NG gem 'sorcery' gem 'mongoid', github: 'mongoid/mongoid' gem 'bson_ext'
OK gem 'mongoid', github: 'mongoid/mongoid' gem 'bson_ext' gem 'sorcery'
In my case, the order of each gems in gemfile were wrong.
NG
gem 'sorcery'
gem 'mongoid', github: 'mongoid/mongoid'
gem 'bson_ext'
OK
gem 'mongoid', github: 'mongoid/mongoid'
gem 'bson_ext'
gem 'sorcery'