Sha256: aba35fec044ccea9e40d646fe1d07ac70802e810c01b63afa886ced8d7bc5b20
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require File.expand_path("lib/ed25519/version", __dir__) Gem::Specification.new do |spec| spec.name = "ed25519" spec.version = Ed25519::VERSION spec.authors = ["Tony Arcieri"] spec.email = ["tony.arcieri@gmail.com"] spec.summary = "An efficient digital signature library providing the Ed25519 algorithm" spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ") A Ruby binding to the Ed25519 elliptic curve public-key signature system described in RFC 8032. DESCRIPTION spec.homepage = "https://github.com/cryptosphere/ed25519" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] if defined? JRUBY_VERSION spec.platform = "jruby" spec.files << "lib/ed25519_engine.jar" else spec.platform = Gem::Platform::RUBY spec.extensions = "ext/ed25519/extconf.rb" end spec.required_ruby_version = ">= 2.2.2" spec.add_development_dependency "bundler", "~> 1.16" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ed25519-0.1.0 | ed25519.gemspec |