translations_sync 0.4.10 → 0.4.11
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/lib/translations_sync.rb +0 -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: e9a9a2cd5c0ae7b3b337952c5d422bbfb65a3fce
|
|
4
|
+
data.tar.gz: 796c4d67badda5d44d3a1fb1cfbc2cb580ee59fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfd517b9cf6af58487e9877d4df788ac15eba7126f02109694e1567af00519b9fb83506bb61af82571b94faf3735150212230ea3da0e39edbc9dad970ffdc6dd
|
|
7
|
+
data.tar.gz: 59954867d39edc66420b7f2e92109591192d10f5256033a747f1dbaabb86a3f68fd8e20ed975c9b45b3b94f6a75a47731d95415eb7b7dfd66113414cd576641b
|
data/lib/translations_sync.rb
CHANGED
|
@@ -102,11 +102,9 @@ class TranslationsSync
|
|
|
102
102
|
end
|
|
103
103
|
end
|
|
104
104
|
|
|
105
|
-
puts ignore.inspect
|
|
106
105
|
if ignore
|
|
107
106
|
translations_path_re = Regexp.new "#{translations_dir}#{'\\/[^/]+' if @prefix}\\/#{Regexp.escape ignore}"
|
|
108
107
|
I18n.load_path.reject! do |path|
|
|
109
|
-
puts "#{path} #{(path !~ translations_path_re).inspect}"
|
|
110
108
|
path =~ translations_path_re
|
|
111
109
|
end
|
|
112
110
|
end
|