1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/erb] Fix CI for JRuby

https://github.com/ruby/erb/commit/df642335b7
This commit is contained in:
Takashi Kokubun 2022-11-02 22:49:09 -07:00 committed by git
parent 59a6caf83a
commit c24800f4f7

View file

@ -27,7 +27,9 @@ Gem::Specification.new do |spec|
spec.executables = ['erb']
spec.require_paths = ['lib']
spec.required_ruby_version = ">= 2.7.0"
if RUBY_ENGINE != 'jruby'
spec.required_ruby_version = '>= 2.7.0'
end
spec.add_dependency 'cgi', '>= 0.3.3'
end