remote_translation_loader 1.0.0 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/remote_translation_loader/version.rb +1 -1
- metadata +17 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39a20a05a27f27a7ee285c238b407b1d0053dcaf3e13d00a4c921e55e7046df9
|
4
|
+
data.tar.gz: d804308dbeebe07dc34f6910cae12d795399912c502d93d2c46f35925dac9162
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 490ec23b5607c361c6872e1cdd7d1265980744c51714e35d36d461c1946d4715a8c89ba74e375efd78a00c20763d0e573ff07d1b38bd43aa6a76c011ecadceeb
|
7
|
+
data.tar.gz: 8c2e25fe0bf39717e51e76001c8387a307a8a001cc875afbf3ae9370e2670aabb1e43a1c53703d86fcc8a243e5af032b4f1302f6eeec5907d43e054c11177a62
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Remote Translation Loader
|
1
|
+
# Remote Translation Loader [![Gem Version](https://badge.fury.io/rb/remote_translation_loader.svg)](https://badge.fury.io/rb/remote_translation_loader)
|
2
2
|
|
3
3
|
`remote_translation_loader` is a Ruby gem for fetching YAML translation files from remote sources and dynamically loading them into your Ruby on Rails application’s I18n translations. This gem is useful for applications that need to integrate external translations without writing them to local files.
|
4
4
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: remote_translation_loader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gokul (gklsan)
|
@@ -28,44 +28,44 @@ dependencies:
|
|
28
28
|
name: yaml
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 0.3.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 0.3.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 3.13.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 3.13.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: i18n
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 1.14.5
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 1.14.5
|
69
69
|
description: The remote_translation_loader gem allows you to fetch YAML translation
|
70
70
|
files from remote sources and dynamically load them into your Rails application’s
|
71
71
|
I18n translations without writing them to local files.
|
@@ -86,7 +86,10 @@ files:
|
|
86
86
|
homepage: https://github.com/gklsan/remote_translation_loader
|
87
87
|
licenses:
|
88
88
|
- MIT
|
89
|
-
metadata:
|
89
|
+
metadata:
|
90
|
+
homepage_uri: https://github.com/gklsan/remote_translation_loader
|
91
|
+
source_code_uri: https://github.com/gklsan/remote_translation_loader
|
92
|
+
changelog_uri: https://github.com/gklsan/remote_translation_loader
|
90
93
|
post_install_message:
|
91
94
|
rdoc_options: []
|
92
95
|
require_paths:
|