1

Rails 3.017 とクリアランス 1.0.0.rc2 があり、gem 'jquery-rails', '~> 2.1' をインストールしようとしています

古いバージョンの jquery-rails が必要ですか? もしそうなら、どうすればこれを理解できますか?

ありがとうジョエル

Bundler could not find compatible versions for gem "railties":
 In Gemfile:
  jquery-rails (~> 2.1) ruby depends on
    railties (< 5.0, >= 3.1.0) ruby

  clearance (= 1.0.0.rc2) ruby depends on
    railties (3.0.17)
4

1 に答える 1

0

Yes, you need an older version of this gem. If you don't specify a certain version of jquery-rails in your Gemfile, Bundler will find the matching version for you, if you run bundle install.

You can find out the dependencies of a gem with the gem manager:

$ gem dependency jquery-rails -v 2.1.3
于 2012-10-07T14:08:27.543 に答える