Gemfile: stricter Ruby version requirement

This commit is contained in:
Bo Anderson 2022-08-22 11:11:57 +01:00
parent d81bd6ab3b
commit ed2e35853d
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65

View File

@ -2,7 +2,11 @@
source "https://rubygems.org"
ruby ">= 2.6.0"
if ENV.fetch("HOMEBREW_DEVELOPER", "").empty? || ENV.fetch("HOMEBREW_USE_RUBY_FROM_PATH", "").empty?
ruby "~> 2.6.0"
else
ruby ">= 2.6.0"
end
# disallowed gems (should not be used)
# * nokogiri - use rexml instead for XML parsing