ethers 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -3
- data/Rakefile +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cc3954d2044ac46390f1664eb4670942015940d445806c3c448ba9cd1d6a65e
|
4
|
+
data.tar.gz: 2c9292e817b8e27e73884918e023c033999eb0cc26409942c0091273317726d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ded75bc73ae7ae1a52a205223194e6a127a19e7f03b3f6d0cad921a1bf8215892e84b7618da383735e430a0545c7f06ac023a602e858c300b1687c3df5a09ad9
|
7
|
+
data.tar.gz: 3230d3dd74bb7d1196bc94bb4340455dec9668d1862a4f02e2f5e8a0c39fc203face32e8c576190a1183af08027a39d251040a3a72f22c71e51233c753644380
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ethers
|
2
2
|
|
3
|
-
ethers - all-in-one umbrella for ethereum & co. (blockchain) contract services
|
3
|
+
ethers - "high-level" all-in-one umbrella quick starter gem for easy installation & usage for ethereum & co. (blockchain) contract services in ruby
|
4
4
|
|
5
5
|
|
6
6
|
* home :: [github.com/rubycocos/blockchain](https://github.com/rubycocos/blockchain)
|
@@ -10,7 +10,18 @@ ethers - all-in-one umbrella for ethereum & co. (blockchain) contract services
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
##
|
13
|
+
## Download & Install The Ruby Package(s)
|
14
|
+
|
15
|
+
To install use the ruby package manager (also known as rubygems):
|
16
|
+
|
17
|
+
```
|
18
|
+
$ gem install ethers
|
19
|
+
```
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
## Usage In Your Ruby Scripts
|
24
|
+
|
14
25
|
|
15
26
|
For now
|
16
27
|
|
@@ -31,7 +42,7 @@ require 'etherscan-lite'
|
|
31
42
|
|
32
43
|
### Gems
|
33
44
|
|
34
|
-
For now ethers includes:
|
45
|
+
For now ethers includes / bundles-up:
|
35
46
|
|
36
47
|
- [crypto-lite](../crypto-lite) - cryptographic secure hash functions and public key signature algorithms made easy
|
37
48
|
- [ethlite](../ethlite) - light-weight machinery to query / call ethereum (blockchain contract) services via json-rpc (incl. tuple support)
|
data/Rakefile
CHANGED
@@ -3,8 +3,8 @@ require 'hoe'
|
|
3
3
|
|
4
4
|
Hoe.spec 'ethers' do
|
5
5
|
|
6
|
-
self.version = '0.0
|
7
|
-
self.summary =
|
6
|
+
self.version = '0.1.0'
|
7
|
+
self.summary = 'ethers - "high-level" all-in-one umbrella quick starter gem for easy installation & usage for ethereum & co. (blockchain) contract services in ruby'
|
8
8
|
self.description = summary
|
9
9
|
|
10
10
|
self.urls = { home: 'https://github.com/rubycocos/blockchain' }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ethers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerald Bauer
|
@@ -142,8 +142,8 @@ dependencies:
|
|
142
142
|
- - "~>"
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '3.23'
|
145
|
-
description: ethers
|
146
|
-
services
|
145
|
+
description: ethers - "high-level" all-in-one umbrella quick starter gem for easy
|
146
|
+
installation & usage for ethereum & co. (blockchain) contract services in ruby
|
147
147
|
email: wwwmake@googlegroups.com
|
148
148
|
executables: []
|
149
149
|
extensions: []
|
@@ -181,5 +181,6 @@ requirements: []
|
|
181
181
|
rubygems_version: 3.3.7
|
182
182
|
signing_key:
|
183
183
|
specification_version: 4
|
184
|
-
summary: ethers
|
184
|
+
summary: ethers - "high-level" all-in-one umbrella quick starter gem for easy installation
|
185
|
+
& usage for ethereum & co. (blockchain) contract services in ruby
|
185
186
|
test_files: []
|