kettle-dev 1.1.57 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3913400a8582c79152894a5c27da0981401d81f08d598061582a95f567ccbb10
4
- data.tar.gz: e9f02c0ad8952cba8e30a1fb94872637f175f91eb24ce12c3edb1f731bec773e
3
+ metadata.gz: d9c8cf2d28dc867f2993e6b5833914a56c2ed3b17bd68273d03360a2c31fa706
4
+ data.tar.gz: 3a2e6abe6033c6d8faa0b77574ccd0861f43a356c0e24dc8c2536c7200bed7e9
5
5
  SHA512:
6
- metadata.gz: 6eb29f6e550dcd1bf578ccec78a656928ab8b2171036057cf18e72546ab4e3db2ba137724317f4dfb1fde14eb14d357fd4ef9611b985b586aa219cdf5a0a461c
7
- data.tar.gz: fe78f07d2b3fe5fcd542842b213d71447c160ae2f41820acf251879340022aabcb368d7a7a20865714666efdd98ee649fa5ddf221dbfc3141ec4e4d27cea0f63
6
+ metadata.gz: 164fe7151c25ae3180a7ff0444dea16c35b8121dfe89fafc656d7a8cd1b88cf63e0b91d7870e08ca64f658be12162c8346beff45e5d993907c6f0f8f250d1c1e
7
+ data.tar.gz: a674cd8c0fb4349aa41e7315a8919919081c97b6493ccf035fb1a9dee897129ae36027fe74d559b06974534923a65d8260660862acdce935af5f230a150d10a5
checksums.yaml.gz.sig CHANGED
Binary file
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Apt Install Packages",
3
+ "id": "apt-install",
4
+ "version": "1.0.0",
5
+ "description": "More packages are needed",
6
+ "install": {
7
+ "script": "install.sh"
8
+ }
9
+ }
@@ -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
- // "features": {},
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
- // "postCreateCommand": "ruby --version",
17
+ "postCreateCommand": "bundle update --bundler",
16
18
 
17
19
  // Configure tool-specific properties.
18
20
  "customizations" : {
data/.idea/.gitignore CHANGED
@@ -14,8 +14,8 @@
14
14
  # Local project config
15
15
  *.iml
16
16
 
17
- # Added: Ignore plugin migration/state artifacts (machine-specific)
18
- /copilot.data.migration.*.xml
17
+ # Added: Ignore plugin state artifacts (machine-specific)
18
+ /copilot*.xml
19
19
  /GitLink.xml
20
20
 
21
21
  # Added: Ignore task & usage statistics (contain local timestamps / paths)
data/CHANGELOG.md CHANGED
@@ -30,6 +30,36 @@ 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
+
48
+ ## [1.1.58] - 2025-11-13
49
+
50
+ - TAG: [v1.1.58][1.1.58t]
51
+ - COVERAGE: 94.41% -- 4067/4308 lines in 26 files
52
+ - BRANCH COVERAGE: 78.77% -- 1673/2124 branches in 26 files
53
+ - 79.89% documented
54
+
55
+ ### Added
56
+
57
+ - Ignore more .idea plugin artifacts
58
+
59
+ ### Fixed
60
+
61
+ - bin/rake yard no longer overrides the .yardignore for checksums
62
+
33
63
  ## [1.1.57] - 2025-11-13
34
64
 
35
65
  - TAG: [v1.1.57][1.1.57t]
@@ -1410,7 +1440,11 @@ Please file a bug if you notice a violation of semantic versioning.
1410
1440
  - Selecting will run the selected workflow via `act`
1411
1441
  - This may move to its own gem in the future.
1412
1442
 
1413
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.57...HEAD
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
1446
+ [1.1.58]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.57...v1.1.58
1447
+ [1.1.58t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.58
1414
1448
  [1.1.57]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.56...v1.1.57
1415
1449
  [1.1.57t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.57
1416
1450
  [1.1.56]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.55...v1.1.56
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.57 - 2025-11-13
3
+ # kettle-dev Rakefile v1.1.59 - 2025-11-13
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -13,8 +13,8 @@ begin
13
13
  "*.cff",
14
14
  "*.md",
15
15
  "*.txt",
16
- "checksums/**/*.sha256",
17
- "checksums/**/*.sha512",
16
+ # NOTE: checksums/**/* removed - it's in .yardignore and was causing
17
+ # file.<gem>.html pages to be generated for each checksum file
18
18
  "REEK",
19
19
  "sig/**/*.rbs",
20
20
  ]
@@ -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,
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.1.57"
9
+ VERSION = "1.1.59"
10
10
 
11
11
  module_function
12
12
 
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.57
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.57
405
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.57/CHANGELOG.md
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.57
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