forked from ruby-i18n/i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
i18n.gemspec
25 lines (21 loc) · 960 Bytes
/
i18n.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 = "[email protected]"
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 = Dir.glob("{ci,lib,test}/**/**") + %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.5'
s.add_development_dependency 'activesupport', '~> 3.0.0'
s.add_development_dependency 'sqlite3-ruby'
s.add_development_dependency 'mocha'
s.add_development_dependency 'test_declarative'
end