diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-11-08 16:18:09 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-11-08 16:18:09 -0800 |
commit | fd16cb3f596bad1bf0ecab9916c009bd7957e401 (patch) | |
tree | 8b3d2e0e1c1592ca4db23d40c72462944810080e /actionmailer | |
parent | 484283968e8ad7dc8a7864b65603671bec4f2850 (diff) | |
parent | a96a1769302c2974c8e0faf66089c8101807715d (diff) | |
download | rails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.tar.gz rails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.tar.bz2 rails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.zip |
Merge pull request #8147 from gbchaosmaster/gemspec
Reformat gemspec
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/actionmailer.gemspec | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec index 0c669e2e91..0177a13e50 100644 --- a/actionmailer/actionmailer.gemspec +++ b/actionmailer/actionmailer.gemspec @@ -1,4 +1,4 @@ -version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip +version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY @@ -6,17 +6,20 @@ Gem::Specification.new do |s| s.version = version 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.' + s.required_ruby_version = '>= 1.9.3' - s.license = 'MIT' - s.author = 'David Heinemeier Hansson' - s.email = 'david@loudthinking.com' - s.homepage = 'http://www.rubyonrails.org' + s.license = 'MIT' + + s.author = 'David Heinemeier Hansson' + s.email = 'david@loudthinking.com' + s.homepage = 'http://www.rubyonrails.org' s.files = Dir['CHANGELOG.md', 'README.rdoc', 'MIT-LICENSE', 'lib/**/*'] s.require_path = 'lib' s.requirements << 'none' - s.add_dependency('actionpack', version) - s.add_dependency('mail', '~> 2.4.4') + s.add_dependency 'actionpack', version + + s.add_dependency 'mail', '~> 2.4.4' end |