嘿伙计我在使用rails 3.2.0和ruby 1.9.3时遇到了一些麻烦,我只使用rails new命令创建了一个新的应用程序,我正在尝试部署到heroku.我有以下应用程序错误:
应用程序中发生错误,无法提供您的页面.请稍后重试.如果您是应用程序所有者,请检查日志以获取详细信息.
运行heroku日志后,我收到以下错误:
无法在任何来源中找到activemodel-3.2.0
提前致谢!!!!
的Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', …Run Code Online (Sandbox Code Playgroud)