Initial import

This commit is contained in:
Nick Thomas
2011-06-04 22:53:33 +01:00
commit 1e46836b46
8 changed files with 806 additions and 0 deletions

19
btc_wire_proto.gemspec Normal file
View File

@@ -0,0 +1,19 @@
Gem::Specification.new do |gem|
gem.name = "btc_wire_proto"
gem.version = "0.1"
gem.date = Date.today.to_s
gem.summary = "(De)serialiser for the Bitcoin p2p wire protocol"
gem.description = "Implements the generation and parsing code for Bitcoin " +
"p2p messages"
gem.authors = ['Nick Thomas']
gem.email = "nick@sharpcoin.org"
gem.homepage = "http://sharpcoin.org"
gem.add_dependency('rake')
gem.add_dependency('ipaddress')
gem.add_dependency('bindata')
gem.add_development_dependency('rspec', ['>= 2.5.0'])
gem.files = Dir['Rakefile', '{lib,spec}/**/*', 'README', 'CHANGELOG']
end