RailsCasts Pro episodes are now free!

Learn more or hide this

Kiminari Homma's Profile

GitHub User: honkimi

Site: http://bokukoko.hatenablog.com/

Comments by Kiminari Homma

Avatar

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'