license-acceptance 0.2.16 → 1.0.0
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ee66c4765774b7f57b1ee20c55138e11bd72071d09cdd1d18fdce1f4888529f
|
|
4
|
+
data.tar.gz: 765218350bff46b378b62a103e28f6108f0bf105ed94695b1c51141cfa9e48b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 607159212194ba650b7c6a5661f7706977dd376192765da07c62d4ef54fcbbe0cfc7a6ed80d7520a1c5c5c97c7a8cdc986d53730deef6b9dd391ae26c7329065
|
|
7
|
+
data.tar.gz: 5a45bb60c410d73a286efa1a9c812f977ecc49c1070ac8705c4568f6f4f4ca073127ec6dc4115d108f9996665a309ec30328f9d9b2f461a91d4b36e95133fea2
|
data/Gemfile.lock
CHANGED
data/config/product_info.toml
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
title = "All known products that require license acceptance, and the mapping of parent to child relationships"
|
|
3
3
|
|
|
4
4
|
[[products]]
|
|
5
|
-
name = "chef-
|
|
6
|
-
pretty_name = "Chef
|
|
5
|
+
name = "chef-infra"
|
|
6
|
+
pretty_name = "Chef Infra"
|
|
7
7
|
hab_pkg_id = "chef/chef-client"
|
|
8
|
-
filename = "
|
|
8
|
+
filename = "chef_infra"
|
|
9
9
|
mixlib_name = "chef"
|
|
10
10
|
license_required_version = "15"
|
|
11
11
|
|
|
@@ -27,4 +27,4 @@ hab_pkg_id = "chef/oc_erchef"
|
|
|
27
27
|
filename = "chef_server"
|
|
28
28
|
|
|
29
29
|
[relationships]
|
|
30
|
-
"chef-
|
|
30
|
+
"chef-infra" = ["inspec"]
|
|
@@ -13,7 +13,7 @@ RSpec.describe LicenseAcceptance::Acceptor do
|
|
|
13
13
|
end
|
|
14
14
|
let(:opts) { { output: output } }
|
|
15
15
|
let(:acc) { LicenseAcceptance::Acceptor.new(opts) }
|
|
16
|
-
let(:product) { instance_double(LicenseAcceptance::Product, name: "
|
|
16
|
+
let(:product) { instance_double(LicenseAcceptance::Product, name: "chef-infra") }
|
|
17
17
|
let(:version) { "version" }
|
|
18
18
|
let(:relationship) { instance_double(LicenseAcceptance::ProductRelationship) }
|
|
19
19
|
let(:missing) { [product] }
|
|
@@ -12,7 +12,7 @@ RSpec.describe LicenseAcceptance::Strategy::File do
|
|
|
12
12
|
instance_double(LicenseAcceptance::Config, license_locations: [dir1, dir2], persist_location: dir3)
|
|
13
13
|
end
|
|
14
14
|
let(:acc) { LicenseAcceptance::Strategy::File.new(config) }
|
|
15
|
-
let(:p1_name) { "
|
|
15
|
+
let(:p1_name) { "chef-infra" }
|
|
16
16
|
let(:p1_filename) { "p1_filename" }
|
|
17
17
|
let(:p1) { instance_double(LicenseAcceptance::Product, name: p1_name, filename: p1_filename) }
|
|
18
18
|
let(:version) { "0.1.0" }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: license-acceptance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tyler-ball
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pastel
|