adzap-ar_mailer 2.1.3 → 2.1.4

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 CHANGED
@@ -1,3 +1,8 @@
1
+ = 2.1.4
2
+
3
+ * Bugs fixed
4
+ * Explicitly require ar_mailer in ar_sendmail because its not getting loaded by the Rails environment for some reason
5
+
1
6
  = 2.1.3
2
7
 
3
8
  * Tests now pass on gem install
@@ -3,6 +3,11 @@ require 'net/smtp'
3
3
  require 'smtp_tls' unless Net::SMTP.instance_methods.include?("enable_starttls_auto")
4
4
  require 'rubygems'
5
5
 
6
+ module ActionMailer; end
7
+ # This should get loaded by the environment later but for some reason fails with
8
+ # the github namespaced gem and succeeds with a local gem build install.
9
+ require 'action_mailer/ar_mailer'
10
+
6
11
  ##
7
12
  # Hack in RSET
8
13
 
@@ -36,14 +41,12 @@ end
36
41
  # * --daemon
37
42
  # * --mailq
38
43
 
39
- module ActionMailer; end
40
-
41
44
  class ActionMailer::ARSendmail
42
45
 
43
46
  ##
44
47
  # The version of ActionMailer::ARSendmail you are running.
45
48
 
46
- VERSION = '2.1.3'
49
+ VERSION = '2.1.4'
47
50
 
48
51
  ##
49
52
  # Maximum number of times authentication will be consecutively retried
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adzap-ar_mailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Hodel