copy_tuner_client 0.1.1.beta3 → 0.1.1.beta4
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 +8 -8
- data/Gemfile.lock +1 -1
- data/lib/copy_tuner_client/engine.rb +1 -1
- data/lib/copy_tuner_client/i18n_backend.rb +2 -1
- data/lib/copy_tuner_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Y2ZiOTYzNTc1YWM3MGI5ZDI0ZWMyNTQ0MmE2YjMwZjcwOWFkNzkwNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzE3NzNiOGQ5YmRhYjYzYWMyZmI3ODc4MmExOWUwOGRjMWMwMTA2ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTQ3NTNmMGU5NmI1NDQzZWYzMDRlMTEwZTRlY2Q4NTAwMTNhNjU4ZGYzMTU1
|
10
|
+
MmFjYjg3ZGIwMDkxZmM1Yzk4OTAzZDgzNzdkOWM4NzdmMmFiMjIwYzhmYzc5
|
11
|
+
YTM3ZWVmM2Y3MWNkYzIyNjI0OGYwNTVjNWU3YWRiZjNlYmI2NDg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWNlOWYzNWU3ODRiYjlhYTlhZGYwNzRlMjEyYmYxMDA5MDgxYjMyNzcwN2Yy
|
14
|
+
YmRiNzU3NjA4OGIwY2M4ZjJiMmRhYTMxNWZiNGFlZWRiNTg4OGVlYTNhZDcz
|
15
|
+
NDVkMWU5OGVlZGE5NjdjNThhNjk4MWJhYzlkZjM1NzQyMTAxNTM=
|
data/Gemfile.lock
CHANGED
@@ -38,8 +38,9 @@ module CopyTunerClient
|
|
38
38
|
# Returns locales availabile for this CopyTuner project.
|
39
39
|
# @return [Array<String>] available locales
|
40
40
|
def available_locales
|
41
|
+
return @available_locales if defined?(@available_locales)
|
41
42
|
cached_locales = cache.keys.map { |key| key.split('.').first }
|
42
|
-
(cached_locales + super).uniq.map { |locale| locale.to_sym }
|
43
|
+
@available_locales = (cached_locales + super).uniq.map { |locale| locale.to_sym }
|
43
44
|
end
|
44
45
|
|
45
46
|
# Stores the given translations.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: copy_tuner_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1.
|
4
|
+
version: 0.1.1.beta4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SonicGarden
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|