mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
70f0a802fe
Back in 2016, we chose not to use Bundler in Ruby/OpenSSL development because Bundler depended on openssl and could not be used for testing openssl itself - "bundle exec rake test" would end up with loading two different versions of openssl at the same time. This has been resolved long time ago. We can now safely use it for development dependency management and for Rake tasks. https://github.com/ruby/openssl/commit/47283d9161
21 lines
842 B
Ruby
21 lines
842 B
Ruby
Gem::Specification.new do |spec|
|
|
spec.name = "openssl"
|
|
spec.version = "2.2.0"
|
|
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.3.0"
|
|
|
|
spec.metadata["msys2_mingw_dependencies"] = "openssl"
|
|
end
|