boringbuilder 0.1.0.alpha.2 → 0.1.0.alpha.3

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: 23c8af7191024f581586b9b8525ab4cdede020a5fe30cfb41d700eee13240513
4
- data.tar.gz: e08454d82aa57ee024a006fbfad9ec4eab6f58847cfed9cdea1fa9244d8b70fd
3
+ metadata.gz: 823ab9ebc22d049c27671d07ea1be44315dbdf3f63cdd29c46cd209e6e5fc279
4
+ data.tar.gz: 58c38219ef59ff3bf7515d10140be7500784bf276f5b0ea71edd965d7ae10b86
5
5
  SHA512:
6
- metadata.gz: 9d64e03a9dec0d0df8a0e9afbb360d5dc153e6c1734f57dd32e0ddde4fbae1136f0660d5abb85ed5d31305b109cc89bcead693a943079cddbeeb43ed0916ef31
7
- data.tar.gz: 65a7e6bf585a95ce460d6a77bf7d6de869d53673cd28dea953c03669090d12a60ee372958b62c2e3c7067501b45677cbf00842a9036059a01509553dea153cf4
6
+ metadata.gz: 7812ac305fa0015e0007049f6272a81fcf237db37304522323bad5a7a9947ac2f6e77d9e9788cf57490c31d680c17bda5aa3cc025cc19a4b310f9711b080d907
7
+ data.tar.gz: 67a48f5ce9298763f588c2e979a3bcca6b1a38a9c8f9350597f82876c69168c644b480affc62728d27ad1c8d114071267fbc7592a5703446441dc385b3459357
data/CHANGELOG.md CHANGED
@@ -1,10 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0.alpha.3 - 2026-08-27
4
+
5
+ - Remove Bundler cache metadata before compiling assets so cold and restored Rails builds stay identical.
6
+
3
7
  ## 0.1.0.alpha.2 - 2026-08-27
4
8
 
5
9
  - Stream clean, Docker-style build steps and command output through Dagger Ruby.
6
10
  - Run Bundler with the available CPUs unless `BUNDLE_JOBS` is explicitly configured.
7
- - Keep Rails artifacts identical across cold and restored dependency caches.
11
+ - Keep dependency cache metadata out of Rails artifacts.
8
12
 
9
13
  ## 0.1.0.alpha.1 - 2026-08-27
10
14
 
@@ -63,6 +63,12 @@ module BoringBuilder
63
63
  name: "[build] RUN bundle check",
64
64
  workdir: application_path
65
65
  )
66
+ builder = pipeline.exec(
67
+ builder,
68
+ %w[rm -rf .bundle/cache],
69
+ name: "[build] RUN rm -rf .bundle/cache",
70
+ workdir: application_path
71
+ )
66
72
  builder = precompile(builder)
67
73
  builder = pipeline.step("[build] Write Bundler configuration", builder) { write_bundle_config(_1) }
68
74
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BoringBuilder
4
- VERSION = "0.1.0.alpha.2"
4
+ VERSION = "0.1.0.alpha.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boringbuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha.2
4
+ version: 0.1.0.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - BoringCache
@@ -78,7 +78,7 @@ licenses:
78
78
  metadata:
79
79
  allowed_push_host: https://rubygems.org
80
80
  homepage_uri: https://github.com/boringcache/builder
81
- source_code_uri: https://github.com/boringcache/builder/tree/v0.1.0.alpha.2
81
+ source_code_uri: https://github.com/boringcache/builder/tree/v0.1.0.alpha.3
82
82
  documentation_uri: https://github.com/boringcache/builder#readme
83
83
  changelog_uri: https://github.com/boringcache/builder/blob/main/CHANGELOG.md
84
84
  bug_tracker_uri: https://github.com/boringcache/builder/issues