Sha256: f6c10d781c60aef70f5af1e907a1e4e171d0ede6b5c77159f1b5bfd28c3e2107

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ciri/utils/version"

Gem::Specification.new do |spec|
  spec.name          = "ciri-utils"
  spec.version       = Ciri::Utils::VERSION
  spec.authors       = ["Jiang Jinyang"]
  spec.email         = ["jjyruby@gmail.com"]

  spec.summary       = %q{Toolkit module of [Ciri](https://github.com/ciri-ethereum/ciri)}
  spec.description   = %q{Functions include: big endian encode/decode, hex/bytes convert, keccak256 ...}
  spec.homepage      = "https://github.com/ciri-ethereum/ciri"
  spec.license       = "Apache 2.0"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency 'digest-sha3', '~> 1.1.0'
  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 12.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
ciri-0.0.4 ciri-utils/ciri-utils.gemspec
ciri-utils-0.2.1 ciri-utils.gemspec
ciri-0.0.3 ciri-utils/ciri-utils.gemspec