As of the writing of this question, the latest sass-rails
version is 5.0.0.beta1.
I want to update my Gemfile to use this version but also have it continue to use later releases of sass-rails
v5 as and when they become available. For the moment, let's assume that I constantly run bundle update sass-rails
and don't care for the consequences to my app.
I find that gem 'sass-rails', '>= 5.0'
doesn't work. I get this error:
Could not find gem 'sass-rails (>= 5.0) ruby' in the gems available on this machine.
If I fix the version to =5.0.0.beta1
, I get the update just fine.
How can I set an optimistic constraint right now, so that bundle update
gives me 5.0.0 when it is released, without my having to change the Gemfile?