aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/actionmailer.gemspec
diff options
context:
space:
mode:
authorKarl Freeman <karlfreeman@gmail.com>2016-01-24 14:13:36 +0000
committerKarl Freeman <karlfreeman@gmail.com>2016-01-24 14:13:36 +0000
commitcef8b543b551023c94c274508e30d7111a3df4ea (patch)
tree13d3412cfae2736607d8b2024193e851aba3ea57 /actionmailer/actionmailer.gemspec
parent83d2c39d5eb8d82ba124b6725d08c8e90760c764 (diff)
downloadrails-cef8b543b551023c94c274508e30d7111a3df4ea.tar.gz
rails-cef8b543b551023c94c274508e30d7111a3df4ea.tar.bz2
rails-cef8b543b551023c94c274508e30d7111a3df4ea.zip
Bump mail gem constraint from [~> 2.5, >= 2.5.4] to ~> 2.6
Mails downstream dependency (Mime-types) has been shown to decrease memory usage significantly in its 3.0 release. This memory decrease will be a big win for users upgrading to Rails 5. Lets nudge users to upgrade Mail alongside Rails.
Diffstat (limited to 'actionmailer/actionmailer.gemspec')
-rw-r--r--actionmailer/actionmailer.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec
index fa6043fdd7..278076f699 100644
--- a/actionmailer/actionmailer.gemspec
+++ b/actionmailer/actionmailer.gemspec
@@ -23,6 +23,6 @@ Gem::Specification.new do |s|
s.add_dependency 'actionview', version
s.add_dependency 'activejob', version
- s.add_dependency 'mail', ['~> 2.5', '>= 2.5.4']
+ s.add_dependency 'mail', '~> 2.6'
s.add_dependency 'rails-dom-testing', '~> 1.0', '>= 1.0.5'
end