ethereum.rb 2.3 → 2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +26 -0
- data/.travis.yml +2 -0
- data/PREREQUISITES.md +1 -1
- data/bin/install_parity +1 -1
- data/lib/ethereum/contract.rb +1 -1
- data/lib/ethereum/solidity.rb +1 -1
- data/lib/ethereum/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee62dd3b5d2d9e9b29cd797f21bff2514998e95476d69da2367b57f0ac90c660
|
4
|
+
data.tar.gz: f9f08d7ffcb196d8c954c6ab79f902cb36f5bec5ef6f6ec9b8a39d4454ff241f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c696336cb44fe3c43b2b4403bcb78695d8958d49319bd463068d86248f125183742622ad33a62425cbea625c8df8c209465fbc74b9913566b9d4f26845f4e25c
|
7
|
+
data.tar.gz: '09b2a85c0bec50dcdcb8470a76b552c81bec5563c6309f7d5a03cacd5f983be49ccbf9a362abf5fe16d54b9f62f855fe48c5bb952d249498c1b5c38808eb25b1'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: bug
|
6
|
+
assignees: kurotaky
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
### Steps to reproduce
|
11
|
+
<!-- Steps to reproduce the behavior -->
|
12
|
+
|
13
|
+
### Expected behavior
|
14
|
+
<!-- Tell us what should happen -->
|
15
|
+
|
16
|
+
### Actual behavior
|
17
|
+
<!-- Tell us what happens instead -->
|
18
|
+
|
19
|
+
### System configuration
|
20
|
+
**Ruby version**:
|
21
|
+
**Solc version**:
|
22
|
+
**Parity version**:
|
23
|
+
**OS**:
|
24
|
+
|
25
|
+
### Failure Logs
|
26
|
+
<!-- Please include any relevant log snippets or files here-->
|
data/.travis.yml
CHANGED
data/PREREQUISITES.md
CHANGED
data/bin/install_parity
CHANGED
@@ -5,7 +5,7 @@ sudo add-apt-repository ppa:ethereum/ethereum -y
|
|
5
5
|
sudo apt-get update
|
6
6
|
sudo apt-get -y install dpkg
|
7
7
|
sudo apt-get -y install libssl-dev
|
8
|
-
curl -o /usr/bin/solc -fL https://github.com/ethereum/solidity/releases/download/v0.
|
8
|
+
curl -o /usr/bin/solc -fL https://github.com/ethereum/solidity/releases/download/v0.5.16/solc-static-linux \
|
9
9
|
&& chmod 775 /usr/bin/solc \
|
10
10
|
&& chown travis:travis /usr/bin/solc
|
11
11
|
echo "Solc version"
|
data/lib/ethereum/contract.rb
CHANGED
data/lib/ethereum/solidity.rb
CHANGED
@@ -10,7 +10,7 @@ module Ethereum
|
|
10
10
|
|
11
11
|
class Solidity
|
12
12
|
|
13
|
-
OUTPUT_REGEXP = /======= (\S*):(\S*) =======\s*Binary:\s*(\S*)\s*Contract JSON ABI\s*(
|
13
|
+
OUTPUT_REGEXP = /======= (\S*):(\S*) =======\s*Binary:\s*(\S*)\s*Contract JSON ABI\s*(.*)/
|
14
14
|
|
15
15
|
def initialize(bin_path = "solc")
|
16
16
|
@bin_path = bin_path
|
data/lib/ethereum/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ethereum.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '2.
|
4
|
+
version: '2.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marek Kirejczyk
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -117,6 +117,7 @@ executables: []
|
|
117
117
|
extensions: []
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
120
121
|
- ".gitignore"
|
121
122
|
- ".rspec"
|
122
123
|
- ".ruby-gemset"
|