From b1a64e28043eaeadf0caf148d6bd24deebcdecca Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Fri, 26 Aug 2016 16:14:58 +0900 Subject: Update openssl.gemspec Add me to authors and cleanup files. --- openssl.gemspec | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'openssl.gemspec') diff --git a/openssl.gemspec b/openssl.gemspec index 0f30b4b9..bc4abc32 100644 --- a/openssl.gemspec +++ b/openssl.gemspec @@ -1,23 +1,21 @@ -# coding: utf-8 -#require 'openssl' - Gem::Specification.new do |spec| spec.name = "openssl" spec.version = "1.1.0" - spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott"] + 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 = "http://www.ruby-lang.org/" + spec.homepage = "https://www.ruby-lang.org/" spec.license = "Ruby" - spec.files = `git ls-files -z`.split("\x0") - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.files = Dir["lib/**/*.rb", "ext/**/*.{c,h,rb}", "*.md", "BSDL", "LICENSE.txt"] spec.require_paths = ["lib"] spec.extensions = ["ext/openssl/extconf.rb"] - spec.required_ruby_version = '>= 2.3.0' + spec.extra_rdoc_files = Dir["*.md"] + spec.rdoc_options = ["--main", "README.md"] + + spec.required_ruby_version = ">= 2.3.0" spec.add_development_dependency "rake", "~> 10.3" spec.add_development_dependency "rake-compiler", "~> 0.9" -- cgit v1.2.3