Sha256: d539d47cd4689b51d7febdb90b7ddc3caa9b398f14d98b92ba2f82150f7ac1c9

Contents?: true

Size: 986 Bytes

Versions: 2

Compression:

Stored size: 986 Bytes

Contents

require 'rake/testtask'

task :default => [:test]

Rake::TestTask.new(:test) do |t|
  t.pattern = "#{File.dirname(__FILE__)}/test/all.rb"
  t.verbose = true
end
Rake::Task['test'].comment = "Run all i18n tests"

require File.expand_path("lib/i18n/version", File.dirname(__FILE__))

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "i18n"
    s.version = I18n::VERSION
    s.rubyforge_project = "i18n"
    s.summary = "New wave Internationalization support for Ruby"
    s.email = "rails-i18n@googlegroups.com"
    s.homepage = "http://rails-i18n.org"
    s.description = "Add Internationalization support to your Ruby application."
    s.authors = ['Sven Fuchs', 'Joshua Harvey', 'Matt Aimonetti', 'Stephan Soller', 'Saimon Moore']
    s.files =  FileList["[A-Z]*", "{lib,test,vendor}/**/*"]
  end
rescue LoadError
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
i18n-0.3.5 Rakefile
i18n-0.3.4 Rakefile