capistrano_mailer 3.1.7 → 3.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.rdoc CHANGED
@@ -60,8 +60,9 @@ Gemcutter is the hot new gem host, and you can use it like this:
60
60
 
61
61
  Then cd to your rails app to optionally freeze the gem into your app:
62
62
 
63
- rake gems:freeze GEM=super_exception_notifier
64
- # You do NOT need to add a config.gem line to environment.rb for capistrano mailer.
63
+ rake gems:freeze GEM=capistrano_mailer
64
+ # You do NOT need to add a config.gem line to environment.rb for capistrano mailer,
65
+ # But in order to use the gems:freeze task you DO need ot add it as a config.gem, at least temporarily.
65
66
 
66
67
  Plugin using Git:
67
68
 
@@ -100,8 +101,8 @@ From version 2.1.0 to version 3.x.x:
100
101
 
101
102
  # If installed as a plugin might need the require here as well
102
103
 
103
- ActionMailer::Base.delivery_method = :smtp
104
- ActionMailer::Base.smtp_settings = {
104
+ ActionMailer::Base.delivery_method = :smtp # or :sendmail, or whatever
105
+ ActionMailer::Base.smtp_settings = { # if using :smtp
105
106
  :address => "mail.example.com",
106
107
  :port => 25,
107
108
  :domain => 'default.com',
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 3
3
3
  :minor: 1
4
- :patch: 7
4
+ :patch: 8
5
5
  :build:
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{capistrano_mailer}
8
- s.version = "3.1.7"
8
+ s.version = "3.1.8"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Peter Boling"]
12
- s.date = %q{2010-01-02}
12
+ s.date = %q{2010-01-07}
13
13
  s.description = %q{Capistrano Deployment Email Notification. Keep the whole team informed of each release!}
14
14
  s.email = %q{peter.boling@gmail.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_mailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.7
4
+ version: 3.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-02 00:00:00 -05:00
12
+ date: 2010-01-07 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency