ethers 0.0.1 → 0.1.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -3
  3. data/Rakefile +2 -2
  4. metadata +5 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6db41c155006c063833c13fa5c7ff7fdc6d081fb4d25b1bea3cb147221de8019
4
- data.tar.gz: 427699e1dfd3f73e9d4ac037fa2cc299ba39f97e3ac4393b87ace81ed2abbdec
3
+ metadata.gz: 0cc3954d2044ac46390f1664eb4670942015940d445806c3c448ba9cd1d6a65e
4
+ data.tar.gz: 2c9292e817b8e27e73884918e023c033999eb0cc26409942c0091273317726d0
5
5
  SHA512:
6
- metadata.gz: 824d35f1cddf6b83fa8a3e8ea05cf2ade7c9e0fbaae4076fa3db3999f6eb2ffe8bb97e20153e8fcfc17f5976e5ec32a504d3cc45405b6c689bb8838d83569668
7
- data.tar.gz: b242e8e685e15a44a3a09f744c93f9619cfe49e29f35ef1a742192ffba30d184f1fd49845c7de9e38c44e4ea8d31724b7e933242ee06ca146147c5170e8bac11
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
- ## Usage
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.1'
7
- self.summary = "ethers - all-in-one umbrella for ethereum & co. (blockchain) contract services"
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.1
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 - all-in-one umbrella for ethereum & co. (blockchain) contract
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 - all-in-one umbrella for ethereum & co. (blockchain) contract services
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: []