ethereum-tx 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc27033601f87178ca950deac60cf55e4423993a
4
- data.tar.gz: cce917c5ee1aba95dc0e0ac70293193c5acda069
3
+ metadata.gz: b2761e4b52932a26abc89be0e206d48718a01c27
4
+ data.tar.gz: b6c598d84e32d5737463810ea85de85ae42799b8
5
5
  SHA512:
6
- metadata.gz: 0489c124c62a0fd46dbd6094d0428773e419f38b91402aafe4e40be7b4a8c89e7bf42e14f0da0bdd817e8aa34ae768bc4317b59142148b9ff6a8cfbd7decb122
7
- data.tar.gz: bd089946955e17cadd852f8561a0a8bf84cc66c448d67589197b90c0dbe0d563a08be22034edb205e0945a07c64e79a88f0118b26fcd67a17c9093a0fdaf42e6
6
+ metadata.gz: 0d5a3a42bdc730965597b6b772d766c6afc5e5112a57a1d7ec2533dfdf4fa938c578ac92c2f540a9f4039601e42277b4150dc167cdcf8385af68481d1444464f
7
+ data.tar.gz: 18fda80dfc1e6b26b593127a2e9ee39b2227d587d32aa1f3f33e7d2b5ad7c68c2108a439aba648fa4176123fc03c49f442b274e3094a6590353c374fc3dbcb65
@@ -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 = '0.2.0'
8
+ spec.version = Ethereum::Tx::VERSION
9
9
  spec.authors = ["Steve Ellis"]
10
10
  spec.email = ["email@steveell.is"]
11
11
 
@@ -21,4 +21,8 @@ module Ethereum
21
21
  class ValidationError < StandardError; end
22
22
  class InvalidTransaction < ValidationError; end
23
23
 
24
+ class Tx
25
+ VERSION = '0.2.1'
26
+ end
27
+
24
28
  end
@@ -1,5 +1,6 @@
1
1
  #lifted from https://github.com/janx/ruby-ethereum
2
2
  #TODO: try to extract gem for common behavior
3
+ require_relative '../ethereum'
3
4
 
4
5
  module Ethereum
5
6
  class Tx
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ethereum-tx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Ellis