zendesk-ar_mailer 1.4.5
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/History.txt +81 -0
- data/LICENSE.txt +28 -0
- data/Manifest.txt +15 -0
- data/README.txt +70 -0
- data/Rakefile +60 -0
- data/bin/ar_sendmail +6 -0
- data/lib/action_mailer/ar_mailer.rb +111 -0
- data/lib/action_mailer/ar_sendmail.rb +558 -0
- data/lib/smtp_tls.rb +105 -0
- data/share/bsd/ar_sendmail +30 -0
- data/share/linux/ar_sendmail +75 -0
- data/share/linux/ar_sendmail.conf +30 -0
- data/test/action_mailer.rb +185 -0
- data/test/test_armailer.rb +51 -0
- data/test/test_arsendmail.rb +672 -0
- metadata +72 -0
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zendesk-ar_mailer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Hodel
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-07-04 00:00:00 -07:00
|
13
|
+
default_executable: ar_sendmail
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Even delivering email to the local machine may take too long when you have to send hundreds of messages. ar_mailer allows you to store messages into the database for later delivery by a separate process, ar_sendmail.
|
17
|
+
email: drbrain@segment7.net
|
18
|
+
executables:
|
19
|
+
- ar_sendmail
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- History.txt
|
24
|
+
- LICENSE.txt
|
25
|
+
- Manifest.txt
|
26
|
+
- README.txt
|
27
|
+
files:
|
28
|
+
- History.txt
|
29
|
+
- LICENSE.txt
|
30
|
+
- Manifest.txt
|
31
|
+
- README.txt
|
32
|
+
- Rakefile
|
33
|
+
- bin/ar_sendmail
|
34
|
+
- lib/action_mailer/ar_mailer.rb
|
35
|
+
- lib/action_mailer/ar_sendmail.rb
|
36
|
+
- lib/smtp_tls.rb
|
37
|
+
- share/bsd/ar_sendmail
|
38
|
+
- share/linux/ar_sendmail
|
39
|
+
- share/linux/ar_sendmail.conf
|
40
|
+
- test/action_mailer.rb
|
41
|
+
- test/test_armailer.rb
|
42
|
+
- test/test_arsendmail.rb
|
43
|
+
has_rdoc: true
|
44
|
+
homepage: http://seattlerb.org/ar_mailer
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options:
|
47
|
+
- --main
|
48
|
+
- README.txt
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
56
|
+
version:
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
version:
|
63
|
+
requirements: []
|
64
|
+
|
65
|
+
rubyforge_project: seattlerb
|
66
|
+
rubygems_version: 1.2.0
|
67
|
+
signing_key:
|
68
|
+
specification_version: 2
|
69
|
+
summary: A two-phase delivery agent for ActionMailer
|
70
|
+
test_files:
|
71
|
+
- test/test_armailer.rb
|
72
|
+
- test/test_arsendmail.rb
|