Sha256: e2d068074556297bad123b390e8fd706dc9f0bf973d2cd6b3587362b904561b2

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 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 'secp256k1-ruby'
  spec.add_runtime_dependency 'ecdsa'
  spec.add_runtime_dependency 'rbnacl-libsodium'
  spec.add_runtime_dependency 'ruby-hmac'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
noise-ruby-0.6.2 noise.gemspec