I installed Bundler on a pre-Rails 3 application and am trying to use it to install gems. My gemfile contains the following lines:
source :rubygems
[...]
gem "RubyInline", "3.8.1"
However, when I run bundle install, I get this error:
Fetching source index for http://rubygems.org/
Could not find gem 'RubyInline', required by 'memcache-client (= 1.6.3)', in any of the sources
Pearls appear on the rubygems website:
http://rubygems.org/gems/RubyInline
Why does this give me an error?
source
share