hubbado-policy 1.1.0 → 1.1.1
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 -0
- data/hubbado-policy.gemspec +1 -1
- data/lib/hubbado/policy/railtie.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92b2d2ebfeca29045209e9ac790024cfe3be4d6646be7ace9f3678684808cad6
|
4
|
+
data.tar.gz: 88b9eb114f043c6b8f948fb780446566bf4a73771aabc96a9becfb670374a701
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b28dc471aa7bcbee6db421e41cb4664423a6c58d31ab17e6deb2ae55d0a53fbf1b8c00e5a2ef96c34bd46d325fac68b5fb77fe0c88e59f0ca28eb2359affac28
|
7
|
+
data.tar.gz: 29670f1bb98582426e288fd290091d20ac8bf7ee9606a61f6de6b20a869794342c7646bc630c41bea8c0af1217033612c5455ea32b04aee05c8aa082546455e7
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [1.1.1] - 2025-05-26
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
- Railtie is corrected with an initializer to load I18n locales correctly.
|
12
|
+
|
8
13
|
## [1.1.0] - 2025-05-20
|
9
14
|
|
10
15
|
### Added
|
data/hubbado-policy.gemspec
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
module Hubbado
|
2
2
|
module Policy
|
3
3
|
class Railtie < ::Rails::Railtie
|
4
|
-
|
4
|
+
initializer "hubbado-policy.initialized" do |app|
|
5
|
+
::I18n.load_path << ::File.expand_path("../../../../config/locales/en.yml", __FILE__)
|
6
|
+
end
|
5
7
|
end
|
6
8
|
end
|
7
9
|
end
|