I am building a simple rails app and when I load the home page I get:
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'' %>
my gem file
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
# in production environments by default.
group :assets do
gem ''sass-rails''
gem ''coffee-rails''
gem ''uglifier''
gem ''railties''
end
gem ''jquery-rails''
group :test do
end
group :production do
# gem ''pg''
end
in D:/workspaceRor/jrpappthree/app/assets/stylesheets/custom.css.scss
@import "bootstrap";
body {
padding-top: 60px;
}
.
.
.
In development environment , it shows the above error, but in production it
works fine.
I even tried
# config/environments/production.rb
...
config.assets.compile = true
...
but it didnt solve my problem.
So what will be the solution for running the app in development env.
successfully?
thanks in adv.
--
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/rubyonrails-talk/-/8slITcGgxg4J.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.