rails_translation_manager 1.5.0 → 1.5.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 +4 -0
- data/lib/rails_translation_manager/locale_checker/missing_declared_locales.rb +1 -1
- data/lib/rails_translation_manager/version.rb +1 -1
- data/spec/rails_translation_manager/locale_checker/missing_declared_locales_spec.rb +1 -1
- metadata +2 -3
- data/CONTRIBUTING.md +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a65778c39b278103e8338f32392a62d043fe00cbe5d17e6f6022430535fe49e
|
4
|
+
data.tar.gz: e6bb43c0f68cf6d11d2da6299119e6c25f1a7164df0e6bf6314f8c3f32b08e6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c0ef6580950126127bede40d39a56b4702bafbd177c43a22e74d8e1761ab3564a27614e66c26fd8d8d1e6cb3c0ab8cbc0359b295f014fe28b2a07dd27878259
|
7
|
+
data.tar.gz: f289ee8695990b0e1561fc8cab17abf99ecb7aa0f9b63136179d08e0a1ae4b19f5d4fd01100b1d03b8afcf9336016c2b4034e6bd29b5eadf36b66a37c8dba1e5
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# 1.5.1
|
2
|
+
|
3
|
+
Fixes uppercase bug when comparing actual vs available locales. https://github.com/alphagov/rails_translation_manager/pull/43
|
4
|
+
|
1
5
|
# 1.5.0
|
2
6
|
|
3
7
|
Allow configuring the locale files directory with `RAILS_TRANSLATION_MANAGER_LOCALE_ROOT`. https://github.com/alphagov/rails_translation_manager/pull/38
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_translation_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Edd Sowden
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -160,7 +160,6 @@ files:
|
|
160
160
|
- ".gitignore"
|
161
161
|
- ".ruby-version"
|
162
162
|
- CHANGELOG.md
|
163
|
-
- CONTRIBUTING.md
|
164
163
|
- Gemfile
|
165
164
|
- Jenkinsfile
|
166
165
|
- LICENSE.txt
|
data/CONTRIBUTING.md
DELETED