yamload 0.8.0 → 0.9.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 +4 -4
- data/.git-blame-ignore-revs +12 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.ruby-version +1 -1
- data/.standard.yml +1 -1
- data/CHANGELOG.md +25 -19
- data/lib/yamload/version.rb +1 -1
- data/yamload.gemspec +1 -2
- metadata +6 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77f8f5a34d06ab4ffe2dedc15cb0a041db2cf78af90159a4c56ca6ca2183ae37
|
|
4
|
+
data.tar.gz: 18cdc178e8539f3c2d8671a0656c83c75b27ec023e7ef79ff15d72dd39460245
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73238d4be29ce9a4beda11955608138a281429cd85ca8ccfe6788821c108e603bc910ecc63749b6c2971d4211ae59e30bd07527433a3b6d54099e3e2d07f81ec
|
|
7
|
+
data.tar.gz: 5674598610e1c01b591972512a053e5f1f6cb17ec08fbb488f60d3527af9b0d1e3cfe9ff5e0c64e4ec712ac0e31a9ca7f7d8f5598f226aa4a1ba6c3dcd498f7f
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# The commits that did automated reformatting. You can ignore them
|
|
2
|
+
# during git-blame with `--ignore-rev` or `--ignore-revs-file`.
|
|
3
|
+
# You can also globally configure GIT with the following command
|
|
4
|
+
#
|
|
5
|
+
# $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
|
|
6
|
+
#
|
|
7
|
+
# Example entries:
|
|
8
|
+
#
|
|
9
|
+
# <full commit hash> # initial black-format
|
|
10
|
+
# <full commit hash> # rename something internal
|
|
11
|
+
|
|
12
|
+
4ac64416bf38bab7509f784428c3677cce652bcc # Pretty CHANGELOG.md
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.2.0
|
data/.standard.yml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby_version: 2
|
|
1
|
+
ruby_version: 3.2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.9.0
|
|
2
|
+
|
|
3
|
+
- [PLAT-1175] Update to Ruby 3.2
|
|
4
|
+
|
|
1
5
|
## 0.8.0
|
|
2
6
|
|
|
3
7
|
- [PLAT-379] Improve bundler startup time
|
|
@@ -16,72 +20,74 @@
|
|
|
16
20
|
|
|
17
21
|
## 0.5.0 (2020-07-02)
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
- [TT-7683] Add support for AWS SSM and AWS Secrets Manager
|
|
20
24
|
|
|
21
25
|
## 0.4.0 (2020-05-20)
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
- [TT-7323] Bring all dependencies up to date
|
|
24
28
|
|
|
25
29
|
## 0.3.0 (2017-07-31)
|
|
26
30
|
|
|
27
31
|
Removed:
|
|
28
|
-
|
|
29
|
-
|
|
32
|
+
|
|
33
|
+
- [TT-2967] Remove deprecated `Yamload::Loader#loaded_hash`
|
|
34
|
+
- [TT-2967] Remove schema validation
|
|
30
35
|
|
|
31
36
|
Changed:
|
|
32
|
-
|
|
37
|
+
|
|
38
|
+
- [TT-1790] Update ClassyHash to version 0.2.0
|
|
33
39
|
|
|
34
40
|
## 0.2.0 (2015-02-20)
|
|
35
41
|
|
|
36
42
|
Features:
|
|
37
43
|
|
|
38
|
-
|
|
44
|
+
- Add ERB parsing as a prestep for loaded YAML files
|
|
39
45
|
|
|
40
46
|
## 0.1.0 (2015-02-17)
|
|
41
47
|
|
|
42
|
-
|
|
48
|
+
- use proper semantic versioning (semver.org)
|
|
43
49
|
|
|
44
50
|
Features:
|
|
45
51
|
|
|
46
|
-
|
|
47
|
-
|
|
52
|
+
- support loading valid yml files which don't define a hash
|
|
53
|
+
- deprecates `Yamload::Loader#loaded_hash` in favour of `Yamload::Loader#content`
|
|
48
54
|
|
|
49
55
|
## 0.0.6 (2015-02-04)
|
|
50
56
|
|
|
51
57
|
Bugfixes:
|
|
52
58
|
|
|
53
|
-
|
|
59
|
+
- check for directory existence
|
|
54
60
|
|
|
55
61
|
## 0.0.5 (2015-02-04)
|
|
56
62
|
|
|
57
63
|
Bugfixes:
|
|
58
64
|
|
|
59
|
-
|
|
60
|
-
|
|
65
|
+
- check for file existence
|
|
66
|
+
- check for validity of file contents
|
|
61
67
|
|
|
62
68
|
## 0.0.4 (2015-02-04)
|
|
63
69
|
|
|
64
70
|
Features:
|
|
65
71
|
|
|
66
|
-
|
|
72
|
+
- implement `Yamload::Loader#exist?` to check for file presence
|
|
67
73
|
|
|
68
74
|
## 0.0.3 (2015-02-04)
|
|
69
75
|
|
|
70
76
|
Features:
|
|
71
77
|
|
|
72
|
-
|
|
78
|
+
- use a faster schema validation engine with no dependencies
|
|
73
79
|
|
|
74
80
|
## 0.0.2 (2015-02-04)
|
|
75
81
|
|
|
76
82
|
Features:
|
|
77
83
|
|
|
78
|
-
|
|
84
|
+
- freeze the loaded hash
|
|
79
85
|
|
|
80
86
|
## 0.0.1 (2015-02-04)
|
|
81
87
|
|
|
82
88
|
Features:
|
|
83
89
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
90
|
+
- load valid yml files defining a hash
|
|
91
|
+
- conversion of loaded hash to immutable object
|
|
92
|
+
- default values
|
|
93
|
+
- schema validation
|
data/lib/yamload/version.rb
CHANGED
data/yamload.gemspec
CHANGED
|
@@ -14,10 +14,9 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
16
|
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
|
|
17
|
-
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
|
|
18
17
|
spec.require_paths = ["lib"]
|
|
19
18
|
|
|
20
|
-
spec.required_ruby_version = ">=
|
|
19
|
+
spec.required_ruby_version = ">= 3.0"
|
|
21
20
|
|
|
22
21
|
spec.add_dependency "anima", ">= 0.2"
|
|
23
22
|
spec.add_dependency "facets", ">= 3.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yamload
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alessandro Berardi
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: anima
|
|
@@ -173,6 +173,7 @@ executables: []
|
|
|
173
173
|
extensions: []
|
|
174
174
|
extra_rdoc_files: []
|
|
175
175
|
files:
|
|
176
|
+
- ".git-blame-ignore-revs"
|
|
176
177
|
- ".github/dependabot.yml"
|
|
177
178
|
- ".github/workflows/release.yml"
|
|
178
179
|
- ".github/workflows/ruby.yml"
|
|
@@ -221,26 +222,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
221
222
|
requirements:
|
|
222
223
|
- - ">="
|
|
223
224
|
- !ruby/object:Gem::Version
|
|
224
|
-
version:
|
|
225
|
+
version: '3.0'
|
|
225
226
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
226
227
|
requirements:
|
|
227
228
|
- - ">="
|
|
228
229
|
- !ruby/object:Gem::Version
|
|
229
230
|
version: '0'
|
|
230
231
|
requirements: []
|
|
231
|
-
rubygems_version: 3.
|
|
232
|
+
rubygems_version: 3.4.1
|
|
232
233
|
signing_key:
|
|
233
234
|
specification_version: 4
|
|
234
235
|
summary: YAML files loader
|
|
235
|
-
test_files:
|
|
236
|
-
- spec/conversion_spec.rb
|
|
237
|
-
- spec/fixtures/array.yml
|
|
238
|
-
- spec/fixtures/empty.yml
|
|
239
|
-
- spec/fixtures/erb.yml
|
|
240
|
-
- spec/fixtures/erb_bad.yml
|
|
241
|
-
- spec/fixtures/string.yml
|
|
242
|
-
- spec/fixtures/test.yml
|
|
243
|
-
- spec/fixtures/unsafe.yml
|
|
244
|
-
- spec/loader_spec.rb
|
|
245
|
-
- spec/spec_helper.rb
|
|
246
|
-
- spec/support/coverage_loader.rb
|
|
236
|
+
test_files: []
|