-1

我的机器是 Windows 8 32 位机器,我有 ruby​​ 2.1.8。

当我尝试在 puma 和 rails 服务器中打开我的应用程序时遇到问题。我什至无法运行bundle install。错误是:

in `require': 126: The specified module could not be found.
  - C:/Ruby21/lib/ruby/gems/2.1.0/gems/bcrypt-ruby-3.1.1.rc1-x86-mingw32/lib/bcrypt_ext.so (LoadError)

并且捆绑安装错误是:

could not find gem 'bcrypt (=3.1.5 rc1) x64-mingw32' in any of the gemfile ruby 2.1.8

同样的问题也发生在 bcrypt 版本 3.0.0 和 3.1.1 上

我的 Gemfile 是:

source 'http://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.9'

# Use sqlite3 as the database for Active Record
gem 'pg'

gem 'plivo'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'

# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
gem 'coffee-script-source', '1.8.0'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library gem 'jquery-rails'

gem 'rails-jquery-autocomplete', :git 'https://github.com/AyushRuiaHW/rails-jquery-autocomplete.git'

# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'

group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false 
end

gem 'tzinfo-data'
gem 'faraday'
gem 'hypdf', '~> 1.0.12'
gem 'currency-in-words'
gem "jquery-ui-rails"
gem 'Instamojo-rb'
gem "kaminari"
gem "rails-erd"
gem 'levenshtein', '~> 0.2.2'
gem "lol_dba"
gem "bullet", :group => "development"
gem "bootstrap-sass"
gem 'rack-mini-profiler'
gem 'newrelic_rpm'
gem 'puma_worker_killer'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano', group: :development

# Use debugger
# gem 'debugger', group: [:development, :test]

gem 'postmark-rails'
gem 'bcrypt-ruby', '3.1.5.rc1', :require => 'bcrypt'
gem 'puma'
gem "paperclip", "~> 3.0"
gem 'aws-sdk', '~> 1'
gem 'aws-sdk-resources', '~> 2'
gem 'rails_12factor', group: :production

ruby "2.1.8"
4

2 回答 2

0

删除旧的 gem 'bcrypt-ruby',然后插入

gem 'bcrypt', '~> 3.1', '>= 3.1.11'

并运行

bundle install
于 2016-06-08T18:35:55.877 回答
0

您需要删除旧的 gem 并使用以下命令更新 gemfile

gem 'bcrypt-ruby', '~> 3.1.0'

并运行bundle install,然后重新启动您的服务器。

您可能还想尝试删除 gemfile.lock 并重新运行bundle install

或者

您可以直接从命令行安装 gem bcrypt,如下所示:

gem install --version='3.1.0' bcrypt-ruby

然后运行bundle install

于 2016-06-08T19:52:04.580 回答