forked from GemHQ/money-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
money-tree.gemspec
38 lines (32 loc) · 1.42 KB
/
money-tree.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'money-tree/version'
Gem::Specification.new do |spec|
spec.name = "money-tree"
spec.version = MoneyTree::VERSION
spec.authors = ["Micah Winkelspecht"]
spec.email = ["[email protected]"]
spec.description = %q{A Ruby Gem implementation of Bitcoin HD Wallets}
spec.summary = %q{Bitcoin Hierarchical Deterministic Wallets in Ruby! (Bitcoin standard BIP0032)}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
# used with gem i coin-op -P HighSecurity
spec.cert_chain = ["certs/jvergeldedios.pem"]
# Sign gem when evaluating spec with `gem` command
# unless ENV has set a SKIP_GEM_SIGNING
if ($0 =~ /gem\z/) and not ENV.include?("SKIP_GEM_SIGNING")
spec.signing_key = File.join(Gem.user_home, ".ssh", "gem-private_key.pem")
end
spec.add_dependency "ffi"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "coveralls"
spec.add_development_dependency "pry"
end