ruby-on-rails - 找不到 gem 'rails (= 4.2.4) x64-mingw32'

标签 ruby-on-rails ruby

我最初是在 Windows 中开发我的 RoR 应用程序。现在,由于我发现了一些关于一些 gems、SSH 和其他东西的问题,我决定转向 Linux。我正在尝试启动应用程序,但似乎无法启动。

当我执行 bundle update rails 时,出现以下错误:

Could not find gem 'rails (= 4.2.4) x64-mingw32' in the gems available on this
machine.

这是我的 tzinfo-data gem:

gem 'tzinfo-data', platforms: [:mingw, :mswin, :jruby]

但是我也已经尝试过这个了:

gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

有什么想法吗?因为当我刚刚执行 bundle install 时,我也遇到了以下错误:

You have requested:
  rails = 4.2.4

The bundle currently has rails locked at 4.2.4.
Try running `bundle update rails`

更新:

gem 文件内容

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.4'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

gem 'bootstrap-sass', '~> 3.2.0'
gem 'autoprefixer-rails'

gem 'devise'

gem 'bootstrap_form'


# Use jquery as the JavaScript library
gem 'jquery-rails'
# 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', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
gem "bcrypt-ruby", '~> 3.0.0'

gem 'google-api-client', '0.9'

gem 'letsrate'

gem 'will_paginate', '~> 3.0.6'

gem 'filterrific'

#gem 'ratyrate'

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

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

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :jruby]

最佳答案

如果您使用 bundler 和 ruby​​gems 安装 Rails,请确保您的 Gemfile 中有最新版本:

rails '4.2.4'

有 Gemfile.lock 锁定版本。您删除它并再次运行 bundle install。它会起作用。

bundle install

关于ruby-on-rails - 找不到 gem 'rails (= 4.2.4) x64-mingw32',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35961581/

相关文章:

ruby-on-rails - 在多个域之间共享用户 session

ruby - 使用 RVM 安装 Ruby 时出现需求错误

ruby-on-rails - 按列分组,然后在 Rails 中获取另一列的总和

ruby-on-rails - 找不到类型为“application/javascript”的文件 'jquery-ui/datepicker'

ruby - Ruby 变量存储值还是地址?

ruby - 如何隐藏或删除 gem 1.8.x 中的弃用通知?

ruby-on-rails - Ruby 中的内存模型

ruby-on-rails - 如何定义以两种不同方式相互关联的两个模型之间的 ActiveRecord 关系?

ruby-on-rails - Rails 3 的 cache_money

ruby-on-rails - 如何获得关联模型(Rails)的最高计数?