Skip to content

Commit

Permalink
getting ready for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jvergeldedios committed May 4, 2015
1 parent 781004f commit 2bc53c2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion checksum/round-0.7.0.gem.sha512
Original file line number Diff line number Diff line change
@@ -1 +1 @@
39b3c63d90a33ddcb8e774fefb5d63d8c1e4dd2fcde49614da4020060ceb8d0d9507a5ef19ab373abe6806cb5146aad91b72040481c5b6ece2091c86bfe6ab2b
a33171a5e20b86998b30e04396eec1f47f4c904a16ef514fce4516444cdbe7c91e14a7b8defcf0479971487caa29d87530477e207aecd437031c8c57e1e6ba9f
26 changes: 18 additions & 8 deletions round.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,34 +6,44 @@ Gem::Specification.new do |s|
s.license = 'MIT'
s.authors = [
'Matthew King',
'Julian Vergel de Dios'
'Julian Vergel de Dios',
'James Larisch'
]
s.email = [
'[email protected]',
'[email protected]'
'[email protected]',
'[email protected]'
]
s.homepage = 'https://github.com/GemHQ/round-rb'
s.summary = 'Ruby client for the Gem API'
s.description = 'Gem is a full-stack Bitcoin API that makes it easy to build powerful blockchain apps with beautiful, elegant code.'

s.files = %w[
LICENSE
README.md
] + Dir['lib/**/*.rb']
s.require_path = 'lib'
s.cert_chain = ['certs/jvergeldedios.pem']

s.add_dependency('patchboard', '~> 0.5.2')
# used with gem i coin-op -P HighSecurity
s.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")
s.signing_key = File.join(Gem.user_home, ".ssh", "gem-private_key.pem")
end

s.add_dependency('patchboard', '~> 0.5')
s.add_dependency('http', '0.6.0')
s.add_dependency('rotp', '2.1.0')
s.add_dependency('rbnacl', '~> 3.1.0')
s.add_dependency('rbnacl-libsodium', '~> 1.0.0')
s.add_dependency('rbnacl', '~> 3.1')
s.add_dependency('rbnacl-libsodium', '~> 1.0')
s.add_dependency('coin-op', '~> 0.3')

# RSpec test suite deps
s.add_development_dependency('rspec', '~> 3.0')
s.add_development_dependency('webmock', '~> 1.18')
s.add_development_dependency('vcr', '~> 2.9.3')
s.add_development_dependency('pry')
s.add_development_dependency('vcr', '~> 2.9')
s.add_development_dependency('pry', '~> 0')

# Demo script deps
s.add_development_dependency('term-ansicolor', '~> 1.3')
Expand Down

0 comments on commit 2bc53c2

Please sign in to comment.