i18n_generators 2.1.1 → 2.2.0
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 +5 -5
- data/.travis.yml +5 -0
- data/README.md +2 -2
- data/i18n_generators.gemspec +2 -1
- data/lib/i18n_generators/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bec76578061eb5cf855f789e0f400c7164c0fcfedcaf9acaa2f9a9bdbb0f3ffa
|
|
4
|
+
data.tar.gz: 957b013ff0aeb7d681a71932286b748a6b2faa3a1d539a045c3d64f7a714ab7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecb5c4b87fab4807556f18d13e1e164e31673bf2be8b40caa49ed798bd5c96f14a154ba9ff886b09e8cafda4077a290cd31574afe8022229979dba4588867173
|
|
7
|
+
data.tar.gz: 69f968747c9c95a606506850e184a5115aee48cf07aff61f5dda0eeeafd433bd86b76282735dff902d938a2d7a7bff6aa70b60ef3610fde902d8976e8d040cf2
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# i18n_generators
|
|
2
2
|
|
|
3
3
|
A Rails plugin that generates the I18n locale files with automatic
|
|
4
|
-
translation. Supporting Rails 5.0, 4.2.x, 4.1.x, 4.0.x, 3.2.x, 3.1.x, 3.0.x,
|
|
4
|
+
translation. Supporting Rails 5.1, 5.0, 4.2.x, 4.1.x, 4.0.x, 3.2.x, 3.1.x, 3.0.x,
|
|
5
5
|
2.3.x, and 2.2.x.
|
|
6
6
|
|
|
7
7
|
Here's an example of generating a translation file (the example model is taken
|
|
@@ -58,7 +58,7 @@ Executes 1 and 2 at once.
|
|
|
58
58
|
## Supported versions
|
|
59
59
|
|
|
60
60
|
* Ruby 2.3, 2.2.x, 2.1.x, 2.0.0, 1.9.x, 1.8.7
|
|
61
|
-
* Ruby on Rails 5.0, 4.2, 4.1, 4.0, 3.2, 3.1, 3.0
|
|
61
|
+
* Ruby on Rails 5.1, 5.0, 4.2, 4.1, 4.0, 3.2, 3.1, 3.0
|
|
62
62
|
* Ruby on Rails 2.3, 2.2 (supported by i18n_generators < 1.2)
|
|
63
63
|
|
|
64
64
|
|
data/i18n_generators.gemspec
CHANGED
|
@@ -21,7 +21,8 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
|
|
22
22
|
s.licenses = ['MIT']
|
|
23
23
|
|
|
24
|
-
s.add_runtime_dependency '
|
|
24
|
+
s.add_runtime_dependency 'railties', '>= 3.0.0'
|
|
25
|
+
s.add_runtime_dependency 'activerecord', '>= 3.0.0'
|
|
25
26
|
s.add_development_dependency 'test-unit'
|
|
26
27
|
s.add_development_dependency 'test-unit-rr'
|
|
27
28
|
s.add_development_dependency 'rake'
|
metadata
CHANGED
|
@@ -1,17 +1,31 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i18n_generators
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Akira Matsuda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: railties
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.0.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: activerecord
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
16
30
|
requirements:
|
|
17
31
|
- - ">="
|
|
@@ -119,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
133
|
version: '0'
|
|
120
134
|
requirements: []
|
|
121
135
|
rubyforge_project: i18n_generators
|
|
122
|
-
rubygems_version: 2.
|
|
136
|
+
rubygems_version: 2.7.7
|
|
123
137
|
signing_key:
|
|
124
138
|
specification_version: 4
|
|
125
139
|
summary: A Rails generator that generates Rails I18n locale files with automatic translation
|