kettle-dev 1.1.58 → 1.1.59
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
- checksums.yaml.gz.sig +0 -0
- data/.devcontainer/apt-install/devcontainer-feature.json +9 -0
- data/.devcontainer/apt-install/install.sh +11 -0
- data/.devcontainer/devcontainer.json +4 -2
- data/CHANGELOG.md +18 -1
- data/Rakefile.example +1 -1
- data/lib/kettle/dev/tasks/template_task.rb +1 -1
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +6 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9c8cf2d28dc867f2993e6b5833914a56c2ed3b17bd68273d03360a2c31fa706
|
|
4
|
+
data.tar.gz: 3a2e6abe6033c6d8faa0b77574ccd0861f43a356c0e24dc8c2536c7200bed7e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 164fe7151c25ae3180a7ff0444dea16c35b8121dfe89fafc656d7a8cd1b88cf63e0b91d7870e08ca64f658be12162c8346beff45e5d993907c6f0f8f250d1c1e
|
|
7
|
+
data.tar.gz: a674cd8c0fb4349aa41e7315a8919919081c97b6493ccf035fb1a9dee897129ae36027fe74d559b06974534923a65d8260660862acdce935af5f230a150d10a5
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
apt-get update -y
|
|
3
|
+
|
|
4
|
+
# Basic, commonly needed, dependencies of Ruby & JRuby projects
|
|
5
|
+
apt-get install -y direnv default-jdk git zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev
|
|
6
|
+
|
|
7
|
+
# Support for PostgreSQL
|
|
8
|
+
# apt-get install -y postgresql libpq-dev
|
|
9
|
+
|
|
10
|
+
# Adds the direnv setup script to ~/.bashrc file (at the end)
|
|
11
|
+
echo 'eval "$(direnv hook bash)"' >> ~/.bashrc
|
|
@@ -6,13 +6,15 @@
|
|
|
6
6
|
"image": "mcr.microsoft.com/devcontainers/ruby:1-3-bookworm",
|
|
7
7
|
|
|
8
8
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
9
|
-
|
|
9
|
+
"features": {
|
|
10
|
+
"./apt-install": {}
|
|
11
|
+
},
|
|
10
12
|
|
|
11
13
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
12
14
|
// "forwardPorts": [],
|
|
13
15
|
|
|
14
16
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
15
|
-
|
|
17
|
+
"postCreateCommand": "bundle update --bundler",
|
|
16
18
|
|
|
17
19
|
// Configure tool-specific properties.
|
|
18
20
|
"customizations" : {
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,21 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.59] - 2025-11-13
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.59][1.1.59t]
|
|
36
|
+
- COVERAGE: 94.38% -- 4066/4308 lines in 26 files
|
|
37
|
+
- BRANCH COVERAGE: 78.77% -- 1673/2124 branches in 26 files
|
|
38
|
+
- 79.89% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Improved default devcontainer with common dependencies of most Ruby projects
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- token replacement of {TARGET|GEM|NAME}
|
|
47
|
+
|
|
33
48
|
## [1.1.58] - 2025-11-13
|
|
34
49
|
|
|
35
50
|
- TAG: [v1.1.58][1.1.58t]
|
|
@@ -1425,7 +1440,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1425
1440
|
- Selecting will run the selected workflow via `act`
|
|
1426
1441
|
- This may move to its own gem in the future.
|
|
1427
1442
|
|
|
1428
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1443
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.59...HEAD
|
|
1444
|
+
[1.1.59]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.58...v1.1.59
|
|
1445
|
+
[1.1.59t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.59
|
|
1429
1446
|
[1.1.58]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.57...v1.1.58
|
|
1430
1447
|
[1.1.58t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.58
|
|
1431
1448
|
[1.1.57]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.56...v1.1.57
|
data/Rakefile.example
CHANGED
|
@@ -632,7 +632,7 @@ module Kettle
|
|
|
632
632
|
|
|
633
633
|
c
|
|
634
634
|
end
|
|
635
|
-
elsif ["CHANGELOG.md", "CITATION.cff", "CONTRIBUTING.md", ".opencollective.yml", "FUNDING.md", ".junie/guidelines.md"].include?(rel)
|
|
635
|
+
elsif ["CHANGELOG.md", "CITATION.cff", "CONTRIBUTING.md", ".opencollective.yml", "FUNDING.md", ".junie/guidelines.md", ".envrc"].include?(rel)
|
|
636
636
|
helpers.copy_file_with_prompt(src, dest, allow_create: true, allow_replace: true) do |content|
|
|
637
637
|
c = helpers.apply_common_replacements(
|
|
638
638
|
content,
|
data/lib/kettle/dev/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kettle-dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.59
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -218,6 +218,8 @@ files:
|
|
|
218
218
|
- "./Rakefile.example"
|
|
219
219
|
- "./kettle-dev.gemspec.example"
|
|
220
220
|
- ".aiignore.example"
|
|
221
|
+
- ".devcontainer/apt-install/devcontainer-feature.json"
|
|
222
|
+
- ".devcontainer/apt-install/install.sh"
|
|
221
223
|
- ".devcontainer/devcontainer.json"
|
|
222
224
|
- ".env.local.example"
|
|
223
225
|
- ".envrc"
|
|
@@ -401,10 +403,10 @@ licenses:
|
|
|
401
403
|
- MIT
|
|
402
404
|
metadata:
|
|
403
405
|
homepage_uri: https://kettle-dev.galtzo.com/
|
|
404
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
|
405
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.
|
|
406
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.59
|
|
407
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.59/CHANGELOG.md
|
|
406
408
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
407
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
|
409
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.59
|
|
408
410
|
funding_uri: https://github.com/sponsors/pboling
|
|
409
411
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
410
412
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|