mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
cc8ff8b50d
Drop support for Ruby 2.3, 2.4, and 2.5. As of 2021-10, Ruby 2.6 is the oldest version that still receives security fixes from the Ruby core team, so it doesn't make much sense to keep code for those ancient versions. https://github.com/ruby/openssl/commit/3436bd040d
21 lines
846 B
Ruby
21 lines
846 B
Ruby
Gem::Specification.new do |spec|
|
|
spec.name = "openssl"
|
|
spec.version = "3.0.0.pre"
|
|
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
|
|
spec.email = ["ruby-core@ruby-lang.org"]
|
|
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}
|
|
spec.description = %q{It wraps the OpenSSL library.}
|
|
spec.homepage = "https://github.com/ruby/openssl"
|
|
spec.license = "Ruby"
|
|
|
|
spec.files = Dir["lib/**/*.rb", "ext/**/*.{c,h,rb}", "*.md", "BSDL", "LICENSE.txt"]
|
|
spec.require_paths = ["lib"]
|
|
spec.extensions = ["ext/openssl/extconf.rb"]
|
|
|
|
spec.extra_rdoc_files = Dir["*.md"]
|
|
spec.rdoc_options = ["--main", "README.md"]
|
|
|
|
spec.required_ruby_version = ">= 2.6.0"
|
|
|
|
spec.metadata["msys2_mingw_dependencies"] = "openssl"
|
|
end
|