我在Michael Hartl 的 Ruby on Rails 教程第 5 部分的末尾,我的应用程序在开发中工作,但是当我输入:
heroku open
我得到标准“我们很抱歉,但出了点问题。” 当我输入:
heroku logs
我得到(缩写,我选择了相关的输出,它出现了 3 次,略有不同):
Processing by StaticPagesController#home as HTML
Rendered static_pages/home.html.erb within layouts/application (1.6ms)
Completed 500 Internal Server Error in 9ms
4: <title><%= full_title(yield(:title)) %></title>
ActionView::Template::Error (Invalid CSS after " *": expected "{", was "= require_self"
2: <html>
(in /app/app/assets/stylesheets/application.css)):
我的 application.css 文件没有改变并且完全被注释掉了。
关于问题是什么的任何想法?我有一个gemfile gem 'bootstrap-sass', '2.0.0'
。