README.rdoc in bitcoin-ruby-0.0.2 vs README.rdoc in bitcoin-ruby-0.0.3

- old
+ new

@@ -1,6 +1,6 @@ -= Bitcoin-ruby += Bitcoin-ruby {<img src="https://api.travis-ci.org/lian/bitcoin-ruby.png?branch=master" />}[http://travis-ci.org/lian/bitcoin-ruby] This is a ruby library for interacting with the bitcoin protocol/network. Some of the main features are: @@ -28,11 +28,11 @@ git clone https://github.com/lian/bitcoin-ruby.git; cd bitcoin-ruby ruby -Ilib bin/bitcoin_node if you want to have it available system-wide, just build the gem and install it: - gem build bitcoin-ruby.gemspec && gem install bitcoin-ruby-0.0.1.gem + gem build bitcoin-ruby.gemspec && gem install bitcoin-ruby-0.0.2.gem now you can just call +bitcoin_node+ from anywhere. Note that some aspects of the library (such as networking, storage, etc.) need @@ -42,9 +42,12 @@ * +eventmachine+ to run a node / connect to peers * +sequel+, +sqlite3+/+pg+/+mysql+ to use a storage backend * +em-dns+ or +nslookup+ to get peer addrs from DNS seeds * +gir_ffi+ for the gui * +bacon+ to run the specs + +If you would like to install using Bundler, put it in your Gemfile and run bundle install + gem 'bitcoin-ruby', git: 'https://github.com/lian/bitcoin-ruby', branch: 'master', require: 'bitcoin' == Client There is a node which connects to the network and downloads the blockchain into a database. see NODE, Bitcoin::Network::Node.