muck-engine 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.
- data/VERSION +1 -1
- data/lib/muck_engine/populate.rb +1 -1
- data/muck-engine.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.11
|
data/lib/muck_engine/populate.rb
CHANGED
|
@@ -737,7 +737,7 @@ module Muck
|
|
|
737
737
|
['中文', 'Chinese', false, 'zh-CN', true],
|
|
738
738
|
['中文', 'Chinese Traditional', false, 'zh-TW', true],
|
|
739
739
|
['isiZulu', 'Zulu', false, 'zu', false]
|
|
740
|
-
].each {|l| Language.create(:name => l[0], :english_name => l[1], :is_default => l[2], :locale => l[3], :supported => l[4]) unless Language.find_by_locale(
|
|
740
|
+
].each {|l| Language.create(:name => l[0], :english_name => l[1], :is_default => l[2], :locale => l[3], :supported => l[4]) unless Language.find_by_locale(l[3]) }
|
|
741
741
|
end
|
|
742
742
|
|
|
743
743
|
end
|
data/muck-engine.gemspec
CHANGED