rubycas-server 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +0,0 @@
1
- namespace :localization do
2
- desc 'Scans the code for translatable strings and generates/updates the .po files'
3
- task :po do
4
- require 'gettext/utils'
5
- GetText.update_pofiles("rubycas-server", Dir.glob("{lib,bin}/**/*.{rb}"), "rubycas-server ")
6
- end
7
-
8
- desc 'Creates .mo files from .po files and puts them in the locale dir'
9
- task :mo do
10
- require 'gettext/utils'
11
- GetText.create_mofiles(true, "po", "locale")
12
- end
13
- end