cody 1.1.0 → 1.2.1
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/.github/FUNDING.yml +1 -0
- data/CHANGELOG.md +7 -0
- data/lib/cody/autoloader.rb +3 -1
- data/lib/cody/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ee7a26eb0ccb0b5c2b745983fcf98d35d5c1e921fb7d2623cc3be533d5cce2a
|
|
4
|
+
data.tar.gz: 406a89def1acc38cb62cce043650d856f495c892c3a390653debe7993e2976d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae13df30790a0d64fa255b13ebd60acb9d3e609d9a87e17205df9b69508e2c96097c31e1f81d3b2060a03b303409e731e16cd5c6c433dbef0562aee7ec081e88
|
|
7
|
+
data.tar.gz: bfd5847d7f804a35fc2c7cba29f64e7d661893d7ab079f0d0a371f3e2fa4fee4f337851cecf4fdfedb6a5e6ed88ec7eb7d7d17ca8ce0de81176ac0057690f24e
|
data/.github/FUNDING.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
github: boltops-tools
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [1.2.1] - 2023-11-22
|
|
7
|
+
- Actually include changes from 1.2.0
|
|
8
|
+
|
|
9
|
+
## [1.2.0] - 2023-11-22
|
|
10
|
+
- [#35](https://github.com/tongueroo/cody/pull/35) fix eager load by specifying do not eager load for template files
|
|
11
|
+
- add github funding
|
|
12
|
+
|
|
6
13
|
## [1.1.0] - 2022-03-03
|
|
7
14
|
- [#33](https://github.com/tongueroo/cody/pull/33) fix cfn status when auto deleting rollback completed stack
|
|
8
15
|
- [#34](https://github.com/tongueroo/cody/pull/34) iam roles: support multiple calls
|
data/lib/cody/autoloader.rb
CHANGED
|
@@ -13,7 +13,9 @@ module Cody
|
|
|
13
13
|
def setup
|
|
14
14
|
loader = Zeitwerk::Loader.new
|
|
15
15
|
loader.inflector = Inflector.new
|
|
16
|
-
|
|
16
|
+
lib = File.dirname(__dir__) # lib
|
|
17
|
+
loader.push_dir(lib)
|
|
18
|
+
loader.do_not_eager_load("#{lib}/template")
|
|
17
19
|
loader.setup
|
|
18
20
|
end
|
|
19
21
|
end
|
data/lib/cody/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cody
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -330,6 +330,7 @@ files:
|
|
|
330
330
|
- ".cody/project.rb"
|
|
331
331
|
- ".cody/role.rb"
|
|
332
332
|
- ".cody/settings.yml"
|
|
333
|
+
- ".github/FUNDING.yml"
|
|
333
334
|
- ".gitignore"
|
|
334
335
|
- ".gitmodules"
|
|
335
336
|
- ".rspec"
|
|
@@ -417,7 +418,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
417
418
|
- !ruby/object:Gem::Version
|
|
418
419
|
version: '0'
|
|
419
420
|
requirements: []
|
|
420
|
-
rubygems_version: 3.
|
|
421
|
+
rubygems_version: 3.4.20
|
|
421
422
|
signing_key:
|
|
422
423
|
specification_version: 4
|
|
423
424
|
summary: Cody provides a beautiful DSL to create and manage AWS CodeBuild projects
|