Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using database authentication in devise(current gem) on rails 3 and I get the following error when trying to log in with username/password.

no such file to load -- bcrypt_ext 

This error occurred while loading the following files:
   bcrypt
   bcrypt_ext

I have previously "Successfully installed bcrypt-ruby-2.1.2" gem.

Any ideas? I also tried giving bundler the git repo address and fetching the master, but it doesn't solve the issue.

share|improve this question

3 Answers

I had this problem as well. When I installed the gem, the output told me

Building native extensions.  This could take a while...
Successfully installed bcrypt-ruby-3.0.1

so I assumed that it had, in fact, built native extensions. But when I went hunting in .../gems/bcrypt-ruby-2.1.4/ext/mri I saw that it not appear to have built anything.

I manually went in and ran

cd [path to your gems folder]/gems/bcrypt-ruby-2.1.4/ext/mri
ruby extconf.rb
make
sudo make install

This did the trick for me.

share|improve this answer
This worked for me. I was getting the most random bcrypt error. Running rails server would work...then I would switch branches, switch back without making changes...and then rails server wouldn't work anymore saying can't find bcrypt. I followed this and now it works. thanks. – Matthew Berman Oct 25 '11 at 1:51
Had a similar problem while bundling the gems in a subdirectory of the passenger root. This worked for me. – infamouse Feb 13 at 23:56

Do you have these in your Gemfile?

gem "bcrypt-ruby", :require => "bcrypt"

Also -- this issue on devise might apply, check it out

share|improve this answer
Have this line in the Gemfile, still the same problem. – Victor Piousbox Apr 24 at 2:35

I'm having the same problem when using devise. And yes, I do have

gem "bcrypt-ruby", :require => "bcrypt"

in my Gemfile.

Here is my log:

no such file to load -- bcrypt_ext

/webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 239 in require' 1 /webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 239 inrequire' 2 /webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 225 in load_dependency' 3 /webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 596 innew_constants_in' 4 /webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 225 in load_dependency' 5 /webapps/nth/vendor/bundle/ruby/1.8/gems/activesupport-3.0.3/lib/active_support/dependencies.rb 239 inrequire' 6 /webapps/nth/vendor/bundle/ruby/1.8/gems/bcrypt-ruby-2.1.4/lib/bcrypt.rb 9
7 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 68 in require' 8 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 68 inrequire' 9 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 66 in each' 10 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 66 inrequire' 11 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 55 in each' 12 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler/runtime.rb 55 inrequire' 13 /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/bundler-1.0.10/lib/bundler.rb 120 in require' 14 /webapps/nth/config/application.rb 7
15 /webapps/nth/config/environment.rb 2 in
require' 16 /webapps/nth/config/environment.rb 2
17 config.ru 3 in require' 18 config.ru 3
19 /webapps/nth/vendor/bundle/ruby/1.8/gems/rack-1.2.1/lib/rack/builder.rb 46 in
instance_eval' 20 /webapps/nth/vendor/bundle/ruby/1.8/gems/rack-1.2.1/lib/rack/builder.rb 46 in initialize' 21 config.ru 1 innew' 22 config.ru

I'm using rails3+REE+passenger+nginx+sqlite3

share|improve this answer
Exact same config, same error. Switched to mysql and it works... – Michaël Witrant Apr 29 '11 at 17:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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