Sha256: 8e0eda1ec89dec7c8d848f89e8724383282ea2c57529ec000ef819b05df63e52
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'noise/version' Gem::Specification.new do |spec| spec.name = 'noise-ruby' spec.version = Noise::VERSION spec.authors = ['Hajime Yamaguchi'] spec.email = ['gen.yamaguchi0@gmail.com'] spec.summary = 'A Ruby implementation of the Noise Protocol framework' spec.description = 'A Ruby implementation of the Noise Protocol framework(http://noiseprotocol.org/).' spec.homepage = 'https://github.com/Yamaguchi/noise' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.15' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_runtime_dependency 'aead' spec.add_runtime_dependency 'secp256k1-ruby' spec.add_runtime_dependency 'ecdsa' spec.add_runtime_dependency 'rbnacl' spec.add_runtime_dependency 'ruby-hmac' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
noise-ruby-0.5.3 | noise.gemspec |
noise-ruby-0.5.2 | noise.gemspec |