-
- Downloads
#1 added get_block_range; switched to get_block_range for streaming (new default)
Showing
- Rakefile 60 additions, 2 deletionsRakefile
- hive-ruby.gemspec 1 addition, 1 deletionhive-ruby.gemspec
- lib/hive/api.rb 12 additions, 1 deletionlib/hive/api.rb
- lib/hive/block_api.rb 56 additions, 10 deletionslib/hive/block_api.rb
- lib/hive/operation.rb 14 additions, 5 deletionslib/hive/operation.rb
- lib/hive/rpc/http_client.rb 5 additions, 4 deletionslib/hive/rpc/http_client.rb
- lib/hive/stream.rb 124 additions, 17 deletionslib/hive/stream.rb
- lib/hive/version.rb 1 addition, 1 deletionlib/hive/version.rb
- test/hive/block_api_test.rb 72 additions, 2 deletionstest/hive/block_api_test.rb
- test/hive/jsonrpc_test.rb 14 additions, 2 deletionstest/hive/jsonrpc_test.rb
- test/hive/stream_test.rb 31 additions, 7 deletionstest/hive/stream_test.rb
... | @@ -32,7 +32,7 @@ Gem::Specification.new do |spec| | ... | @@ -32,7 +32,7 @@ Gem::Specification.new do |spec| |
spec.add_dependency 'json', '~> 2.1', '>= 2.1.0' | spec.add_dependency 'json', '~> 2.1', '>= 2.1.0' | ||
spec.add_dependency 'logging', '~> 2.2', '>= 2.2.0' | spec.add_dependency 'logging', '~> 2.2', '>= 2.2.0' | ||
spec.add_dependency 'hashie', '~> 4.1', '>= 3.5.7' | spec.add_dependency 'hashie', '>= 3.5' | ||
spec.add_dependency 'bitcoin-ruby', '~> 0.0', '0.0.20' | spec.add_dependency 'bitcoin-ruby', '~> 0.0', '0.0.20' | ||
spec.add_dependency 'ffi', '~> 1.9', '>= 1.9.23' | spec.add_dependency 'ffi', '~> 1.9', '>= 1.9.23' | ||
spec.add_dependency 'bindata', '~> 2.4', '>= 2.4.4' | spec.add_dependency 'bindata', '~> 2.4', '>= 2.4.4' | ||
... | ... |
Please register or sign in to comment