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 = 'actionmailer'
2010-03-05 03:41:39 +00:00
s . version = version
2010-03-02 18:32:09 +00: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.'
2010-02-08 04:30:10 +00:00
s . required_ruby_version = '>= 1.8.7'
2009-09-25 05:46:04 +00:00
2010-02-04 01:59:39 +00:00
s . author = 'David Heinemeier Hansson'
s . email = 'david@loudthinking.com'
s . homepage = 'http://www.rubyonrails.org'
2009-09-01 00:20:44 +00:00
2010-07-21 17:00:01 +00:00
s . files = Dir [ 'CHANGELOG' , 'README.rdoc' , 'MIT-LICENSE' , 'lib/**/*' ]
2010-02-04 01:59:39 +00:00
s . require_path = 'lib'
s . requirements << 'none'
2009-09-01 00:20:44 +00:00
2010-03-05 03:41:39 +00:00
s . add_dependency ( 'actionpack' , version )
2011-04-26 10:04:48 +00:00
s . add_dependency ( 'mail' , '~> 2.3.0' )
2009-09-01 00:20:44 +00:00
end