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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50dd619794777271882c2156d4b5d1713c03c108
4
- data.tar.gz: 06d84193f3cf29874cb4dd43f9d8b3e6ef24c8ef
3
+ metadata.gz: 6c0163f2370bc6bc8cb40f499d7bcdfb01e9badb
4
+ data.tar.gz: 506af5da58343a81e8ebdf13857d98c0909344ca
5
5
  SHA512:
6
- metadata.gz: 778a5901268e77fd507b538792d943f005e82f747e1b0d2ca2457034f692cd4e34fbc8d61fcebc5b704251cadc6cd748da183a401779209a23309dc9b7b54d3c
7
- data.tar.gz: a359de4c57f98925fa16e8d89baddc495c5b2b3d388f1daf7b3095c98b13c2bf52a5f2a4aba82e75526708afcfa7791ab9d29142c3126425badde73d62765983
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
@@ -9,7 +9,7 @@ require 'uri'
9
9
  # Allows you to easily add/remove/connect/disconnect nodes
10
10
  # based on User Agent.
11
11
  class PickynodeBCHD
12
- VERSION = '0.1.1'
12
+ VERSION = '0.1.2'
13
13
 
14
14
  def initialize(opts = {})
15
15
  @opts = opts
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pickynode-bchd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Ellithorpe