Is there a way to specify a below X or above Y (if available) for a gem via Bundler?
For example I'd like to do something like this, but not sure of the syntax and can't find any examples:
gem 'nokogiri', '<= 1.6.3.1', '>= 1.6.7'
Variations on this don't work:
gem 'nokogiri', '<= 1.6.3.1 || >= 1.6.7'
Nokogiri 1.6.7 isn't released yet but a patch was accepted months ago that fixes a bug that exists in 1.6.4 - 1.6.6.
So I'd like to tell my Gemfile to use 1.6.3.1 (the last stable version for me) until 1.6.7 is released. If only as a reminder to my team, after months have gone by, that we're waiting on 1.6.7.
Is this possible?