bitshares 0.1.1.pre → 0.1.2.pre
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 +4 -4
- data/README.md +2 -2
- data/lib/{bitshares-ruby.rb → bitshares.rb} +0 -0
- data/lib/bitshares/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d50d0fb89277518274e8ea4d6fa5836eb52ef2f
|
|
4
|
+
data.tar.gz: 891b77696e25f8c11f464485c7bdda97ee160dac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 109512e9968682941bd9fec02d2e7555e0edc40ad13501a946439544ef5209f25b7907d67ee6566095587b30ba5954a83af92bc76da1f59ffcdab2065c590a74
|
|
7
|
+
data.tar.gz: b912bb1de244eb5f010511c3303191577337d97f19ece9b197a0bcdb1f1aeef8d97f62a084d1bd5d9ed6da015473030d4d250c3c8036d33d0a902709248ead58
|
data/README.md
CHANGED
|
@@ -47,7 +47,7 @@ Bitshares.configure(:wallet => {:name => 'wallet2', :password => 'password2'})
|
|
|
47
47
|
|
|
48
48
|
**From a Yaml configuration file**
|
|
49
49
|
```Ruby
|
|
50
|
-
Bitshares.configure_with(<path to Yaml file>)
|
|
50
|
+
Bitshares.configure_with(<path to Yaml file>)
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
```Ruby
|
|
@@ -128,7 +128,7 @@ account.register(account_name, pay_from)
|
|
|
128
128
|
|
|
129
129
|
The market class represents the trading (order book and history) for a given an asset-pair - e.g. CNY/BTS. It is instantiated like this:
|
|
130
130
|
```Ruby
|
|
131
|
-
market = Bitshares::Market.new(CNY, BTS)
|
|
131
|
+
market = Bitshares::Market.new('CNY', 'BTS')
|
|
132
132
|
```
|
|
133
133
|
Any 'blockchain_market_' client method may then be used without specifying the quote and base assets again e.g:
|
|
134
134
|
```Ruby
|
|
File without changes
|
data/lib/bitshares/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bitshares
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruce Steedman
|
|
@@ -69,7 +69,7 @@ files:
|
|
|
69
69
|
- bin/console
|
|
70
70
|
- bin/setup
|
|
71
71
|
- bitshares-ruby.gemspec
|
|
72
|
-
- lib/bitshares
|
|
72
|
+
- lib/bitshares.rb
|
|
73
73
|
- lib/bitshares/account.rb
|
|
74
74
|
- lib/bitshares/blockchain.rb
|
|
75
75
|
- lib/bitshares/client.rb
|