I just switched to Devise/Omniauth combo and everything is working properly on my localhost server. However when I uploaded to heroku the app crashes when the user clicks sign up on the traditional sign up form (not omniauth login). I am using rails 3. My logs say

LoadError (no such file to load --bcrypt): app/controllers/registrations_controller.rb:11 in 'build_resource' app/controllers/registrations_controller.rb:4 in create'

The referenced controller:

class RegistrationsController < Devise::RegistrationsController

  def create
    super
    session[:omniauth] = nil unless @user.new_record?
  end

  private

  def build_resource(*args)
    super
    if session[:omniauth]
      @user.apply_omniauth(session[:omniauth])
      @user.valid?
    end
  end 
end

Line 4 and 11 are the super since the registration controller is overriding Devise. What's going wrong? Thanks.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Make sure you have:

gem 'bcrypt-ruby'

in your Gemfile. If not, add it and run

bundle install

Also, you may have to delete your Gemfile.lock and try to push to Heroku again.

link|improve this answer
Thank you. It did require deleting Gemfile.lock to get it to install, but it is now working. – John Feb 1 '11 at 19:02
feedback

I had the same problem running the Omniauth railscast on heroku.

gem 'bcrypt-ruby'

Did the trick and no need to delete Gemfile.lock. I also needed:

heroku stack:migrate bamboo-mri-1.9.2
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.