Skip to content

Commit 708cca1

Browse files
committed
up
1 parent 8ea880b commit 708cca1

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gems:
2626
- [ethlite-contracts](ethlite-contracts) - pre-packaged ready-to-use "out-of-the-gem" (blockchain) contract services / function calls for ethereum & co
2727
- [etherscan-lite](etherscan-lite) - light-weight machinery / helper for the Etherscan (blockchain) JSON HTTP API / web services (note: API key sign-up required)
2828
- [ethname](ethname) - light-weight crowd-sourced "off-chain" ethereum name to (contract) address service / helper (incl. punks v1,v2,v3,v4; phunks v1,v2, synth punks, punk blocks, etc.) - yes, you can! - add more names / contracts via git ;-)
29-
29+
- [ethers](ethers) - "high-level" all-in-one umbrella quick starter gem for easy installation & usage for ethereum & co. (blockchain) contract services in ruby'
3030

3131

3232

ethers/README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ethers
22

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
44

55

66
* 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
1010

1111

1212

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+
1425

1526
For now
1627

@@ -31,7 +42,7 @@ require 'etherscan-lite'
3142

3243
### Gems
3344

34-
For now ethers includes:
45+
For now ethers includes / bundles-up:
3546

3647
- [crypto-lite](../crypto-lite) - cryptographic secure hash functions and public key signature algorithms made easy
3748
- [ethlite](../ethlite) - light-weight machinery to query / call ethereum (blockchain contract) services via json-rpc (incl. tuple support)

ethers/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ require 'hoe'
33

44
Hoe.spec 'ethers' do
55

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'
88
self.description = summary
99

1010
self.urls = { home: 'https://github.com/rubycocos/blockchain' }

0 commit comments

Comments
 (0)