2010-04-02 04:46:04 +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-04-02 04:44:09 +08:00
s . platform = Gem :: Platform :: RUBY
s . name = 'activemodel'
s . version = version
s . summary = 'A toolkit for building modeling frameworks (part of Rails).'
2013-10-09 20:25:16 +08:00
s . description = 'A toolkit for building modeling frameworks like Active Record. Rich support for attributes, callbacks, validations, serialization, internationalization, and testing.'
2010-04-02 04:46:04 +08:00
2011-12-21 02:13:23 +08:00
s . required_ruby_version = '>= 1.9.3'
2009-09-01 08:20:44 +08:00
2012-11-09 03:51:18 +08:00
s . license = 'MIT'
s . author = 'David Heinemeier Hansson'
s . email = 'david@loudthinking.com'
s . homepage = 'http://www.rubyonrails.org'
2010-04-02 04:44:09 +08:00
2013-03-19 04:18:36 +08:00
s . files = Dir [ 'CHANGELOG.md' , 'MIT-LICENSE' , 'README.rdoc' , 'lib/**/*' ]
2010-04-02 04:44:09 +08:00
s . require_path = 'lib'
2009-09-25 13:46:04 +08:00
2012-11-09 03:51:18 +08:00
s . add_dependency 'activesupport' , version
2013-12-10 21:50:21 +08:00
s . add_dependency 'builder' , '~> 3.1'
2009-09-01 08:20:44 +08:00
end