knife-acl 1.0.6 → 1.0.8

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
  SHA256:
3
- metadata.gz: e4f68cadaee047256abe5aee79be1d498308446f3cd12df183c86729aee34658
4
- data.tar.gz: 8dad7041ab472cc69b3f631837738806a9166cd606626e094bd0f0c910bdd209
3
+ metadata.gz: d680c9647113ae3322b1225f9e45e36609281e3cc07b841d158f7dd9e8d2c96e
4
+ data.tar.gz: 3fb41012e5ac17456715cfbbb43a79476130b615bef0408a684954744808fee6
5
5
  SHA512:
6
- metadata.gz: 4d1b1e3fe36d8e5dad61679f3e7843cce5d834e5fbed4d5b232b927fc467fd8e072e9c843535044c581286f44f8ef5404f4e23554882281ebf5fe7baa43064ee
7
- data.tar.gz: aae13368d33a38e9b3806ae9f60b1dcf67be8bb1d728ea9398573cd3b73252d2004a9d0a0a3ba9c9a0976f152d1bd5c331d0f9a97ad180eeb42b1614e4b411c8
6
+ metadata.gz: b017e505fdcf13256e862ccda2bd03f5ce211a2befcc6d930d13de78495d90b5fb3956387a8eb13c77f5e6d340cf865316508e6ce1f8004558b21a3e822f9ad3
7
+ data.tar.gz: 3559f1bfaee9660c178c35864fe26b94fb953938676fa7ca1e6e5c0aba51552af64525e1f340928f17b6cefd61e068008cce1260b54d076dd50edd71577b082a
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Steven Danna (steve@chef.io)
3
3
  # Author:: Jeremiah Snapp (jeremiah@chef.io)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife acl add MEMBER_TYPE MEMBER_NAME OBJECT_TYPE OBJECT_NAME PERMS"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Jeremiah Snapp (jeremiah@chef.io)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -22,7 +22,7 @@ module OpscodeAcl
22
22
  banner "knife acl bulk add MEMBER_TYPE MEMBER_NAME OBJECT_TYPE REGEX PERMS"
23
23
 
24
24
  deps do
25
- require_relative "acl_base"
25
+ require_relative "helpers/acl_base"
26
26
  include OpscodeAcl::AclBase
27
27
  end
28
28
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Jeremiah Snapp (jeremiah@chef.io)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -22,7 +22,7 @@ module OpscodeAcl
22
22
  banner "knife acl bulk remove MEMBER_TYPE MEMBER_NAME OBJECT_TYPE REGEX PERMS"
23
23
 
24
24
  deps do
25
- require_relative "acl_base"
25
+ require_relative "helpers/acl_base"
26
26
  include OpscodeAcl::AclBase
27
27
  end
28
28
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Steven Danna (steve@chef.io)
3
3
  # Author:: Jeremiah Snapp (jeremiah@chef.io)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife acl remove MEMBER_TYPE MEMBER_NAME OBJECT_TYPE OBJECT_NAME PERMS"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (steve@chef.io)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -22,7 +22,7 @@ module OpscodeAcl
22
22
  banner "knife acl show OBJECT_TYPE OBJECT_NAME"
23
23
 
24
24
  deps do
25
- require_relative "acl_base"
25
+ require_relative "helpers/acl_base"
26
26
  include OpscodeAcl::AclBase
27
27
  end
28
28
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group add MEMBER_TYPE MEMBER_NAME GROUP_NAME"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group create GROUP_NAME"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Christopher Maier (<cm@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2015-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2015-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group destroy GROUP_NAME"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group list"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group remove MEMBER_TYPE MEMBER_NAME GROUP_NAME"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@ module OpscodeAcl
23
23
  banner "knife group show GROUP_NAME"
24
24
 
25
25
  deps do
26
- require_relative "acl_base"
26
+ require_relative "helpers/acl_base"
27
27
  include OpscodeAcl::AclBase
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Steven Danna (steve@chef.io)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (<steve@chef.io>)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (<steve@chef.io>)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (<steve@chef.io>)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (<steve@chef.io>)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Seth Falcon (<seth@chef.io>)
3
3
  # Author:: Jeremiah Snapp (<jeremiah@chef.io>)
4
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
4
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Steven Danna (<steve@chef.io>)
3
- # Copyright:: Copyright 2011-2016 Chef Software, Inc.
3
+ # Copyright:: Copyright 2011-2020 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,3 +1,3 @@
1
1
  module KnifeACL
2
- VERSION = "1.0.6".freeze
2
+ VERSION = "1.0.8".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-acl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Falcon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-12-30 00:00:00.000000000 Z
12
+ date: 2020-02-12 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Knife plugin to manupulate Chef server access control lists
15
15
  email: support@chef.io
@@ -20,7 +20,6 @@ extra_rdoc_files:
20
20
  files:
21
21
  - LICENSE
22
22
  - lib/chef/knife/acl_add.rb
23
- - lib/chef/knife/acl_base.rb
24
23
  - lib/chef/knife/acl_bulk_add.rb
25
24
  - lib/chef/knife/acl_bulk_remove.rb
26
25
  - lib/chef/knife/acl_remove.rb
@@ -31,6 +30,7 @@ files:
31
30
  - lib/chef/knife/group_list.rb
32
31
  - lib/chef/knife/group_remove.rb
33
32
  - lib/chef/knife/group_show.rb
33
+ - lib/chef/knife/helpers/acl_base.rb
34
34
  - lib/chef/knife/user_dissociate.rb
35
35
  - lib/chef/knife/user_invite_add.rb
36
36
  - lib/chef/knife/user_invite_list.rb