├── .gitignore ├── .rspec ├── CHANGELOG ├── COPYING ├── Gemfile ├── README.rdoc ├── Rakefile ├── bin └── bitcoin_wallet ├── bitcoin-ruby-wallet.gemspec ├── lib └── bitcoin │ ├── wallet.rb │ └── wallet │ ├── coinselector.rb │ ├── keygenerator.rb │ ├── keystore.rb │ ├── version.rb │ └── wallet.rb └── spec ├── spec_helper.rb └── wallet ├── coinselector_spec.rb ├── keygenerator_spec.rb ├── keystore_spec.rb └── wallet_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile.lock 2 | /.yardoc 3 | *.gem -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation --color -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/Gemfile -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/bitcoin_wallet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/bin/bitcoin_wallet -------------------------------------------------------------------------------- /bitcoin-ruby-wallet.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/bitcoin-ruby-wallet.gemspec -------------------------------------------------------------------------------- /lib/bitcoin/wallet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet.rb -------------------------------------------------------------------------------- /lib/bitcoin/wallet/coinselector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet/coinselector.rb -------------------------------------------------------------------------------- /lib/bitcoin/wallet/keygenerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet/keygenerator.rb -------------------------------------------------------------------------------- /lib/bitcoin/wallet/keystore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet/keystore.rb -------------------------------------------------------------------------------- /lib/bitcoin/wallet/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet/version.rb -------------------------------------------------------------------------------- /lib/bitcoin/wallet/wallet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/lib/bitcoin/wallet/wallet.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/wallet/coinselector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/spec/wallet/coinselector_spec.rb -------------------------------------------------------------------------------- /spec/wallet/keygenerator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/spec/wallet/keygenerator_spec.rb -------------------------------------------------------------------------------- /spec/wallet/keystore_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/spec/wallet/keystore_spec.rb -------------------------------------------------------------------------------- /spec/wallet/wallet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanne/bitcoin-ruby-wallet/HEAD/spec/wallet/wallet_spec.rb --------------------------------------------------------------------------------