localeapp 3.1.2 → 3.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/lib/localeapp/rails.rb +3 -1
- data/lib/localeapp/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc2f24bc4b2d2776e4e8ce9104c69b3f77f99645d08a3e792218131d8f4c5d5e
|
4
|
+
data.tar.gz: 5df119106ff6a007f1f36338ba24647f9ae90dd27273a2ec359b591b5fd7f976
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ca1ed33754879aeb10619ba31d6fbfb7a2a88aad074c17a387793a1bb6015cea7b59a8402913c66daf02f254b9c2b3a92a7a90a4465577de6d9e8c0390f7d91
|
7
|
+
data.tar.gz: f5116ff42333ea06ecc7c486bafe904a153e79ea5bb87bcc36fac1603c960cf794a2f649a9407a4c7e6b89459ceef685ab2d950b54b692b7dc231229d5ba9c9b
|
data/.travis.yml
CHANGED
@@ -18,4 +18,4 @@ gemfile:
|
|
18
18
|
- spec/gemfiles/i18n_1.0.gemfile
|
19
19
|
notifications:
|
20
20
|
slack:
|
21
|
-
secure:
|
21
|
+
secure: dPiP4+6xO6L9/RfXyivr2X2UohSD8CDdnnY57BvNgGVvFtQ2LUP9s1mDxj7gbBGhRZJzTMZlM/PU7bT9O9JCJPcpUs4dWg748KZ0ZGOslnv8yfzNbRh9U5OzyEjch2PFkEhpQPnuVCiof+ahjfxQQSkokpsbNa9DLlDmUapXFPY=
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# master
|
2
2
|
|
3
|
+
# Version 3.1.3
|
4
|
+
|
5
|
+
* Fix deprecation warning in Rails 6 initialization (thanks to [@ryanb](https://github.com/ryanb) for [reporting it](https://github.com/Locale/localeapp/issues/276))
|
6
|
+
|
3
7
|
# Version 3.1.2
|
4
8
|
|
5
9
|
* Fix a bug when `.env` is a directory (thanks to [@xijo](https://github.com/xijo) for [reporting it](https://github.com/Locale/localeapp/pull/262))
|
data/lib/localeapp/rails.rb
CHANGED
@@ -4,7 +4,9 @@ module Localeapp
|
|
4
4
|
module Rails
|
5
5
|
def self.initialize
|
6
6
|
|
7
|
-
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
ActionController::Base.send(:include, Localeapp::Rails::Controller)
|
9
|
+
end
|
8
10
|
|
9
11
|
# match all versions between https://github.com/rails/rails/commit/d57ce232a885b21e1d6d1f9fbf60bc5908ad880d and https://github.com/rails/rails/commit/4dbce79e95e3f56a9b48992dea4531493a5008cc on all branches
|
10
12
|
if rails_version_matches_all?('~> 4.0.10.rc1') |
|
data/lib/localeapp/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: localeapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Dell
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2020-04-07 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: i18n
|
@@ -298,8 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
298
298
|
- !ruby/object:Gem::Version
|
299
299
|
version: '0'
|
300
300
|
requirements: []
|
301
|
-
|
302
|
-
rubygems_version: 2.7.6
|
301
|
+
rubygems_version: 3.0.6
|
303
302
|
signing_key:
|
304
303
|
specification_version: 4
|
305
304
|
summary: Easy i18n translation management with localeapp.com
|