Sha256: de7708e07394b3c3dc0b639aa3605ecb561c43d2dc2b07b36930ba252253172d
Contents?: true
Size: 494 Bytes
Versions: 14
Compression:
Stored size: 494 Bytes
Contents
# Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/switchtower.rake, and they will automatically be available to Rake. require 'rake' require 'gettext/utils' desc "Create mo-files for L10n" task :makemo do GetText.create_mofiles(true, "po", "locale") end desc "Update pot/po files to match new version." task :updatepo do GetText.update_pofiles("gettext_plugin", Dir.glob("lib/*.{rb,rhtml}"), "gettext_plugin 1.2.0") end
Version data entries
14 entries across 14 versions & 1 rubygems