ethereum-tx 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ethereum-tx.gemspec +2 -2
- data/lib/ethereum.rb +4 -0
- data/lib/ethereum/tx.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2761e4b52932a26abc89be0e206d48718a01c27
|
4
|
+
data.tar.gz: b6c598d84e32d5737463810ea85de85ae42799b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d5a3a42bdc730965597b6b772d766c6afc5e5112a57a1d7ec2533dfdf4fa938c578ac92c2f540a9f4039601e42277b4150dc167cdcf8385af68481d1444464f
|
7
|
+
data.tar.gz: 18fda80dfc1e6b26b593127a2e9ee39b2227d587d32aa1f3f33e7d2b5ad7c68c2108a439aba648fa4176123fc03c49f442b274e3094a6590353c374fc3dbcb65
|
data/ethereum-tx.gemspec
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'ethereum'
|
4
|
+
require 'ethereum/tx'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "ethereum-tx"
|
8
|
-
spec.version =
|
8
|
+
spec.version = Ethereum::Tx::VERSION
|
9
9
|
spec.authors = ["Steve Ellis"]
|
10
10
|
spec.email = ["email@steveell.is"]
|
11
11
|
|
data/lib/ethereum.rb
CHANGED
data/lib/ethereum/tx.rb
CHANGED