rubycas-server 1.0.1 → 1.1.0

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.
@@ -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