Make assets:coffee a dependency of i18n:extract

Extraction is done on the compiled .js files, so coffee compilation
should be done before extracting strings.
This commit is contained in:
Greg Price
2014-02-04 12:09:00 -05:00
parent 0f8919a6ba
commit 88d3998c8a

View File

@@ -3,7 +3,7 @@
namespace :i18n do
desc "Extract localizable strings from sources"
task :extract => "i18n:validate:gettext" do
task :extract => ["i18n:validate:gettext", "assets:coffee"] do
sh(File.join(REPO_ROOT, "i18n", "extract.py"))
end