1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# encoding: utf-8
$: << File.expand_path('../lib', __FILE__)
require 'i18n/version'
Gem::Specification.new do |s|
s.name = "i18n"
s.version = I18n::VERSION
s.authors = ["Sven Fuchs", "Joshua Harvey", "Matt Aimonetti", "Stephan Soller", "Saimon Moore"]
s.email = "rails-i18n@googlegroups.com"
s.homepage = "http://github.com/svenfuchs/i18n"
s.summary = "New wave Internationalization support for Ruby"
s.description = "New wave Internationalization support for Ruby."
s.files = `git ls-files {app,lib}`.split("\n") + %w(README.textile MIT-LICENSE CHANGELOG.textile)
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.required_rubygems_version = '>= 1.3.6'
end
|