forked from chaintope/bitcoinrb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitcoinrb.gemspec
48 lines (41 loc) · 1.85 KB
/
bitcoinrb.gemspec
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 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'
spec.add_runtime_dependency 'eventmachine'
spec.add_runtime_dependency 'murmurhash3'
spec.add_runtime_dependency 'bech32', '~> 1.1.0'
spec.add_runtime_dependency 'daemon-spawn'
spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'ffi'
spec.add_runtime_dependency 'leb128', '~> 1.0.0'
spec.add_runtime_dependency 'eventmachine_httpserver'
spec.add_runtime_dependency 'iniparse'
spec.add_runtime_dependency 'siphash'
spec.add_runtime_dependency 'protobuf', '3.8.5'
spec.add_runtime_dependency 'json_pure', '>= 2.3.1'
spec.add_runtime_dependency 'bip-schnorr', '>= 0.4.0'
spec.add_runtime_dependency 'base32', '>= 0.3.4'
# for options
spec.add_development_dependency 'leveldb-native'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'timecop'
spec.add_development_dependency 'webmock', '>= 3.11.1'
spec.add_development_dependency 'parallel', '>= 1.20.1'
end