Sha256: 0b0c9c3d4183f6ac78e4200677bd54ff3786d6701aaa6ace99c6b52bb8d99b07
Contents?: true
Size: 981 Bytes
Versions: 2
Compression:
Stored size: 981 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "bitcoin/version" Gem::Specification.new do |s| s.name = "bitcoin-ruby" s.version = Bitcoin::VERSION s.authors = ["lian"] s.email = ["meta.rb@gmail.com"] s.homepage = "" s.summary = %q{bitcoin utils and protocol in ruby} s.description = %q{This is a ruby library for interacting with the bitcoin protocol/network} s.homepage = "https://github.com/lian/bitcoin-ruby" s.rubyforge_project = "bitcoin-ruby" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.required_rubygems_version = ">= 2.6.13" s.add_runtime_dependency 'ffi' s.add_runtime_dependency 'scrypt' # required by Litecoin s.add_runtime_dependency 'eventmachine' # required for connection code end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bitcoin-ruby-0.0.20 | bitcoin-ruby.gemspec |
bitcoin-ruby-0.0.19 | bitcoin-ruby.gemspec |