raix 2.0.1 → 2.0.2
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 +6 -0
- data/lib/raix/version.rb +1 -1
- data/raix.gemspec +7 -0
- 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: 254c9a26d73389e655db17cf571ab2a47b54e6b2bc664741e0a260534d6d2537
|
|
4
|
+
data.tar.gz: f7846475556924487dc0206ba340f2c568a23e85ef4a0b2bd0504231c175f02a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8301e1d977df4f84c587da285890382856d7f1490845cec4b4ab19e955462680e55b1dc9263166250b5f2697eae8e4005939e2d12e1ab70ca2c8b6d81ea7e9d0
|
|
7
|
+
data.tar.gz: b30eb6832ab3a658a8bfcb6b7e6bf6d4349462d81dd35f79bab514be08104eee0712219b98169e692943413ad4bc47ad8e7a8883e74d1df47da48a59f9c41c4e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.0.2] - 2026-03-27
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- Ensure gem files are world-readable (644) for Docker deployments where gems are installed as root but the app runs as a non-root user
|
|
5
|
+
- Added gemspec-level safety net that normalizes file permissions at build time
|
|
6
|
+
|
|
1
7
|
## [2.0.1] - 2026-03-20
|
|
2
8
|
|
|
3
9
|
### Changed
|
data/lib/raix/version.rb
CHANGED
data/raix.gemspec
CHANGED
|
@@ -24,6 +24,13 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
|
|
25
25
|
end
|
|
26
26
|
end
|
|
27
|
+
|
|
28
|
+
# Ensure all gem files are world-readable so they work in Docker containers
|
|
29
|
+
# where gems are installed as root but the app runs as a non-root user.
|
|
30
|
+
spec.files.each do |f|
|
|
31
|
+
path = File.join(__dir__, f)
|
|
32
|
+
File.chmod(0o644, path) if File.file?(path) && !File.executable?(path)
|
|
33
|
+
end
|
|
27
34
|
spec.bindir = "exe"
|
|
28
35
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
29
36
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raix
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Obie Fernandez
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-03-
|
|
10
|
+
date: 2026-03-27 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: activesupport
|