"g controller" is creating .css not .css.scss

https://lh5.googleusercontent.com/-dt3btHcUcmA/VLi0z6X1CcI/AAAAAAAAAKw/gpE6RWkt8lo/s1600/image.png
I am using “rails g controller welcome index” to generate the files for
a
new app, but it generates welcome.scss (instead of welcome.css.scss).
Terefoe I am unable to link the css code to the main page. Any
suggestions?

I think you’re missing the gem ‘sass-rails’ . can you paste your Gemfile
?

On Fri, Jan 16, 2015 at 12:21 PM, E. Allan Montes D.
<[email protected]

On Friday, January 16, 2015 at 6:51:18 AM UTC, E. Allan Montes D. wrote:

I am using “rails g controller welcome index” to generate the files for a new
app, but it generates welcome.scss (instead of welcome.css.scss). Terefoe I am
unable to link the css code to the main page. Any suggestions?

This is normal in the latest version of sass-rails (included in rails
4-2). See this commit for example:

You shouldn’t be linking to individual scss files anyway (they won’t
load in production). Instead @import them into a manifest (e.g.
application.css) and link to that instead.

Fred