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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f540051da8eae20eea9ade479dedb4c4b8ee46c4
4
- data.tar.gz: 13ab75a4dbb7a167896bf2d722a56edf43bc8c44
3
+ metadata.gz: 5d50d0fb89277518274e8ea4d6fa5836eb52ef2f
4
+ data.tar.gz: 891b77696e25f8c11f464485c7bdda97ee160dac
5
5
  SHA512:
6
- metadata.gz: db3ae3d0e9b58b23ff6141acd664079ea9bae5ea53406278ff54100cc5cb4c235bc05c477b35c7311e203dc381e0ff3faf26cd20287a21135f23acb2913fdc6d
7
- data.tar.gz: f717c217e4612b7a056a44651bf165c3d867be3d1530ab336251587c4c910959a58c75c2fd502829d26d11a320240799d80e6b29d14948696ed560f85376be9d
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>) # 'wallets' and 'passwords' keys and array values must be used, as above
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
@@ -1,3 +1,3 @@
1
1
  module Bitshares
2
- VERSION = '0.1.1.pre'
2
+ VERSION = '0.1.2.pre'
3
3
  end
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.1.pre
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-ruby.rb
72
+ - lib/bitshares.rb
73
73
  - lib/bitshares/account.rb
74
74
  - lib/bitshares/blockchain.rb
75
75
  - lib/bitshares/client.rb