Is there a way to specify a range for the ruby version?
ruby '~> 2.1.0' Your Ruby version is 2.1.1, but your Gemfile specified ~> 2.1.0 ruby '>= 2.1.0' Your Ruby version is 2.1.1, but your Gemfile specified >= 2.1.0
Obviously, ranges work on gems, but perhaps this is not possible for the ruby version. Or did I misunderstand my syntax?
source share