I am getting this error when I run "bundle install"
Could not find gem 'febeling-rubyzip (>= 0, runtime)' in any of the gem sources listed in your Gemfile.
My Gemfile looks like this
source 'http://rubygems.org'
gem 'rails'
gem "authlogic", :git => "git://github.com/binarylogic/authlogic.git"
gem "mechanize"
gem "hpricot"
gem "sqlite3-ruby"
gem "daemons"
gem 'sqlite3-ruby', :require => 'sqlite3'
gem "nokogiri"
gem "roo"
gem "zip"
gem "spreadsheet"
gem "builder"
gem "gimite-google-spreadsheet-ruby"
gem "febeling-rubyzip"
#gem "savon", "=0.7.9"
gem "savon"
#devise is required for rails_a开发者_StackOverflowdmin, but not used
gem 'devise'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem 'febeling-rubyzip'
group :development, :test do
gem "rcov"
gem "capistrano"
end
group :development do
gem "ruby-debug"
gem "httpclient"
end
Any thoughts/tips would be greatly appreciarted.
Thanks, Chris
PS I am using rvm with per project gemsets. Whats probably quite pertinent is that I just did a "rvm gemset empty" and remove Gemfile.lock to do a clean install of the project's gems - things seemed ok prior to that :(
Replace 'febeling-rubyzip' with 'rubyzip'. The new way of naming the gems has changed and it does not have the creator's username (github username) attached to it.
Does gem query -r -n febeling-rubyzip
find anything in your version of ruby/gems?
精彩评论