Ruby on Rails Thursday, April 24, 2014

Walter Davis wrote in post #1143688:
> Is it possible to configure Rails through a .railsrc directive to not
> use SCSS, but still use the asset pipeline and Sprockets? I know that I
> can rename the files manually, and it does work (the files are
> concatenated and minified without issue), but I'd like to skip the
> entire renaming part of that process if possible. I've read through the
> command-line guide, and the API documentation, but I have not been able
> to locate a flag for this preference yet.

1. Open Gemfile
2. Comment out:
gem 'sass-rails', '~> 4.0.3'

Rails generators will no longer create *.css.scss but instead create
*.css files.

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/be71adcb695d6de5c525b6d183b025bf%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment