aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/actionmailer.gemspec
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-02-03 17:59:39 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-02-03 17:59:49 -0800
commit031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc (patch)
tree16f9e62c4558a42800e8632a3c9a915813fe5bba /actionmailer/actionmailer.gemspec
parente71825d40d4427ad1bf8b819adea5987fbf59fc5 (diff)
downloadrails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.tar.gz
rails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.tar.bz2
rails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.zip
Homogenize gemspecs and remove the deprecated autorequire
Diffstat (limited to 'actionmailer/actionmailer.gemspec')
-rw-r--r--actionmailer/actionmailer.gemspec32
1 files changed, 16 insertions, 16 deletions
diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec
index 1e4a19f736..c3b1c96832 100644
--- a/actionmailer/actionmailer.gemspec
+++ b/actionmailer/actionmailer.gemspec
@@ -1,22 +1,22 @@
Gem::Specification.new do |s|
- s.platform = Gem::Platform::RUBY
- s.name = 'actionmailer'
- s.summary = "Service layer for easy email delivery and testing."
- s.description = %q{Makes it trivial to test and deliver emails sent from a single service layer.}
- s.version = '3.0.0.beta'
+ s.platform = Gem::Platform::RUBY
+ s.name = 'actionmailer'
+ s.version = '3.0.0.beta'
+ s.summary = 'Email composition, delivery, and recieval framework (part of Rails).'
+ s.description = 'Email composition, delivery, and recieval framework (part of Rails).'
- s.author = "David Heinemeier Hansson"
- s.email = "david@loudthinking.com"
- s.rubyforge_project = "actionmailer"
- s.homepage = "http://www.rubyonrails.org"
+ s.author = 'David Heinemeier Hansson'
+ s.email = 'david@loudthinking.com'
+ s.homepage = 'http://www.rubyonrails.org'
+ s.rubyforge_project = 'actionmailer'
- s.add_dependency('actionpack', '= 3.0.0.beta')
- s.add_dependency('mail', '~> 2.1.2')
- s.add_dependency('text-format', '~> 1.0.0')
+ s.files = Dir['CHANGELOG', 'README', 'MIT-LICENSE', 'lib/**/*']
+ s.require_path = 'lib'
+ s.requirements << 'none'
- s.files = Dir['CHANGELOG', 'README', 'MIT-LICENSE', 'lib/**/*']
s.has_rdoc = true
- s.requirements << 'none'
- s.require_path = 'lib'
- s.autorequire = 'action_mailer'
+
+ s.add_dependency('actionpack', '= 3.0.0.beta')
+ s.add_dependency('mail', '~> 2.1.2')
+ s.add_dependency('text-format', '~> 1.0.0')
end