4

我确定我只是在这里忽略了一些简单的事情,但这让我整晚都发疯了!当尝试将 Rails 3.1.rc4 应用程序部署到 Heroku 上的 Cedar 堆栈时(我在一个月前使用类似的 Gemfile 成功完成了此操作)我收到此错误:

Could not find sprockets-2.0.0.beta.10 in any of the sources

我的 Gemfile 看起来像这样:

source 'http://rubygems.org'

# Core
gem 'rails', '3.1.0.rc4'

# Asset template engines
gem 'sass-rails', "~> 3.1.0.rc"
gem 'coffee-script'
gem 'uglifier'

# Misc
gem 'devise'
gem 'jquery-rails'
gem 'omniauth'
gem 'fb_graph'
gem 'compass', git: 'https://github.com/chriseppstein/compass.git', branch: 'rails31'
gem 'haml'
gem 'cancan'
gem 'kaminari'
gem 'friendly_id', '~> 3.3.0', git: 'https://github.com/norman/friendly_id.git'
gem 'recaptcha', :require => 'recaptcha/rails'
gem 'aws-ses', '~> 0.4.3', :require => 'aws/ses'

# Local Environment
group :test do
  # Pretty printed test output
  gem 'turn', :require => false
    gem 'sqlite3'
end

# Heroku Environment
group :production do
    gem 'pg'
    gem 'execjs'
    gem 'therubyracer'
end

在 Google Groups 上搜索并找到这篇文章后,我确定这必须通过添加此行来解决

gem 'sprockets', '2.0.0.beta10'

到我的 Gemfile 然后运行

bundle update sprockets

这失败了

Could not find gem 'sprockets (= 2.0.0.beta10, runtime)' in any of the gem sources listed in your Gemfile.

在这一点上,我不知道该怎么做或如何处理。是否有可能我需要升级到 Rails 3.1.rc5,如果是这样,我该如何在不从头开始的情况下做到这一点?

感谢您提供的任何帮助!

-罗伯特

4

1 回答 1

5

只需将您的 rails 版本提升到 rc5

gem 'rails', '3.1.0rc5'

然后:

bundle update
于 2011-08-14T03:20:24.553 回答