Sha256: 262f8fcd6b0a47ea4c2fa2cb53ef091f49faabf8206023f0814ea70c373e43ee
Contents?: true
Size: 1.62 KB
Versions: 5
Compression:
Stored size: 1.62 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tapyrus/version' Gem::Specification.new do |spec| spec.name = 'tapyrus' spec.version = Tapyrus::VERSION spec.authors = ['azuchi'] spec.email = ['azuchi@chaintope.com'] spec.summary = 'The implementation of Tapyrus Protocol for Ruby.' spec.description = 'The implementation of Tapyrus Protocol for Ruby.' spec.homepage = 'https://github.com/chaintope/tapyrusrb' 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 'daemon-spawn' spec.add_runtime_dependency 'thor' spec.add_runtime_dependency 'ffi' spec.add_runtime_dependency 'leb128', '~> 1.0.0' spec.add_runtime_dependency 'eventmachine_httpserver' spec.add_runtime_dependency 'iniparse' spec.add_runtime_dependency 'siphash' spec.add_runtime_dependency 'activesupport', '>= 5.2.3' spec.add_runtime_dependency 'json_pure', '>= 2.3.1' # for options spec.add_development_dependency 'leveldb-native' spec.add_development_dependency 'bundler' spec.add_development_dependency 'prettier' spec.add_development_dependency 'rake', '>= 12.3.3' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'timecop' spec.add_development_dependency 'webmock', '~> 3.0' end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
tapyrus-0.2.13 | tapyrusrb.gemspec |
tapyrus-0.2.12 | tapyrusrb.gemspec |
tapyrus-0.2.10 | tapyrusrb.gemspec |
tapyrus-0.2.9 | tapyrusrb.gemspec |
tapyrus-0.2.8 | tapyrusrb.gemspec |