rails / sass-rails

Ruby on Rails stylesheet engine for Sass
MIT License
859 stars 333 forks source link

sass version locked to ~3.1 #418

Closed qvolant closed 5 years ago

qvolant commented 6 years ago

https://github.com/rails/sass-rails/blob/5-0-stable/sass-rails.gemspec#L17

sass 3.1 is from 2012. Many frameworks/libraries today use maps which were introduced in sass 3.3 (from 2014)

latest sass-rails release was from november 2017. Why is it depending on technology from 2012 ?

Cremz commented 6 years ago

I second this. having trouble upgrading my gems because of this

toncid commented 5 years ago

You are wrong, the operator is somewhat misleading: ~> 3.1 means >= 3.1 and < 4.0. Check your Gemfile.lock:

    sass (3.7.2)
      sass-listen (~> 4.0.0)
    sass-listen (4.0.0)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
    sass-rails (5.0.7)
      railties (>= 4.0.0, < 6)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (>= 1.1, < 3)