我正在构建一个简单的rails应用程序,当我加载主页时,我得到:
Completed 500 Internal Server Error in 59ms
ActionView::Template::Error (different prefix: "c:/" and
"D:/workspaceRor/jrpappthree/ ssets/stylesheets"
(in D:/workspaceRor/jrpappthree/app/assets/stylesheets/custom.css.scss)):
2: <html>
3: <head>
4: <title><%= full_title(yield(:title)) %></title>
5: <%= stylesheet_link_tag "application", media: "all" %>
6: <%= javascript_include_tag "application" %>
7: <%= csrf_meta_tags %>
8: <%= render 'layouts/shim' %>
Run Code Online (Sandbox Code Playgroud)
我的宝石文件
gem 'rails'
gem 'bootstrap-sass'
gem 'bcrypt-ruby'
gem 'faker'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'pg'
group :development, :test do
gem 'mysql2'
gem 'annotate'
end
# Gems used only for assets and not required
# …Run Code Online (Sandbox Code Playgroud)