pickynode-bchd 0.1.1 → 0.1.2
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 +1 -1
- data/bin/pickynode-bchd +1 -1
- data/lib/pickynode_bchd.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c0163f2370bc6bc8cb40f499d7bcdfb01e9badb
|
|
4
|
+
data.tar.gz: 506af5da58343a81e8ebdf13857d98c0909344ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38310722ff50c7c0f98b9716fad239732cea2119880e09c92a7a872bf70aacbaec9e7bea2e17e43b0ade5913205fadd69c4fcd426438e09f6fe826b63c464a3f
|
|
7
|
+
data.tar.gz: cd9d70e40e50267b8b9309868410438e6519d4f06ee2251651de32632316356e01bf5d69c5992ba33fe7ef27f887b74540ccf20cae18aed347cf399d4c7dc768
|
data/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Options:
|
|
|
54
54
|
-r, --remove=<s> Remove node type
|
|
55
55
|
-c, --connect=<s> Connect to node type
|
|
56
56
|
-s, --disconnect=<s> Disconnect from node type
|
|
57
|
-
-l, --limit=<i> Limit number of nodes to add/connect
|
|
57
|
+
-l, --limit=<i> Limit number of nodes to add/remove/connect/disconnect
|
|
58
58
|
-v, --version Print version and exit
|
|
59
59
|
-h, --help Show this message
|
|
60
60
|
```
|
data/bin/pickynode-bchd
CHANGED
|
@@ -12,7 +12,7 @@ opts = Trollop.options do
|
|
|
12
12
|
opt :remove, 'Remove node type', type: :string
|
|
13
13
|
opt :connect, 'Connect to node type', type: :string
|
|
14
14
|
opt :disconnect, 'Disconnect from node type', type: :string
|
|
15
|
-
opt :limit, 'Limit number of nodes to add/connect', type: :integer
|
|
15
|
+
opt :limit, 'Limit number of nodes to add/remove/connect/disconnect', type: :integer
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
Trollop.die :limit, 'must be positive' if opts[:limit] && opts[:limit] <= 0
|
data/lib/pickynode_bchd.rb
CHANGED