LoginSignup
1
0

More than 5 years have passed since last update.

Rails4でgem 'meta_search'を消してくれと言われた時の対処法

Posted at

問題

gem 'meta_search'を消してくれと言われたけど、そんなgem入れた覚えない。

Your bundle requires gems that depend on each other, creating an infinite loop. Please remove gem 'meta_search' and try again.

原因と解決策

原因はactiveadminだった。

gemfile.
gem 'activeadmin'

gem 'activeadmin'を入れる際に、Railsのバージョンによっては、bundle install しようとするだけでエラーが出るようだ。下記のように書き換えるとbundle installできた。

gemfile.
gem 'activeadmin', github: 'activeadmin'

環境

ruby 2.2.3
Rails 4.2.6

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0