Sha256: 0981b95eb87ddea368b52d1ef4edb33e8e89cf48ef9893c9d7982c66f76b6a4c

Contents?: true

Size: 472 Bytes

Versions: 6

Compression:

Stored size: 472 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_rails/tools'
desc "Create mo-files for L10n"
task :makemo do
  GetText.create_mofiles
end

desc "Update pot/po files to match new version."
task :updatepo do
  GetText.update_pofiles("lang_helper", Dir.glob("lib/*.{rb,rhtml}"),
                         "lang_helper 1.3.0")
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gettext_rails-2.1.0 sample/vendor/plugins/lang_helper/Rakefile
gettext_rails-2.0.0 sample/vendor/plugins/lang_helper/Rakefile
gettext_rails-2.0.1 sample/vendor/plugins/lang_helper/Rakefile
gettext_rails-2.0.2 sample/vendor/plugins/lang_helper/Rakefile
gettext_rails-2.0.4 sample/vendor/plugins/lang_helper/Rakefile
gettext_rails-2.0.3 sample/vendor/plugins/lang_helper/Rakefile