ethereum-contract-abi 0.1.3 → 0.1.4

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
  SHA256:
3
- metadata.gz: 993ab91cdd1f2c50018d396aff891c254f442321b9ee9b19f07ada7f38caf4ef
4
- data.tar.gz: 6417260c240862283b200f4a846bc44920786260306229504b09685901c8ef1f
3
+ metadata.gz: 0b91b6e96e88106aba0ea4ffe8bbd2f0593d9a0da328db9c02c901e187c2883f
4
+ data.tar.gz: 61fbdf1b1d6b1aafd0cace78c1aca040cb362baf1ba675774cd6a3b505cae64c
5
5
  SHA512:
6
- metadata.gz: 646713a51dcf2a8ddf903d6599ed5772542f7ec196d3cc5535dfc5a09c1960b2e73b7ef691ccc50bc5319314f0a82e857e59d07aceb1bde4718c5eceeb959a33
7
- data.tar.gz: 1ebd194643ef1f5b8ab31c76499b4e9dfce732481dc57fb30dff126f64505a346c32532bd0dab88689acd008fe8cf3054e7e0b63435768d6cc61b6ac0b10286d
6
+ metadata.gz: 5e4446485cef20a816beca498128716eef35b7d95cd618714a7176cccf1977b00f5c5b8a2145ae24fbc303009832e92aa000dfecba8a95b2725431c453210648
7
+ data.tar.gz: f04a1f9824e0f01da8a29440afc48dd9aaac622ead17ba55a0c947ca8027e0672d4496dfecab02adc40625aeec3a0659b10c183d0c302ff633da218690004f95
data/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # Change Log
2
+
3
+ ### v0.1.4
4
+ - Fixed ArgumentError thrown when validating a valid string in String ABI type
5
+
6
+ ### v0.1.3
7
+ - Correctly set gem dependency for keccak256
8
+
9
+ ### v0.1.1
10
+ - Switched https://github.com/evtaylor/sha3-pure-ruby.git github repo dependency to keccak256 gem
11
+
12
+ ### v0.1.0
13
+ - Initial release as a gem
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ethereum-contract-abi'
3
- s.version = '0.1.3'
3
+ s.version = '0.1.4'
4
4
  s.summary = "Ethereum contract ABI encoder and decoder"
5
5
  s.description = "A library for interacting with Ethereum smart contracts via the Contract Application Binary Interface (ABI)"
6
6
  s.authors = ["Evan Taylor"]
@@ -22,7 +22,7 @@ module EthereumContractABI
22
22
  end
23
23
 
24
24
  def valid_value?(value)
25
- return false unless value.is_a? String
25
+ return false unless value.is_a? ::String
26
26
  true
27
27
  end
28
28
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ethereum-contract-abi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Taylor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-05 00:00:00.000000000 Z
11
+ date: 2021-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: keccak256
@@ -34,6 +34,7 @@ files:
34
34
  - ".gitignore"
35
35
  - ".rspec"
36
36
  - '3.0'
37
+ - CHANGELOG.md
37
38
  - Gemfile
38
39
  - Gemfile.lock
39
40
  - LICENSE