2016-08-07 01:23:48 +08:00
version = File . read ( File . expand_path ( " ../../RAILS_VERSION " , __FILE__ ) ) . strip
2010-03-02 12:36:54 +08:00
2009-09-01 08:20:44 +08:00
Gem :: Specification . new do | s |
2010-02-04 09:59:39 +08:00
s . platform = Gem :: Platform :: RUBY
2016-08-07 01:23:48 +08:00
s . name = " activesupport "
2010-03-05 11:41:39 +08:00
s . version = version
2016-08-07 01:23:48 +08:00
s . summary = " A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. "
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-02 04:46:04 +08:00
2016-08-07 01:23:48 +08:00
s . required_ruby_version = " >= 2.2.2 "
2009-09-01 08:20:44 +08:00
2016-08-07 01:23:48 +08:00
s . license = " MIT "
2012-11-09 03:51:18 +08:00
2016-08-07 01:23:48 +08:00
s . author = " David Heinemeier Hansson "
s . email = " david@loudthinking.com "
s . homepage = " http://rubyonrails.org "
2009-12-28 07:59:20 +08:00
2016-08-07 01:23:48 +08:00
s . files = Dir [ " CHANGELOG.md " , " MIT-LICENSE " , " README.rdoc " , " lib/**/* " ]
s . require_path = " lib "
2011-04-19 22:34:34 +08:00
2016-08-07 01:23:48 +08:00
s . rdoc_options . concat [ " --encoding " , " UTF-8 " ]
2012-01-04 00:18:05 +08:00
2016-08-07 01:23:48 +08:00
s . add_dependency " i18n " , " ~> 0.7 "
s . add_dependency " tzinfo " , " ~> 1.1 "
s . add_dependency " minitest " , " ~> 5.1 "
s . add_dependency " concurrent-ruby " , " ~> 1.0 " , " >= 1.0.2 "
2009-09-01 08:20:44 +08:00
end