hiera 1.3.1 → 1.3.2.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of hiera might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/lib/hiera/version.rb +1 -1
- data/spec/unit/config_spec.rb +2 -2
- metadata +38 -37
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d09536712a42df9adc396179e989930ecad02f68
|
4
|
+
data.tar.gz: a9f6f071ebcd6d4b2f3b51b5356ebdc5539965c8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 75b92dd7914f57c1181531b1b6f9fb107b3d4f60ceeabea05c845b8cea478dff95169e0d2b3338293a0f4de4239e99c8cd82f4008d1cf1296d0250b83deca5a9
|
7
|
+
data.tar.gz: 1b33ca1476383bcb4946995b463f98d58f127c34a4f7146d75b4f1995328708487e45e008fc4357bd7dab1c8e69c7bd1ec7f315e8d18cf28393b5c6f5e12961e
|
data/lib/hiera/version.rb
CHANGED
data/spec/unit/config_spec.rb
CHANGED
@@ -61,7 +61,7 @@ class Hiera
|
|
61
61
|
Config.load({})
|
62
62
|
end
|
63
63
|
|
64
|
-
context "loading '/dev/null' as spec tests do" do
|
64
|
+
context "loading '/dev/null' as spec tests do", :unless => Hiera::Util.microsoft_windows? do
|
65
65
|
before :each do
|
66
66
|
# Simulate the behavior of YAML.load_file('/dev/null') in MRI 1.9.3p194
|
67
67
|
Config.stubs(:yaml_load_file).
|
@@ -69,7 +69,7 @@ class Hiera
|
|
69
69
|
end
|
70
70
|
|
71
71
|
it "is not exceptional behavior" do
|
72
|
-
|
72
|
+
Config.load('/dev/null')
|
73
73
|
end
|
74
74
|
end
|
75
75
|
end
|
metadata
CHANGED
@@ -1,27 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiera
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
5
|
-
prerelease:
|
4
|
+
version: 1.3.2.rc1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Puppet Labs
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2014-
|
11
|
+
date: 2014-02-10 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: json_pure
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
description: A pluggable data store for hierarcical data
|
26
28
|
email: info@puppetlabs.com
|
27
29
|
executables:
|
@@ -30,70 +32,69 @@ extensions: []
|
|
30
32
|
extra_rdoc_files: []
|
31
33
|
files:
|
32
34
|
- bin/hiera
|
33
|
-
- lib/hiera.rb
|
35
|
+
- lib/hiera/backend.rb
|
36
|
+
- lib/hiera/backend/json_backend.rb
|
37
|
+
- lib/hiera/backend/yaml_backend.rb
|
38
|
+
- lib/hiera/config.rb
|
39
|
+
- lib/hiera/console_logger.rb
|
40
|
+
- lib/hiera/error.rb
|
34
41
|
- lib/hiera/fallback_logger.rb
|
35
|
-
- lib/hiera/
|
36
|
-
- lib/hiera/version.rb
|
42
|
+
- lib/hiera/filecache.rb
|
37
43
|
- lib/hiera/interpolate.rb
|
38
|
-
- lib/hiera/recursive_guard.rb
|
39
44
|
- lib/hiera/noop_logger.rb
|
45
|
+
- lib/hiera/puppet_logger.rb
|
46
|
+
- lib/hiera/recursive_guard.rb
|
40
47
|
- lib/hiera/util.rb
|
41
|
-
- lib/hiera/
|
42
|
-
- lib/hiera
|
43
|
-
- lib/hiera/filecache.rb
|
44
|
-
- lib/hiera/error.rb
|
45
|
-
- lib/hiera/config.rb
|
46
|
-
- lib/hiera/console_logger.rb
|
47
|
-
- lib/hiera/backend.rb
|
48
|
+
- lib/hiera/version.rb
|
49
|
+
- lib/hiera.rb
|
48
50
|
- COPYING
|
49
51
|
- README.md
|
50
52
|
- LICENSE
|
51
53
|
- spec/spec_helper.rb
|
52
|
-
- spec/unit/
|
54
|
+
- spec/unit/backend/json_backend_spec.rb
|
55
|
+
- spec/unit/backend/yaml_backend_spec.rb
|
53
56
|
- spec/unit/backend_spec.rb
|
54
57
|
- spec/unit/config_spec.rb
|
55
|
-
- spec/unit/hiera_spec.rb
|
56
|
-
- spec/unit/version_spec.rb
|
57
|
-
- spec/unit/filecache_spec.rb
|
58
58
|
- spec/unit/console_logger_spec.rb
|
59
|
-
- spec/unit/
|
60
|
-
- spec/unit/
|
59
|
+
- spec/unit/fallback_logger_spec.rb
|
60
|
+
- spec/unit/filecache_spec.rb
|
61
|
+
- spec/unit/hiera_spec.rb
|
61
62
|
- spec/unit/puppet_logger_spec.rb
|
62
63
|
- spec/unit/util_spec.rb
|
64
|
+
- spec/unit/version_spec.rb
|
63
65
|
homepage: https://github.com/puppetlabs/hiera
|
64
66
|
licenses: []
|
67
|
+
metadata: {}
|
65
68
|
post_install_message:
|
66
69
|
rdoc_options: []
|
67
70
|
require_paths:
|
68
71
|
- lib
|
69
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
-
none: false
|
71
73
|
requirements:
|
72
|
-
- -
|
74
|
+
- - '>='
|
73
75
|
- !ruby/object:Gem::Version
|
74
76
|
version: '0'
|
75
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
-
none: false
|
77
78
|
requirements:
|
78
|
-
- -
|
79
|
+
- - '>'
|
79
80
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
81
|
+
version: 1.3.1
|
81
82
|
requirements: []
|
82
83
|
rubyforge_project:
|
83
|
-
rubygems_version:
|
84
|
+
rubygems_version: 2.0.3
|
84
85
|
signing_key:
|
85
|
-
specification_version:
|
86
|
+
specification_version: 4
|
86
87
|
summary: Light weight hierarchical data store
|
87
88
|
test_files:
|
88
89
|
- spec/spec_helper.rb
|
89
|
-
- spec/unit/
|
90
|
+
- spec/unit/backend/json_backend_spec.rb
|
91
|
+
- spec/unit/backend/yaml_backend_spec.rb
|
90
92
|
- spec/unit/backend_spec.rb
|
91
93
|
- spec/unit/config_spec.rb
|
92
|
-
- spec/unit/hiera_spec.rb
|
93
|
-
- spec/unit/version_spec.rb
|
94
|
-
- spec/unit/filecache_spec.rb
|
95
94
|
- spec/unit/console_logger_spec.rb
|
96
|
-
- spec/unit/
|
97
|
-
- spec/unit/
|
95
|
+
- spec/unit/fallback_logger_spec.rb
|
96
|
+
- spec/unit/filecache_spec.rb
|
97
|
+
- spec/unit/hiera_spec.rb
|
98
98
|
- spec/unit/puppet_logger_spec.rb
|
99
99
|
- spec/unit/util_spec.rb
|
100
|
+
- spec/unit/version_spec.rb
|