Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Created December 15, 2011 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrchrisadams/1482911 to your computer and use it in GitHub Desktop.
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?
Bundler version 1.0.21
The Gemfile's dependencies are satisfied
Could not find multi_json-1.0.4 in any of the sources
Run `bundle install` to install missing gems.
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)
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)
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'
@clindsey
Copy link

ever find a solution to this?

@mrchrisadams
Copy link
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