2010-03-06 19:30:25 +00:00
version = File . read ( File . expand_path ( " ../../RAILS_VERSION " , __FILE__ ) ) . strip
2010-03-02 04:36:54 +00:00
2009-09-01 00:20:44 +00:00
Gem :: Specification . new do | s |
2010-02-04 01:59:39 +00:00
s . platform = Gem :: Platform :: RUBY
s . name = 'activesupport'
2010-03-05 03:41:39 +00:00
s . version = version
2010-03-02 18:32:09 +00:00
s . summary = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.'
2010-03-02 18:44:16 +00:00
s . description = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.'
2010-04-01 20:46:04 +00:00
2010-02-08 04:30:10 +00:00
s . required_ruby_version = '>= 1.8.7'
2009-09-01 00:20:44 +00:00
2011-05-22 11:30:55 +00:00
s . author = 'David Heinemeier Hansson'
s . email = 'david@loudthinking.com'
s . homepage = 'http://www.rubyonrails.org'
2009-12-27 23:59:20 +00:00
2011-11-04 13:46:35 +00:00
s . files = Dir [ 'CHANGELOG.md' , 'MIT-LICENSE' , 'README.rdoc' , 'lib/**/*' ]
2009-09-25 05:24:34 +00:00
s . require_path = 'lib'
2011-04-19 14:34:34 +00:00
2011-05-22 11:38:00 +00:00
s . add_dependency ( 'i18n' , '~> 0.6' )
2011-05-04 17:30:23 +00:00
s . add_dependency ( 'multi_json' , '~> 1.0' )
2009-09-01 00:20:44 +00:00
end