We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Rails 3.1 the assets must be placed inside the app/assets directory instead of the public directory. Thus:
app/assets
public
public/stylesheets/web-app-theme
app/assets/stylesheets/web-app-theme
public/images/web-app-theme
app/assets/images/web-app-theme
In addition, the application.html.erb layout file must be just as follow:
application.html.erb
<%= stylesheet_link_tag :application %> <%= javascript_include_tag :application %> <%= csrf_meta_tags %>
The text was updated successfully, but these errors were encountered:
This issue must be done ASAP.
Sorry, something went wrong.
No branches or pull requests
In Rails 3.1 the assets must be placed inside the
app/assets
directory instead of thepublic
directory. Thus:public/stylesheets/web-app-theme
must be generated inapp/assets/stylesheets/web-app-theme
public/images/web-app-theme
must be generated inapp/assets/images/web-app-theme
In addition, the
application.html.erb
layout file must be just as follow:<%= stylesheet_link_tag :application %>
<%= javascript_include_tag :application %>
<%= csrf_meta_tags %>
The text was updated successfully, but these errors were encountered: