【发布时间】:2012-07-14 20:54:29
【问题描述】:
我在end of section 5 of Michael Hartl's Ruby on Rails Tutorial,我的应用程序正在开发中,但是当我输入时:
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 文件没有改变,完全被注释掉了。
对问题所在有什么想法吗?我有一个带有 gem 'bootstrap-sass', '2.0.0' 的 gemfile。
【问题讨论】:
-
您的资产似乎没有被编译
标签: ruby-on-rails ruby heroku