I'd like to use SASS as my default stylesheet engine instead of SCSS. In my Gemfile
I have
gem 'sass-rails', '~> 3.2.3'
I also have
config.generators.stylesheet_engine = :sass
in my config/application.rb
. However, when I run rails g scaffold --help
, it says
-se, [--stylesheet-engine=STYLESHEET_ENGINE] # Engine for Stylesheets
# Default: scss
So it still seems to think that scss is the default.
Do I have to do something else to use SASS?