Sha256: 1bcd4fa25202c5a2c6bca72d56cc8b4a9125107b1c1d8bf19b48682da15b4338
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'bitcoin/version' Gem::Specification.new do |spec| spec.name = "bitcoinrb" spec.version = Bitcoin::VERSION spec.authors = ["azuchi"] spec.email = ["azuchi@haw.co.jp"] spec.summary = %q{[WIP]The implementation of Bitcoin Protocol for Ruby.} spec.description = %q{[WIP]The implementation of Bitcoin Protocol for Ruby.} spec.homepage = 'https://github.com/haw-itn/bitcoinrb' spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency 'ecdsa' spec.add_runtime_dependency 'eventmachine' spec.add_runtime_dependency 'murmurhash3' spec.add_runtime_dependency 'bech32', '~> 1.0.1' spec.add_runtime_dependency 'daemon-spawn' spec.add_runtime_dependency 'thor' spec.add_runtime_dependency 'ffi' spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bitcoinrb-0.1.1 | bitcoinrb.gemspec |