public
Fork of mattetti/i18n
Description: Basic internationalization(i18n) library for Ruby
Homepage:
Clone URL: git://github.com/svenfuchs/i18n.git
i18n / Rakefile
100644 22 lines (19 sloc) 0.733 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
task :default => [:test]
 
task :test do
  ruby "test/all.rb"
end
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "i18n"
    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}/**/*"]
  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