2010-03-06 14:30:25 -05:00
version = File . read ( File . expand_path ( " ../../RAILS_VERSION " , __FILE__ ) ) . strip
2010-03-01 23:36:54 -05:00
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 = 'actionmailer'
2010-03-04 22:41:39 -05:00
s . version = version
2010-03-02 13:32:09 -05:00
s . summary = 'Email composition, delivery, and receiving framework (part of Rails).'
s . description = 'Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.'
2011-12-20 13:13:23 -05:00
s . required_ruby_version = '>= 1.9.3'
2009-09-25 01:46:04 -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'
2009-08-31 20:20:44 -04:00
2011-11-04 09:46:35 -04:00
s . files = Dir [ 'CHANGELOG.md' , 'README.rdoc' , 'MIT-LICENSE' , 'lib/**/*' ]
2010-02-03 20:59:39 -05:00
s . require_path = 'lib'
s . requirements << 'none'
2009-08-31 20:20:44 -04:00
2010-03-04 22:41:39 -05:00
s . add_dependency ( 'actionpack' , version )
2012-03-18 23:43:07 -04:00
s . add_dependency ( 'mail' , '~> 2.4.4' )
2009-08-31 20:20:44 -04:00
end