0

Rails3.2.9バージョンを使用しています

私の宝石ファイル

source 'https://rubygems.org'

gem 'rails', '3.2.9'
gem 'feedzirra'
gem "meta_where"

gem 'sqlite3'

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

また、バンドルのインストール中に次のようなエラーが発生します。meta-where gemをインストールする方法は?

Bundler could not find compatible versions for gem "arel":
  In snapshot (Gemfile.lock):
    arel (3.0.2)

  In Gemfile:
    meta_where (~> 1.0.4) ruby depends on
      arel (~> 2.0.7) ruby

Running `bundle update` will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.
4

1 に答える 1

1

Meta_whereはレール2用です-レール3を使用しています。

meta_where GitHubページhttps://github.com/ernie/meta_whereには、代わりにsqueelを使用する必要があると記載されていますhttps://github.com/ernie/squeel

于 2013-02-17T12:08:13.047 に答える