├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG ├── COMMANDS.rdoc ├── COPYING ├── Gemfile ├── README.rdoc ├── Rakefile ├── bin ├── bitcoin_dns_seed ├── bitcoin_node └── bitcoin_node_cli ├── bitcoin-ruby-node.gemspec ├── lib └── bitcoin │ ├── node.rb │ └── node │ ├── command_client.rb │ ├── command_handler.rb │ ├── connection_handler.rb │ └── version.rb └── spec ├── node └── command_api_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation --color -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COMMANDS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/COMMANDS.rdoc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/Gemfile -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/bitcoin_dns_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/bin/bitcoin_dns_seed -------------------------------------------------------------------------------- /bin/bitcoin_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/bin/bitcoin_node -------------------------------------------------------------------------------- /bin/bitcoin_node_cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/bin/bitcoin_node_cli -------------------------------------------------------------------------------- /bitcoin-ruby-node.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/bitcoin-ruby-node.gemspec -------------------------------------------------------------------------------- /lib/bitcoin/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/lib/bitcoin/node.rb -------------------------------------------------------------------------------- /lib/bitcoin/node/command_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/lib/bitcoin/node/command_client.rb -------------------------------------------------------------------------------- /lib/bitcoin/node/command_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/lib/bitcoin/node/command_handler.rb -------------------------------------------------------------------------------- /lib/bitcoin/node/connection_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/lib/bitcoin/node/connection_handler.rb -------------------------------------------------------------------------------- /lib/bitcoin/node/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/lib/bitcoin/node/version.rb -------------------------------------------------------------------------------- /spec/node/command_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/spec/node/command_api_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-node/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------