-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathblockcypher-ruby.gemspec
More file actions
24 lines (22 loc) · 971 Bytes
/
blockcypher-ruby.gemspec
File metadata and controls
24 lines (22 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'blockcypher-ruby'
s.summary = 'Blockcypher Ruby SDK'
s.version = '0.2.7'
s.licenses = ['Apache-2.0']
s.description = 'Ruby library to help you build your crypto application on BlockCypher'
s.summary = 'Ruby library to help you build your crypto application on BlockCypher'
s.authors = %w[CoinHako BlockCypher meXBT Gem]
s.email = 'contact@blockcypher.com'
s.files = Dir['{spec,lib}/**/*'] + %w[LICENSE README.md]
s.homepage = 'http://www.blockcypher.com'
s.add_runtime_dependency 'bitcoin-ruby', ['~> 0.0.5']
s.add_runtime_dependency 'ffi'
s.add_development_dependency 'activesupport'
s.add_development_dependency 'bundler', '~> 1.6'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
end