backgrounded_mailer 0.1.0

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/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in backgrounded.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Geoffrey Hichborn
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,8 @@
1
+
2
+ Backgrounded Mailer
3
+ ===================
4
+
5
+ Send e-mail in the background by default using the [backgrounded][backgrounded_gem] gem.
6
+
7
+
8
+ [backgrounded_gem]: https://github.com/wireframe/backgrounded
data/TODO ADDED
@@ -0,0 +1,2 @@
1
+
2
+ - Add support for sending e-mail to BCC recipients in the background. Right now, it must be done immediately because the BCC list isn't included in the encoded e-mail
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "backgrounded_mailer/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "backgrounded_mailer"
7
+ s.version = BackgroundedMailer::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Geoffrey Hichborn"]
10
+ s.email = ["geoff@socialcast.com"]
11
+ s.homepage = "http://github.com/phene/backgrounded_mailer"
12
+ s.summary = %q{Extends ActionMailer to send e-mails using backgrounded}
13
+ s.description = %q{Send e-mails in the background by default using the backgrounded gem}
14
+
15
+ s.rubyforge_project = "backgrounded_mailer"
16
+
17
+ s.add_runtime_dependency(%q<backgrounded>, [">= 0.7"])
18
+ s.add_runtime_dependency(%q<mail>, [">= 2.2"])
19
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
20
+ s.add_development_dependency(%q<mocha>, [">= 0"])
21
+ s.add_development_dependency(%q<sqlite3-ruby>, [">= 1.3.2"])
22
+
23
+ s.files = `git ls-files`.split("\n")
24
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
26
+ s.require_paths = ["lib"]
27
+ end
@@ -0,0 +1,3 @@
1
+ module BackgroundedMailer
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,33 @@
1
+ require 'mail'
2
+
3
+ module BackgroundedMailer
4
+
5
+ def self.included(base)
6
+ base.class_eval do
7
+ alias_method :deliver_now, :deliver
8
+ alias_method :deliver, :deliver_later
9
+ extend ClassMethods
10
+ class << self
11
+ backgrounded :deserialize_and_deliver
12
+ end
13
+ end
14
+ end
15
+
16
+ def deliver_later
17
+ self.class.deserialize_and_deliver_backgrounded self.encoded, self.delivery_handler.name
18
+ self
19
+ end
20
+
21
+ module ClassMethods
22
+ def deserialize_and_deliver(encoded_body, delivery_handler)
23
+ delivery_handler = delivery_handler.constantize
24
+ mail = Mail.new(encoded_body)
25
+ mail.delivery_handler = delivery_handler
26
+ mail.delivery_method delivery_handler.delivery_method
27
+ mail.deliver_now
28
+ end
29
+ end
30
+
31
+ end
32
+
33
+ Mail::Message.send :include, BackgroundedMailer
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: backgrounded_mailer
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Geoffrey Hichborn
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-10-19 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: backgrounded
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 5
29
+ segments:
30
+ - 0
31
+ - 7
32
+ version: "0.7"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: mail
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 7
44
+ segments:
45
+ - 2
46
+ - 2
47
+ version: "2.2"
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: shoulda
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ type: :development
63
+ version_requirements: *id003
64
+ - !ruby/object:Gem::Dependency
65
+ name: mocha
66
+ prerelease: false
67
+ requirement: &id004 !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ hash: 3
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ type: :development
77
+ version_requirements: *id004
78
+ - !ruby/object:Gem::Dependency
79
+ name: sqlite3-ruby
80
+ prerelease: false
81
+ requirement: &id005 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ hash: 31
87
+ segments:
88
+ - 1
89
+ - 3
90
+ - 2
91
+ version: 1.3.2
92
+ type: :development
93
+ version_requirements: *id005
94
+ description: Send e-mails in the background by default using the backgrounded gem
95
+ email:
96
+ - geoff@socialcast.com
97
+ executables: []
98
+
99
+ extensions: []
100
+
101
+ extra_rdoc_files: []
102
+
103
+ files:
104
+ - Gemfile
105
+ - LICENSE
106
+ - README.md
107
+ - TODO
108
+ - backgrounded_mailer.gemspec
109
+ - lib/backgrounded_mailer.rb
110
+ - lib/backgrounded_mailer/version.rb
111
+ homepage: http://github.com/phene/backgrounded_mailer
112
+ licenses: []
113
+
114
+ post_install_message:
115
+ rdoc_options: []
116
+
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ hash: 3
125
+ segments:
126
+ - 0
127
+ version: "0"
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ hash: 3
134
+ segments:
135
+ - 0
136
+ version: "0"
137
+ requirements: []
138
+
139
+ rubyforge_project: backgrounded_mailer
140
+ rubygems_version: 1.8.10
141
+ signing_key:
142
+ specification_version: 3
143
+ summary: Extends ActionMailer to send e-mails using backgrounded
144
+ test_files: []
145
+