leftbrained-ar_mailer 2.1.12 → 2.1.13
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.
- checksums.yaml +7 -0
- data/History.txt +5 -0
- data/lib/action_mailer/ar_sendmail.rb +2 -2
- metadata +51 -71
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 05ba0f046ac8a73a9c0dce309b07507734953f3f
|
4
|
+
data.tar.gz: 44da654858f6fd6368bde53bf2e77f0f34b4d168
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8e35de6ec48da61a09a62346d4cacfc5fa148a50229eb6eb868b3d248f25a5197fbe676471931bcd6bfa0000a23a422cbdcb8c37ce48b5c3cf2f49c965bbc9e6
|
7
|
+
data.tar.gz: 2f0d293eb95e8d2f46fc82a665b3a7f710d1871559195ef475ab752e7187f771db99e8253ce1ba766f03ce2104d45dda0bfe2e2741cde4263a855f1fdf99094b
|
data/History.txt
CHANGED
@@ -42,7 +42,7 @@ class ActionMailer::ARSendmail
|
|
42
42
|
##
|
43
43
|
# The version of ActionMailer::ARSendmail you are running.
|
44
44
|
|
45
|
-
VERSION = '2.1.
|
45
|
+
VERSION = '2.1.13'
|
46
46
|
|
47
47
|
##
|
48
48
|
# Maximum number of times authentication will be consecutively retried
|
@@ -264,7 +264,7 @@ class ActionMailer::ARSendmail
|
|
264
264
|
|
265
265
|
Dir.chdir options[:Chdir] do
|
266
266
|
begin
|
267
|
-
require 'config/environment'
|
267
|
+
require './config/environment'
|
268
268
|
require 'action_mailer/ar_mailer'
|
269
269
|
rescue LoadError
|
270
270
|
usage opts, <<-EOF
|
metadata
CHANGED
@@ -1,68 +1,58 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: leftbrained-ar_mailer
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease: false
|
6
|
-
segments:
|
7
|
-
- 2
|
8
|
-
- 1
|
9
|
-
- 12
|
10
|
-
version: 2.1.12
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.1.13
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Eric Hodel
|
14
8
|
- Adam Meehan
|
15
9
|
- Gavin Montague
|
16
10
|
autorequire:
|
17
11
|
bindir: bin
|
18
12
|
cert_chain: []
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
dependencies:
|
23
|
-
- !ruby/object:Gem::Dependency
|
13
|
+
date: 2013-11-25 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
24
16
|
name: minitest
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
- - ">="
|
30
|
-
- !ruby/object:Gem::Version
|
31
|
-
hash: 3
|
32
|
-
segments:
|
33
|
-
- 1
|
34
|
-
- 5
|
35
|
-
- 0
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - '>='
|
20
|
+
- !ruby/object:Gem::Version
|
36
21
|
version: 1.5.0
|
37
22
|
type: :development
|
38
|
-
version_requirements: *id001
|
39
|
-
- !ruby/object:Gem::Dependency
|
40
|
-
name: mocha
|
41
23
|
prerelease: false
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - '>='
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 1.5.0
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: mocha
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '>='
|
34
|
+
- !ruby/object:Gem::Version
|
52
35
|
version: 0.9.8
|
53
36
|
type: :development
|
54
|
-
|
55
|
-
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - '>='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.9.8
|
43
|
+
description: 'Forked from adzap-ar_mailer to allow parallel processing of emails by
|
44
|
+
different worker servers. Even delivering email to the local machine may take too
|
45
|
+
long when you have to send hundreds of messages. ar_mailer allows you to store
|
46
|
+
messages into the database for later delivery by a separate process, ar_sendmail. '
|
56
47
|
email: gavin@leftbrained.co.uk
|
57
|
-
executables:
|
48
|
+
executables:
|
58
49
|
- ar_sendmail
|
59
50
|
extensions: []
|
60
|
-
|
61
|
-
extra_rdoc_files:
|
51
|
+
extra_rdoc_files:
|
62
52
|
- History.txt
|
63
53
|
- LICENSE.txt
|
64
54
|
- README.rdoc
|
65
|
-
files:
|
55
|
+
files:
|
66
56
|
- History.txt
|
67
57
|
- LICENSE.txt
|
68
58
|
- README.rdoc
|
@@ -82,41 +72,31 @@ files:
|
|
82
72
|
- test/test_armailer.rb
|
83
73
|
- test/test_arsendmail.rb
|
84
74
|
- test/test_helper.rb
|
85
|
-
has_rdoc: true
|
86
75
|
homepage: http://github.com/govan/leftbrained-ar_mailer
|
87
76
|
licenses: []
|
88
|
-
|
77
|
+
metadata: {}
|
89
78
|
post_install_message:
|
90
|
-
rdoc_options:
|
79
|
+
rdoc_options:
|
91
80
|
- --main
|
92
81
|
- README.rdoc
|
93
|
-
require_paths:
|
82
|
+
require_paths:
|
94
83
|
- lib
|
95
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
none: false
|
106
|
-
requirements:
|
107
|
-
- - ">="
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
hash: 3
|
110
|
-
segments:
|
111
|
-
- 0
|
112
|
-
version: "0"
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
113
94
|
requirements: []
|
114
|
-
|
115
95
|
rubyforge_project: seattlerb
|
116
|
-
rubygems_version:
|
96
|
+
rubygems_version: 2.0.3
|
117
97
|
signing_key:
|
118
|
-
specification_version:
|
98
|
+
specification_version: 4
|
119
99
|
summary: A two-phase delivery agent for ActionMailer
|
120
|
-
test_files:
|
100
|
+
test_files:
|
121
101
|
- test/test_armailer.rb
|
122
102
|
- test/test_arsendmail.rb
|