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 +4 -4
- data/README.md +8 -2
- data/lib/bitshares/version.rb +1 -1
- metadata +2 -3
- data/.travis.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 187972378d34ce0b93bc6296b4b2576bdcd6c9e2
|
4
|
+
data.tar.gz: 3ece7700ada72d8485949071591bddf79ae7402b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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!*.
|
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
|
|
data/lib/bitshares/version.rb
CHANGED
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.
|
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-
|
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
|
data/.travis.yml
DELETED