conjur-asset-host-factory 1.1.1 → 1.1.2

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: c5006bbf530db632e45b02a78fbf1777228c9193
4
- data.tar.gz: 5838d22fa8b83287ac50d89a82ab03a897f3bdf0
3
+ metadata.gz: 40fd3a58648cb61fd90484dd3d4d8c5eb8f6a540
4
+ data.tar.gz: 67cbd4501e0b14d74b8a11bf07d666b764f6f4d1
5
5
  SHA512:
6
- metadata.gz: 41943104b71db6cd4a9da0b8011abb11c779b3d8f84895d9b8ab9f7e2f3eed63ac994a1b4f83e10a06635df7c3d792fa76e25c0ce5b2e852ba7d36ade323d203
7
- data.tar.gz: 6e22e5af626f6ec4fd25029e5e8d76f8e854dbb8d4cd5b3a0b1b5dc85e2a2122d7c19ed53b7adebb98e0826a69584d74a5d727ed31d8fb159a61375e16a204e1
6
+ metadata.gz: 7777486d9bb265fa2dbf8a39909f33bc739e0aa853322f44765502727c6623b0593f893e8602c06eff5f7b62e883116008b106ff327ca238587177bfa0e25bb8
7
+ data.tar.gz: d76b12fd651508487fc204b15301fae9d2952e7461b98aa3cde2541b45f30ff4720f36cb803edc5de7259ad26bb2773532c1409870e3bbf4339f0b8d5d83c11c
data/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ # v1.1.2
2
+
3
+ * Add max-uses flag for token creation
4
+
@@ -21,7 +21,7 @@
21
21
  module Conjur
22
22
  module Asset
23
23
  module HostFactory
24
- VERSION = "1.1.1"
24
+ VERSION = "1.1.2"
25
25
  end
26
26
  end
27
27
  end
@@ -99,6 +99,10 @@ By default, this command creates one token. Optionally, it can be used to create
99
99
  c.arg_name "count"
100
100
  c.desc "Number of identical tokens to create"
101
101
  c.flag [:c, :count]
102
+
103
+ c.arg_name "max-uses"
104
+ c.desc "Maximum number of times which the token can be used"
105
+ c.flag [:m, :"max-uses"]
102
106
 
103
107
  c.action do |global_options,options,args|
104
108
  id = require_arg(args, 'hostfactory')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-asset-host-factory
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-15 00:00:00.000000000 Z
11
+ date: 2015-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: conjur-api
@@ -75,6 +75,7 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - .gitignore
77
77
  - .project
78
+ - CHANGELOG.md
78
79
  - Gemfile
79
80
  - LICENSE.txt
80
81
  - README.md