forked from Bloxy-info/web3-eth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
web3-eth.gemspec
31 lines (25 loc) · 1.05 KB
/
web3-eth.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'web3/eth/version'
Gem::Specification.new do |spec|
spec.name = "web3-eth"
spec.version = Web3::Eth::VERSION
spec.authors = ["studnev"]
spec.email = ["[email protected]"]
spec.summary = %q{Web3 client to connect to Ethereum node by RPC.}
spec.description = %q{Calling RPC methods of Ethereum node with Ruby.}
spec.homepage = "https://github.com/Bloxy-info/web3-eth"
spec.license = "MIT"
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('rlp', '~> 0.7')
spec.add_dependency('keccak', '~> 1.3')
spec.add_development_dependency "bundler", "~> 2.1.4"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.14"
end