t_t 1.3.1 → 1.3.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 +4 -4
- data/.travis.yml +0 -3
- data/lib/t_t/rails.rb +2 -1
- data/t_t.gemspec +1 -1
- metadata +3 -4
- data/Dockerfile +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b2923ec3cc274e702884644d43d1763aead5bdc
|
|
4
|
+
data.tar.gz: 83f9bd946598b6022eb31d9b52fc5a00707ce688
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca40beffed3153dc6b66f34dac5616ce0c20a5d2e812bdcabae373bc9c18297494d0e50fcd61ff5c8f280c56a6c32a9cf4d1357dcbdde801bc95c6d6edb5059f
|
|
7
|
+
data.tar.gz: 37a10c927ba1743cffbaee179bf64c3c6e09d546b69cf2db5d122899afd269914ed90e288379eea5b105b102b3bfa4ea21d1fd16bc29080bc21c4650b54edb39
|
data/.travis.yml
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
cache: bundler
|
|
3
3
|
rvm:
|
|
4
|
-
- 2.1
|
|
5
4
|
- 2.2
|
|
6
5
|
- 2.3
|
|
7
6
|
- ruby-head
|
|
8
7
|
gemfile:
|
|
9
8
|
- gemfiles/Gemfile.actionpack-3.2.x
|
|
10
|
-
- gemfiles/Gemfile.actionpack-4.0.x
|
|
11
|
-
- gemfiles/Gemfile.actionpack-4.1.x
|
|
12
9
|
- gemfiles/Gemfile.actionpack-4.2.x
|
|
13
10
|
- gemfiles/Gemfile.actionpack-5.0.x
|
|
14
11
|
- gemfiles/Gemfile.actionpack-5.1.x
|
data/lib/t_t/rails.rb
CHANGED
|
@@ -53,7 +53,8 @@ module TT
|
|
|
53
53
|
file_sync = ::TT::I18nSync.new(locale.to_s, Dir.glob(glob), mark)
|
|
54
54
|
TT::Rails.sync(file_sync)
|
|
55
55
|
::Rails.application.reloaders << file_sync.checker
|
|
56
|
-
|
|
56
|
+
reload_klass = defined?(ActiveSupport::Reloader) ? ActiveSupport::Reloader : ActionDispatch::Reloader
|
|
57
|
+
reload_klass.to_prepare { file_sync.checker.execute_if_updated }
|
|
57
58
|
end
|
|
58
59
|
end
|
|
59
60
|
end
|
data/t_t.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: t_t
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Pchelintsev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|
|
@@ -117,7 +117,6 @@ extra_rdoc_files: []
|
|
|
117
117
|
files:
|
|
118
118
|
- ".gitignore"
|
|
119
119
|
- ".travis.yml"
|
|
120
|
-
- Dockerfile
|
|
121
120
|
- Gemfile
|
|
122
121
|
- Rakefile
|
|
123
122
|
- cheatsheet.md
|
|
@@ -169,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
169
168
|
version: '0'
|
|
170
169
|
requirements: []
|
|
171
170
|
rubyforge_project:
|
|
172
|
-
rubygems_version: 2.6.
|
|
171
|
+
rubygems_version: 2.6.13
|
|
173
172
|
signing_key:
|
|
174
173
|
specification_version: 4
|
|
175
174
|
summary: An opinioned I18n helper
|