x25519.gemspec in x25519-0.0.0 vs x25519.gemspec in x25519-0.1.0

- old
+ new

@@ -1,15 +1,10 @@ - # frozen_string_literal: true -lib = File.expand_path("../lib", __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require "x25519/version" - Gem::Specification.new do |spec| spec.name = "x25519" - spec.version = X25519::VERSION + spec.version = "0.1.0" spec.authors = ["Tony Arcieri"] spec.email = ["bascule@gmail.com"] spec.summary = "Public key cryptography library providing the X25519 D-H function" spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ") An efficient public key cryptography library for Ruby providing key @@ -20,9 +15,11 @@ spec.license = "MIT" 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"] + spec.platform = Gem::Platform::RUBY + spec.extensions = "ext/x25519/extconf.rb" spec.required_ruby_version = ">= 2.2.2" spec.add_development_dependency "bundler", "~> 1.16" end