cmdx-i18n 2.0.0 → 2.0.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 +9 -1
- data/lib/cmdx/i18n/version.rb +1 -1
- data/lib/cmdx/i18n.rb +1 -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: 4d326ea8c998506dbd0e238d4837e56fe42a436aeb66078d4fcebbbaa5885635
|
|
4
|
+
data.tar.gz: 90a96674242d804d8f02f4630868038504654ac13a929558f7888fe9a5b5ea92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b42ac24f4555e6737c8a27acc632f28c9ffa60611ebb4b77bf2c104a789a173f85a72202a7c1bd760c9ee22bddc35a08fba2301793f20e1b55548c5f5fc968e
|
|
7
|
+
data.tar.gz: 1c27d28b6f9aa71921b891112c15b9be6490a8c557546f8bceeb8bdd5587460f3d4285f4034f00689adc8d72b869fd07c14cecd7d377b344663cb435eff4313c
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [2.
|
|
7
|
+
## [2.x.x] - Unreleased
|
|
8
|
+
|
|
9
|
+
## [2.0.1] - 2026-06-02
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- Fix generator autoloading path
|
|
14
|
+
|
|
15
|
+
## [2.0.0] - 2026-05-05
|
|
8
16
|
|
|
9
17
|
### Added
|
|
10
18
|
- Support for CMDx v2
|
data/lib/cmdx/i18n/version.rb
CHANGED
data/lib/cmdx/i18n.rb
CHANGED
|
@@ -9,7 +9,7 @@ require_relative "i18n/version"
|
|
|
9
9
|
CMDx::I18nProxy.register(File.expand_path("../locales", __dir__))
|
|
10
10
|
|
|
11
11
|
# Conditionally load Rails components if Rails is available
|
|
12
|
-
require_relative "generators/cmdx/i18n/locale_generator" if defined?(Rails::Generators)
|
|
12
|
+
require_relative "../generators/cmdx/i18n/locale_generator" if defined?(Rails::Generators)
|
|
13
13
|
|
|
14
14
|
# Load the Railtie last after everything else is required so we don't
|
|
15
15
|
# need to load any CMDx::I18n components when we use this Railtie.
|