-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbitcoinrb.gemspec
More file actions
34 lines (29 loc) · 1.34 KB
/
bitcoinrb.gemspec
File metadata and controls
34 lines (29 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bitcoin/version'
Gem::Specification.new do |spec|
spec.name = "bitcoinrb"
spec.version = Bitcoin::VERSION
spec.authors = ["azuchi"]
spec.email = ["azuchi@chaintope.com"]
spec.summary = %q{The implementation of Bitcoin Protocol for Ruby.}
spec.description = %q{The implementation of Bitcoin Protocol for Ruby.}
spec.homepage = 'https://github.com/chaintope/bitcoinrb'
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.add_runtime_dependency 'ecdsa_ext', '~> 0.5.1'
spec.add_runtime_dependency 'murmurhash3', '~> 0.1.7'
spec.add_runtime_dependency 'bech32', '>= 1.5.0'
spec.add_runtime_dependency 'siphash'
spec.add_runtime_dependency 'bip-schnorr', '>= 0.7.0'
spec.add_runtime_dependency 'base32', '>= 0.3.4'
spec.add_runtime_dependency 'base64', '~> 0.2.0'
spec.add_runtime_dependency 'secp256k1rb', '0.1.1'
spec.add_runtime_dependency 'logger'
spec.add_runtime_dependency 'merkle', '0.3.0'
spec.add_runtime_dependency 'dnsruby', '1.73.0'
end