Sha256: 11d38e0fa1b8943464a4637c32c57acae748156749e5963e05b1c639730cb203

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name = "openssl_provider"
  spec.version = "0.1.0"
  spec.authors = ["qwyng"]
  spec.email = ["ikusawasi@gmail.com"]

  spec.summary = "Provides APIs to load OpenSSL providers"
  spec.homepage = "https://github.com/QWYNG/openssl_provider"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 3.1.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/QWYNG/openssl_provider"
  spec.metadata["changelog_uri"] = "https://github.com/QWYNG/openssl_provider/blob/master/CHANGELOG.md"

  spec.extensions = ["ext/openssl_provider/extconf.rb"]

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "openssl", "~> 3.0"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openssl_provider-0.1.0 openssl_provider.gemspec