Gemfile: stricter Ruby version requirement
This commit is contained in:
parent
d81bd6ab3b
commit
ed2e35853d
@ -2,7 +2,11 @@
|
|||||||
|
|
||||||
source "https://rubygems.org"
|
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)
|
# disallowed gems (should not be used)
|
||||||
# * nokogiri - use rexml instead for XML parsing
|
# * nokogiri - use rexml instead for XML parsing
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user