gettext_i18n_rails_js 1.1.0 → 1.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +7 -6
- data/lib/gettext_i18n_rails_js/parser/javascript.rb +1 -0
- data/lib/gettext_i18n_rails_js/version.rb +1 -1
- data/lib/tasks/gettext_i18n_rails_js_tasks.rake +1 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d1b5907d21b5b2433ed3277842c3b20091a1912
|
|
4
|
+
data.tar.gz: 4f8ec5b71d44cbb522cb469b9e26a11c8bf23315
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0dd2b745b857659a2249c6f70047b4249b35b1c13469cfb0f8dc64a35a8affd155a6d67c8e43bf298ff26e025d5bb222022e0ae2ef9a2053ab54650ea31c1cad
|
|
7
|
+
data.tar.gz: 575ff0e579024f2c34acacd34fb429d7f3c07d8576f71b04aea08751ef9708ac318aa06536be47e157fdb061a8e3de264aa82f5afedc92051c7182f8e8747d90
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.2.0) - 2016-06-02
|
|
4
|
+
|
|
5
|
+
* Support for JSX files (@artemv)
|
|
6
|
+
* Fixed test suite, reduced test matrix (@tboerger)
|
|
7
|
+
|
|
3
8
|
## [1.1.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.1.0) - 2016-06-02
|
|
4
9
|
|
|
5
10
|
* Replace hyphens with underscores in locale var from DOM (@filib)
|
data/README.md
CHANGED
|
@@ -16,23 +16,24 @@ client side javascript.
|
|
|
16
16
|
|
|
17
17
|
## Versions
|
|
18
18
|
|
|
19
|
-
This gem is tested on the following versions
|
|
19
|
+
This gem is tested on the following versions, it's also possible that it works
|
|
20
|
+
with older versions, but because of version bumps at `gettext_i18n_rails` and
|
|
21
|
+
`fast_gettext` we have dropped the older versions from the testing matrix:
|
|
20
22
|
|
|
21
23
|
* Ruby
|
|
22
|
-
* 1.9.3
|
|
23
|
-
* 2.0.0
|
|
24
24
|
* 2.1.0
|
|
25
|
+
* 2.2.0
|
|
25
26
|
* Rails
|
|
26
27
|
* 3.2.21
|
|
27
28
|
* 4.0.13
|
|
28
|
-
* 4.1.
|
|
29
|
-
* 4.2.
|
|
29
|
+
* 4.1.16
|
|
30
|
+
* 4.2.7
|
|
30
31
|
|
|
31
32
|
|
|
32
33
|
## Installation
|
|
33
34
|
|
|
34
35
|
```ruby
|
|
35
|
-
gem "gettext_i18n_rails_js", "~> 1.
|
|
36
|
+
gem "gettext_i18n_rails_js", "~> 1.2.0"
|
|
36
37
|
```
|
|
37
38
|
|
|
38
39
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gettext_i18n_rails_js
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Boerger
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-10-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -178,18 +178,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
178
|
version: '0'
|
|
179
179
|
requirements: []
|
|
180
180
|
rubyforge_project:
|
|
181
|
-
rubygems_version: 2.5
|
|
181
|
+
rubygems_version: 2.2.5
|
|
182
182
|
signing_key:
|
|
183
183
|
specification_version: 4
|
|
184
184
|
summary: Extends gettext_i18n_rails making your .po files available to client side
|
|
185
185
|
javascript as JSON
|
|
186
186
|
test_files:
|
|
187
|
-
- spec/fixtures/example.coffee
|
|
188
|
-
- spec/fixtures/example.handlebars
|
|
189
187
|
- spec/fixtures/example.js
|
|
190
|
-
- spec/
|
|
188
|
+
- spec/fixtures/example.handlebars
|
|
189
|
+
- spec/fixtures/example.coffee
|
|
190
|
+
- spec/support/with_file.rb
|
|
191
191
|
- spec/gettext_i18n_rails_js/parser/javascript_spec.rb
|
|
192
|
+
- spec/gettext_i18n_rails_js/parser/handlebars_spec.rb
|
|
192
193
|
- spec/gettext_i18n_rails_js_spec.rb
|
|
193
194
|
- spec/spec_helper.rb
|
|
194
|
-
- spec/support/with_file.rb
|
|
195
195
|
has_rdoc:
|