Sha256: cb3ccecbc548d3fb264f01fa156969d9bc992f796a5099d56882bbb8196be733

Contents?: true

Size: 380 Bytes

Versions: 1

Compression:

Stored size: 380 Bytes

Contents

$LOAD_PATH.unshift "../lib"

#gems that are required, to run the tests...
gem 'locale'

task :default => :test

desc "Create mo files"
task :makemo do
  require 'gettext/tools'
  GetText.create_mofiles(:mo_root => "locale")
end

desc 'Run all tests'
task :test do
   Dir.glob("**/test_*.rb").each do |path|
    puts ""
    ruby "-I../lib", "-rubygems", path rescue nil
   end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gettext-2.0.0 test/Rakefile