当我尝试运行回形针迁移生成器时,我正在处理rails项目并不断收到此错误。它告诉我捆绑安装作为gems源无法找到但是当我运行bundle install时,一切都很顺利,除了我每次都得到相同的错误消息来运行bundle update。
几个小时后我遇到了同样的问题,但是这次它找不到json gem -v 1.8.1的来源。
为了解决这个问题,我跑了gem install json -v 1.8.1
,之后一切都顺利了。现在问题已经回来了,一个不同的宝石和宝石的运行宝石安装似乎没有效果。
我不断得到的错误:
Could not find climate_control-0.0.3 in any of the sources
Run bundle install to install missing gems.
的Gemfile:
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.1'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Authentication gems
gem 'sorcery'
gem 'bcrypt'
# Photo Upload
gem 'paperclip', '~> 4.1'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'rabl'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
group :development do
gem 'spring'
gem 'pry'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
当我运行捆绑安装时,它还显示它正在使用正确的气候控制,但没有运气错误。
Using climate_control 0.0.3
另外值得注意的是,我最近下载了rvm并升级到ruby -v 2.1.1,不知道是否与它有任何关系,但值得让你知道。
感谢您的帮助。
答案 0 :(得分:1)
对我有用的是从gemfile中删除Spring(由于某种原因它与paperclip冲突)
我在回形针回购中提出了一个问题: https://github.com/thoughtbot/paperclip/issues/2226
我不知道为什么会发生这种情况,但是上传文件的用户比开发人员更安心,因此再见春天。
如果我找到发生这种情况的确切原因,我会更新答案。
答案 1 :(得分:0)
您使用的是任何红宝石经理吗?
您可能有多个红宝石。
还尝试使用gem update --system更新rubygems。