Skip to content

Commit 404758f

Browse files
committed
[build] Specify required ruby version consistent with minimum JRuby version
(cherry picked from commit a21be30)
1 parent caf0b23 commit 404758f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,15 @@ task :gem => [target_jar, target_jruby_rack, target_jruby_rack_version] do
177177
gemspec = Gem::Specification.new do |gem|
178178
gem.name = %q{jruby-rack}
179179
gem.version = GEM_VERSION
180-
gem.authors = ['Nick Sieger']
180+
gem.authors = ['Nick Sieger', 'Karol Bucek', 'JRuby contributors']
181181
gem.date = Date.today.to_s
182182
gem.license = 'MIT'
183183
gem.description = %{JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.}
184184
gem.summary = %q{Rack adapter for JRuby and Servlet Containers}
185185
gem.email = ['[email protected]']
186186
gem.files = FileList["./**/*"].exclude("*.gem").map{ |f| f.sub(/^\.\//, '') }
187187
gem.homepage = %q{http://jruby.org}
188-
gem.has_rdoc = false
188+
gem.required_ruby_version = '>= 2.6.0' # JRuby >= 9.3
189189
end
190190
defined?(Gem::Builder) ? Gem::Builder.new(gemspec).build : begin
191191
require 'rubygems/package'; Gem::Package.build(gemspec)

0 commit comments

Comments
 (0)