aboutsummaryrefslogtreecommitdiffstats
path: root/openssl.gemspec
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-11-26 12:38:31 +0900
committerZachary Scott <e@zzak.io>2015-11-26 12:38:31 +0900
commitb7c18e71b473d4fb5b618423d6edf8d8da7f6872 (patch)
treedd2f980bee8c7ee6cbd84ab0a93a49bd56bcc3b9 /openssl.gemspec
parent2b48404a223eebf3f6926299c6fa07e51816e097 (diff)
downloadruby-openssl-b7c18e71b473d4fb5b618423d6edf8d8da7f6872.tar.gz
Add LibreSSL test support
This takes advantage of zzak/ruby-openssl-docker@e26d90172 Since the build container has Ruby without stdlib openssl, when building the gem to install locally we can't require openssl. This means that the gemspec has to use static version constant. We also removed bundler from development.
Diffstat (limited to 'openssl.gemspec')
-rw-r--r--openssl.gemspec5
1 files changed, 2 insertions, 3 deletions
diff --git a/openssl.gemspec b/openssl.gemspec
index a311f703..c2b62d5e 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,9 +1,9 @@
# coding: utf-8
-require 'openssl'
+#require 'openssl'
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = OpenSSL::VERSION
+ spec.version = "1.1.0"
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott"]
spec.email = ["ruby-core@ruby-lang.org"]
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}
@@ -17,7 +17,6 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.extensions = ["ext/openssl/extconf.rb"]
- spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.3"
spec.add_development_dependency "rake-compiler", "~> 0.9"
spec.add_development_dependency "test-unit", "~> 3.0"