EastsideDev
EastsideDev

Reputation: 6639

Why was sass-rails gem added to my Gemfile

Rails 5.2.2
Rubymine for the Mac 2018.3.5

I generated a new application, and in my Gemfile, I see:

gem 'sass-rails', '~> 5.0'

I was under the impression that there's no need to include this Gem, because the Rails 5 default behavior, is to use SASS. Am I mistaken, and this is still needed?

Upvotes: 0

Views: 97

Answers (1)

Igor Kasyanchuk
Igor Kasyanchuk

Reputation: 774

This gem is needed. Basically don't worry about versions of gems, this is expected. It's normal to have >100 gems soon in your app. And versions are not strict to Rails version.

Upvotes: 1

Related Questions