Hi everyone, I'm using devise for user authentication on my webapp. But I have a problem to deploy my webapp on heroku: everything work fine in development, git pushing on heroku working fine, but when I access my app I have the following error message :
App crashed This application is temporarily offline. If you're the administrator of this app, please check your heroku logs for the backtrace. heroku logs say: no such file to load -- bcrypt (LoadError) -> devise/models/database_authenticable.rb line 2 I assume a error with devise and bcrypt in my bundle, nevertheless I have : gem 'devise' gem 'bcrypt-ruby' when I ran bundle install on dev I had ... Using bcrypt-ruby (2.1.4) Using warden (1.0.3) Using devise (1.2.rc) ... But bundle on heroku doesn't install gem bcrypt-ruby. I only see devise, warden (and other gem), but not bcrypt-ruby. Do you know why ? And how doing a gem install on heroku ? Or how I can check installed gem (heroku gem list XXX doesn't work) ? In advance thanks for reading and your reply :) vincent -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
