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 +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/boringbuilder/ruby_build.rb +6 -0
- data/lib/boringbuilder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 823ab9ebc22d049c27671d07ea1be44315dbdf3f63cdd29c46cd209e6e5fc279
|
|
4
|
+
data.tar.gz: 58c38219ef59ff3bf7515d10140be7500784bf276f5b0ea71edd965d7ae10b86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
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
|