2010-03-01 23:36:54 -05:00
$: . unshift " lib "
require " active_support/version "
2009-08-31 20:20:44 -04:00
Gem :: Specification . new do | s |
2010-02-03 20:59:39 -05:00
s . platform = Gem :: Platform :: RUBY
s . name = 'activesupport'
2010-03-01 23:36:54 -05:00
s . version = ActiveSupport :: VERSION :: STRING
2010-03-02 13:32:09 -05:00
s . summary = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.'
2010-03-02 13:44:16 -05: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-02-07 23:30:10 -05:00
s . required_ruby_version = '>= 1.8.7'
2009-08-31 20:20:44 -04:00
2010-02-03 20:59:39 -05:00
s . author = 'David Heinemeier Hansson'
s . email = 'david@loudthinking.com'
s . homepage = 'http://www.rubyonrails.org'
s . rubyforge_project = 'activesupport'
2009-12-27 18:59:20 -05:00
2010-02-03 20:59:39 -05:00
s . files = Dir [ 'CHANGELOG' , 'README' , 'lib/**/*' ]
2009-09-25 01:24:34 -04:00
s . require_path = 'lib'
2010-02-03 20:59:39 -05:00
2009-09-25 01:24:34 -04:00
s . has_rdoc = true
2009-08-31 20:20:44 -04:00
2010-02-25 18:06:11 -05:00
s . add_dependency ( 'i18n' , '~> 0.3.4' )
2010-02-03 20:59:39 -05:00
s . add_dependency ( 'tzinfo' , '~> 0.3.16' )
s . add_dependency ( 'builder' , '~> 2.1.2' )
s . add_dependency ( 'memcache-client' , '~> 1.7.5' )
2009-08-31 20:20:44 -04:00
end