yamlt 0.0.11 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tasks/yamlt.rake +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddccf3be42d45bbf953da15bc119b4c7afdd7419
|
4
|
+
data.tar.gz: 5232c901516a0a2f2d1948f213d1cf7d1fa5f050
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3eb84c80dbff381784648ba25b2ec6c8e7082cff93202a52a75b9ec79ddf997865ddba690399ef2ccdd6f66be7a8fc8bec403db3c5d848cddbf0656f68dfd00
|
7
|
+
data.tar.gz: e9cadf2ba0077ce65a95bb7d681a380be2c93efeb832858717ebcb1f67c32b1f16eb49c63c61600ab8cba6583d98812668531756625368a338a3496f67fda730
|
data/lib/tasks/yamlt.rake
CHANGED
@@ -9,7 +9,7 @@ namespace :i18n do
|
|
9
9
|
source = ENV["FROM"] || "en"
|
10
10
|
|
11
11
|
# Calculate paths
|
12
|
-
base_path = File.expand_path(File.join(Dir.pwd, "config"))
|
12
|
+
base_path = File.expand_path(File.join(Dir.pwd, "config/locales"))
|
13
13
|
target_path = File.join(base_path, target + ".yml")
|
14
14
|
source_path = File.join(base_path, source + ".yml")
|
15
15
|
|
@@ -26,7 +26,7 @@ namespace :i18n do
|
|
26
26
|
source = ENV["FROM"] || "en"
|
27
27
|
|
28
28
|
# Calculate paths
|
29
|
-
base_path = File.expand_path(File.join(Dir.pwd, "config"))
|
29
|
+
base_path = File.expand_path(File.join(Dir.pwd, "config/locales"))
|
30
30
|
target_path = File.join(base_path, target + ".yml")
|
31
31
|
source_path = File.join(base_path, source + ".yml")
|
32
32
|
|