Initial import

This commit is contained in:
2008-03-02 16:04:34 -03:00
commit 5e4951fa47
798 changed files with 59730 additions and 0 deletions

16
lib/tasks/gibberish.rake Normal file
View File

@@ -0,0 +1,16 @@
namespace :gibberish do
# Bela gambiarra
desc "Exports all Gibberish translation keys"
task :export do
ENV['GIBBERISH_EXPORT'] = 'true'
puts "Running tests ..."
`rake test 2> /dev/null`
puts "Sorting keys ..."
$stderr.puts `sort lang/tmp_keys | uniq`
`rm lang/tmp_keys`
end
end