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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 101c916df93e569b21330ea028dafac8d095021a7c2c27bb91a911fffc55bc29
4
- data.tar.gz: 1b4498f818350fab8823a66535334f24f2b89ede02d79cadcc23e052e3cd0dcb
3
+ metadata.gz: 254c9a26d73389e655db17cf571ab2a47b54e6b2bc664741e0a260534d6d2537
4
+ data.tar.gz: f7846475556924487dc0206ba340f2c568a23e85ef4a0b2bd0504231c175f02a
5
5
  SHA512:
6
- metadata.gz: e5953aa12e7918e5b0266e23017c5c11874d919c4b83a10403c10a75d6998c2d8f2d3f8a11ab3d6abcf996f0ee30d827a564bd9ed5fd5862f673c689c6e8a06a
7
- data.tar.gz: 41aabaa233555d191a02628055465e5759aea86de69c321ff43145b6ddcc1714d5c2828ebf659d7f4773e6de8d04ec647435c5c7e1a001b196bea7c6dee8c0f7
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Raix
4
- VERSION = "2.0.1"
4
+ VERSION = "2.0.2"
5
5
  end
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.1
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-20 00:00:00.000000000 Z
10
+ date: 2026-03-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: activesupport