bitshares 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cdd9cb06ba7de14c146c796a45ffb114b3580adc
4
- data.tar.gz: cdfb67d63b34bd0ed3c3add85326791e392014a8
3
+ metadata.gz: 187972378d34ce0b93bc6296b4b2576bdcd6c9e2
4
+ data.tar.gz: 3ece7700ada72d8485949071591bddf79ae7402b
5
5
  SHA512:
6
- metadata.gz: 11a3914c2343c2d21a39e45a57e9fdac9c7e92e46b30cf4655f988cfc0a4250e59d6644d5089a912b9e261acd83cf9737e7dcbe73f5a1f376f87fbee2b4f018b
7
- data.tar.gz: 511570f0749d431b33360a75c3d4b9d27ada36d1f58ed70cecdff03e113cc0f468996be21a5791f534b2dfac4ccf2690f5c28d47f17efff0c55c3e81e2f9c1c3
6
+ metadata.gz: 4c795ff28cbce90f4f105232aeb4ab49a34a5161bd10fafadbcb8a4105007a88f935ea1ec66378299a9ec6efe1c63215352868f38a69a6e08391fe63d2940409
7
+ data.tar.gz: 1adc7ee781956d4c9e160d7abf0eb7a6d7bb1dcd6084084470b0ff00a571f34a005150d774bb23ade6d3eecd3117fd7cf840b03d57cebe4e7a6d7c52be7ff925
data/README.md CHANGED
@@ -199,9 +199,15 @@ For the full specification clone this repo and run:
199
199
 
200
200
  **Test Requirements**
201
201
 
202
- There is currently no test blockchain, so the test suite runs on the live one - orders and all. If this concerns you - and it should :scream: - feel free to browse the test code first. The following client 'fixtures' are required for the full test suite to run and pass:
202
+ There is currently no test blockchain, so the test suite runs on the live one - orders and all. If this concerns you - and it should :scream: - feel free to browse the test code first. This means that the environment variables described in Authentication above must be set to a valid wallet account and password in order for the test suite to access the p2p network. Additionally, the following client 'fixtures' are required for the full test suite to run and pass:
203
203
 
204
- An empty wallet 'test1', with password 'password1' and an account called 'account-test' *Please don't register this account!*. The account will also need funding with a few BTS as trades/cancellations are 0.5 BTS each. 10 BTS (circa 2.5 cents right now) should be more than enough to run the suite a few times.
204
+ An empty wallet 'test1', with password 'password1' and an account called 'account-test' *Please don't register this account!*.
205
+
206
+ Tests with a real cost (e.g. submitting/cancelling orders) are disabled by default. To include these use the following environment variable setting:
207
+ ```
208
+ export BITSHARES_INCLUDE_TESTS_WITH_COSTS=true
209
+ ```
210
+ If these tests are included, the 'test1' account will need funding beforehand with a few BTS, as trades/cancellations are 0.5 BTS each. 10 BTS (circa 2.5 cents right now) should be more than enough to run the suite a few times.
205
211
 
206
212
  ## Contributing
207
213
 
@@ -1,3 +1,3 @@
1
1
  module Bitshares
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitshares
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruce Steedman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-21 00:00:00.000000000 Z
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -89,7 +89,6 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - ".gitignore"
91
91
  - ".rspec"
92
- - ".travis.yml"
93
92
  - Gemfile
94
93
  - LICENSE.txt
95
94
  - README.md
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.2
4
- before_install: gem install bundler -v 1.10.2