hiera 3.4.0 → 3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/hiera/version.rb +1 -1
- metadata +60 -62
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e79753879790dccefb26e4f1fd43698af518a823
|
4
|
+
data.tar.gz: a8a7c32acc5932b55de8990c1b3ac87ec9cab6e5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8f96ab53828d269556d767f34c0ab15525ab3775c2988ce36b81b0729d5f77e70a02559b13b961bc6ef9d7f6f5793b06e267031734b45afc90c4325e326d352b
|
7
|
+
data.tar.gz: 977ef83f259209f3395208d59f558fdb2f1a483718be4bef69c760645a366409f431e662e85b5a3a8123c584a7a48c6de669f63d7dc4877144efff127aa8f500
|
data/lib/hiera/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiera
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
5
|
-
prerelease:
|
4
|
+
version: 3.4.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Puppet Labs
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2017-
|
11
|
+
date: 2017-09-12 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: A pluggable data store for hierarcical data
|
15
14
|
email: info@puppetlabs.com
|
@@ -19,107 +18,106 @@ extensions: []
|
|
19
18
|
extra_rdoc_files: []
|
20
19
|
files:
|
21
20
|
- bin/hiera
|
22
|
-
- lib/hiera/
|
23
|
-
- lib/hiera/noop_logger.rb
|
24
|
-
- lib/hiera/error.rb
|
25
|
-
- lib/hiera/util/win32.rb
|
26
|
-
- lib/hiera/fallback_logger.rb
|
27
|
-
- lib/hiera/recursive_guard.rb
|
28
|
-
- lib/hiera/backend/yaml_backend.rb
|
21
|
+
- lib/hiera/backend.rb
|
29
22
|
- lib/hiera/backend/json_backend.rb
|
23
|
+
- lib/hiera/backend/yaml_backend.rb
|
30
24
|
- lib/hiera/config.rb
|
25
|
+
- lib/hiera/console_logger.rb
|
26
|
+
- lib/hiera/error.rb
|
27
|
+
- lib/hiera/fallback_logger.rb
|
31
28
|
- lib/hiera/filecache.rb
|
32
29
|
- lib/hiera/interpolate.rb
|
33
|
-
- lib/hiera/
|
30
|
+
- lib/hiera/noop_logger.rb
|
34
31
|
- lib/hiera/puppet_logger.rb
|
32
|
+
- lib/hiera/recursive_guard.rb
|
35
33
|
- lib/hiera/util.rb
|
36
|
-
- lib/hiera/
|
34
|
+
- lib/hiera/util/win32.rb
|
35
|
+
- lib/hiera/version.rb
|
37
36
|
- lib/hiera.rb
|
38
37
|
- COPYING
|
39
38
|
- README.md
|
40
39
|
- LICENSE
|
41
|
-
- spec/
|
42
|
-
- spec/unit/
|
43
|
-
- spec/unit/
|
44
|
-
- spec/unit/
|
40
|
+
- spec/spec_helper.rb
|
41
|
+
- spec/unit/backend/json_backend_spec.rb
|
42
|
+
- spec/unit/backend/yaml_backend_spec.rb
|
43
|
+
- spec/unit/backend_spec.rb
|
44
|
+
- spec/unit/config_spec.rb
|
45
|
+
- spec/unit/console_logger_spec.rb
|
46
|
+
- spec/unit/fallback_logger_spec.rb
|
47
|
+
- spec/unit/filecache_spec.rb
|
48
|
+
- spec/unit/fixtures/badconfig/config/hiera.yaml
|
49
|
+
- spec/unit/fixtures/badconfig/data/common.yaml
|
50
|
+
- spec/unit/fixtures/interpolate/config/hiera.yaml
|
45
51
|
- spec/unit/fixtures/interpolate/config/hiera_iplm_hiera.yaml
|
46
52
|
- spec/unit/fixtures/interpolate/config/hiera_iplm_hiera_bad.yaml
|
47
|
-
- spec/unit/fixtures/interpolate/config/hiera.yaml
|
48
|
-
- spec/unit/fixtures/interpolate/data/niltest.yaml
|
49
|
-
- spec/unit/fixtures/interpolate/data/complex.yaml
|
50
|
-
- spec/unit/fixtures/interpolate/data/frontend.json
|
51
|
-
- spec/unit/fixtures/interpolate/data/role.json
|
52
53
|
- spec/unit/fixtures/interpolate/data/bad_interpolation.yaml
|
54
|
+
- spec/unit/fixtures/interpolate/data/complex.yaml
|
53
55
|
- spec/unit/fixtures/interpolate/data/dotted_keys.yaml
|
54
|
-
- spec/unit/fixtures/interpolate/data/weird_keys.yaml
|
55
56
|
- spec/unit/fixtures/interpolate/data/empty_interpolation.yaml
|
57
|
+
- spec/unit/fixtures/interpolate/data/frontend.json
|
58
|
+
- spec/unit/fixtures/interpolate/data/niltest.yaml
|
56
59
|
- spec/unit/fixtures/interpolate/data/recursive.yaml
|
57
|
-
- spec/unit/fixtures/
|
58
|
-
- spec/unit/fixtures/
|
59
|
-
- spec/unit/
|
60
|
-
- spec/unit/
|
61
|
-
- spec/unit/
|
62
|
-
- spec/unit/
|
63
|
-
- spec/unit/
|
60
|
+
- spec/unit/fixtures/interpolate/data/role.json
|
61
|
+
- spec/unit/fixtures/interpolate/data/weird_keys.yaml
|
62
|
+
- spec/unit/fixtures/override/config/hiera.yaml
|
63
|
+
- spec/unit/fixtures/override/data/alternate.yaml
|
64
|
+
- spec/unit/fixtures/override/data/common.yaml
|
65
|
+
- spec/unit/hiera_spec.rb
|
66
|
+
- spec/unit/interpolate_spec.rb
|
64
67
|
- spec/unit/puppet_logger_spec.rb
|
65
|
-
- spec/unit/console_logger_spec.rb
|
66
|
-
- spec/unit/version_spec.rb
|
67
|
-
- spec/unit/fallback_logger_spec.rb
|
68
68
|
- spec/unit/util_spec.rb
|
69
|
-
- spec/unit/
|
70
|
-
- spec/spec_helper.rb
|
69
|
+
- spec/unit/version_spec.rb
|
71
70
|
homepage: https://github.com/puppetlabs/hiera
|
72
71
|
licenses: []
|
72
|
+
metadata: {}
|
73
73
|
post_install_message:
|
74
74
|
rdoc_options: []
|
75
75
|
require_paths:
|
76
76
|
- lib
|
77
77
|
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
-
none: false
|
79
78
|
requirements:
|
80
|
-
- -
|
79
|
+
- - '>='
|
81
80
|
- !ruby/object:Gem::Version
|
82
81
|
version: '0'
|
83
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
-
none: false
|
85
83
|
requirements:
|
86
|
-
- -
|
84
|
+
- - '>='
|
87
85
|
- !ruby/object:Gem::Version
|
88
86
|
version: '0'
|
89
87
|
requirements: []
|
90
88
|
rubyforge_project:
|
91
|
-
rubygems_version:
|
89
|
+
rubygems_version: 2.0.14
|
92
90
|
signing_key:
|
93
|
-
specification_version:
|
91
|
+
specification_version: 4
|
94
92
|
summary: Light weight hierarchical data store
|
95
93
|
test_files:
|
96
|
-
- spec/
|
97
|
-
- spec/unit/
|
98
|
-
- spec/unit/
|
99
|
-
- spec/unit/
|
94
|
+
- spec/spec_helper.rb
|
95
|
+
- spec/unit/backend/json_backend_spec.rb
|
96
|
+
- spec/unit/backend/yaml_backend_spec.rb
|
97
|
+
- spec/unit/backend_spec.rb
|
98
|
+
- spec/unit/config_spec.rb
|
99
|
+
- spec/unit/console_logger_spec.rb
|
100
|
+
- spec/unit/fallback_logger_spec.rb
|
101
|
+
- spec/unit/filecache_spec.rb
|
102
|
+
- spec/unit/fixtures/badconfig/config/hiera.yaml
|
103
|
+
- spec/unit/fixtures/badconfig/data/common.yaml
|
104
|
+
- spec/unit/fixtures/interpolate/config/hiera.yaml
|
100
105
|
- spec/unit/fixtures/interpolate/config/hiera_iplm_hiera.yaml
|
101
106
|
- spec/unit/fixtures/interpolate/config/hiera_iplm_hiera_bad.yaml
|
102
|
-
- spec/unit/fixtures/interpolate/config/hiera.yaml
|
103
|
-
- spec/unit/fixtures/interpolate/data/niltest.yaml
|
104
|
-
- spec/unit/fixtures/interpolate/data/complex.yaml
|
105
|
-
- spec/unit/fixtures/interpolate/data/frontend.json
|
106
|
-
- spec/unit/fixtures/interpolate/data/role.json
|
107
107
|
- spec/unit/fixtures/interpolate/data/bad_interpolation.yaml
|
108
|
+
- spec/unit/fixtures/interpolate/data/complex.yaml
|
108
109
|
- spec/unit/fixtures/interpolate/data/dotted_keys.yaml
|
109
|
-
- spec/unit/fixtures/interpolate/data/weird_keys.yaml
|
110
110
|
- spec/unit/fixtures/interpolate/data/empty_interpolation.yaml
|
111
|
+
- spec/unit/fixtures/interpolate/data/frontend.json
|
112
|
+
- spec/unit/fixtures/interpolate/data/niltest.yaml
|
111
113
|
- spec/unit/fixtures/interpolate/data/recursive.yaml
|
112
|
-
- spec/unit/fixtures/
|
113
|
-
- spec/unit/fixtures/
|
114
|
-
- spec/unit/
|
115
|
-
- spec/unit/
|
116
|
-
- spec/unit/
|
117
|
-
- spec/unit/
|
118
|
-
- spec/unit/
|
114
|
+
- spec/unit/fixtures/interpolate/data/role.json
|
115
|
+
- spec/unit/fixtures/interpolate/data/weird_keys.yaml
|
116
|
+
- spec/unit/fixtures/override/config/hiera.yaml
|
117
|
+
- spec/unit/fixtures/override/data/alternate.yaml
|
118
|
+
- spec/unit/fixtures/override/data/common.yaml
|
119
|
+
- spec/unit/hiera_spec.rb
|
120
|
+
- spec/unit/interpolate_spec.rb
|
119
121
|
- spec/unit/puppet_logger_spec.rb
|
120
|
-
- spec/unit/console_logger_spec.rb
|
121
|
-
- spec/unit/version_spec.rb
|
122
|
-
- spec/unit/fallback_logger_spec.rb
|
123
122
|
- spec/unit/util_spec.rb
|
124
|
-
- spec/unit/
|
125
|
-
- spec/spec_helper.rb
|
123
|
+
- spec/unit/version_spec.rb
|