Created
December 15, 2011 21:14
-
-
Save mrchrisadams/1482911 to your computer and use it in GitHub Desktop.
Why would bundler keep asking me to install a gem that's already installed?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bundler version 1.0.21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The Gemfile's dependencies are satisfied |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Could not find multi_json-1.0.4 in any of the sources | |
| Run `bundle install` to install missing gems. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gems included by the bundle: | |
| * activemodel (3.1.3) | |
| * activerecord (3.1.3) | |
| * activesupport (3.1.3) | |
| * arel (2.2.1) | |
| * builder (3.0.0) | |
| * bundler (1.0.21) | |
| * daemons (1.1.4) | |
| * delayed_job (2.1.4) | |
| * feed-normalizer (1.5.2) | |
| * haml (3.1.4) | |
| * hpricot (0.8.5) | |
| * i18n (0.6.0) | |
| * json (1.6.3) | |
| * multi_json (1.0.4) | |
| * mysql (2.8.1) | |
| * nokogiri (1.5.0) | |
| * prince-ruby (0.3.0) | |
| * rack (1.3.5) | |
| * rack-protection (1.1.4) | |
| * rdelicious (1.0.2) | |
| * ruby-readability (0.2.3) | |
| * simple-rss (1.2.3) | |
| * sinatra (1.3.1) | |
| * tilt (1.3.3) | |
| * tzinfo (0.3.31) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| activemodel (3.1.3) | |
| activerecord (3.1.3) | |
| activesupport (3.1.3) | |
| arel (2.2.1) | |
| builder (3.0.0) | |
| bundler (1.0.21) | |
| daemons (1.1.4) | |
| delayed_job (2.1.4) | |
| feed-normalizer (1.5.2) | |
| haml (3.1.4) | |
| hpricot (0.8.5) | |
| i18n (0.6.0) | |
| json (1.6.3) | |
| multi_json (1.0.4) | |
| mysql (2.8.1) | |
| nokogiri (1.5.0) | |
| prince-ruby (0.3.0) | |
| rack (1.3.5) | |
| rack-protection (1.1.4) | |
| rdelicious (1.0.2) | |
| ruby-readability (0.2.3) | |
| simple-rss (1.2.3) | |
| sinatra (1.3.1) | |
| tilt (1.3.3) | |
| tzinfo (0.3.31) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source :rubygems | |
| gem 'sinatra' | |
| gem 'haml' | |
| gem 'feed-normalizer' | |
| gem 'activerecord' | |
| gem 'prince-ruby' | |
| gem 'json' | |
| gem 'rdelicious' | |
| gem 'rack' | |
| gem 'delayed_job' | |
| gem 'mysql' | |
| gem 'ruby-readability' | |
| gem 'multi_json' |
Author
In the end, the best option was to destroy the gemset and start over. That seems to have cleared it.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ever find a solution to this?