Commit 25bc7db6b3a56d5bf983dfdce2d817fb58310668
1 parent
c8706f2f
Exists in
master
and in
29 other branches
Droping gettext/rails usage in makemo target
It is not strictly needed for non-development usage. Thanks to Bráulio B O Bhavamitra for pointing it out.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/tasks/gettext.rake
@@ -8,7 +8,7 @@ makemo_stamp = 'tmp/makemo.stamp' | @@ -8,7 +8,7 @@ makemo_stamp = 'tmp/makemo.stamp' | ||
8 | desc "Create mo-files for L10n" | 8 | desc "Create mo-files for L10n" |
9 | task :makemo => makemo_stamp | 9 | task :makemo => makemo_stamp |
10 | file makemo_stamp => Dir.glob('po/*/noosfero.po') do | 10 | file makemo_stamp => Dir.glob('po/*/noosfero.po') do |
11 | - ruby '-rconfig/boot -rgettext -rgettext/rails -rgettext/utils -e GetText.create_mofiles(true, "po", "locale") 2>/dev/null' | 11 | + ruby '-rconfig/boot -rgettext -rgettext/utils -e GetText.create_mofiles(true, "po", "locale") 2>/dev/null' |
12 | FileUtils.touch makemo_stamp | 12 | FileUtils.touch makemo_stamp |
13 | end | 13 | end |
14 | 14 |