mail_plugger 1.0.0.beta1 → 1.0.0.rc1
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 +4 -4
- data/.rubocop.yml +3 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +8 -8
- data/README.md +16 -3
- data/docs/usage_in_ruby_on_rails.md +4 -4
- data/docs/usage_in_script_or_console.md +9 -9
- data/docs/usage_of_attachments_in_ruby_on_rails.md +110 -0
- data/docs/usage_of_aws_ses_in_ruby_on_rails.md +136 -0
- data/docs/usage_of_delivery_method.md +104 -0
- data/docs/usage_of_mailgun_in_ruby_on_rails.md +58 -0
- data/docs/usage_of_mandrill_in_ruby_on_rails.md +104 -0
- data/docs/usage_of_more_delivery_system_in_ruby_on_rails.md +332 -0
- data/docs/usage_of_one_delivery_system_with_more_send_methods_in_ruby_on_rails.md +119 -0
- data/docs/usage_of_plug_in_method.md +62 -0
- data/docs/usage_of_postmark_in_ruby_on_rails.md +59 -0
- data/docs/usage_of_secial_options_in_ruby_on_rails.md +90 -0
- data/docs/usage_of_sendgrid_in_ruby_on_rails.md +82 -0
- data/docs/usage_of_sparkpost_in_ruby_on_rails.md +142 -0
- data/gemfiles/mail_2.6.gemfile.lock +8 -8
- data/gemfiles/mail_2.7.0.gemfile.lock +8 -8
- data/gemfiles/mail_2.7.gemfile.lock +8 -8
- data/lib/mail_plugger.rb +36 -26
- data/lib/mail_plugger/delivery_method.rb +42 -5
- data/lib/mail_plugger/mail_helper.rb +41 -18
- data/lib/mail_plugger/version.rb +1 -1
- data/mail_plugger.gemspec +4 -3
- metadata +18 -6
data/lib/mail_plugger/version.rb
CHANGED
data/mail_plugger.gemspec
CHANGED
@@ -9,8 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ['sysqa@yahoo.com']
|
10
10
|
|
11
11
|
spec.summary = 'Plug in the required mailer API(s) with MailPlugger.'
|
12
|
-
spec.description = 'Delivery Method to send emails via
|
13
|
-
'
|
12
|
+
spec.description = 'Delivery Method to send emails via API(s). We can ' \
|
13
|
+
'use this Delivery Method with Ruby on Rails ' \
|
14
|
+
'ActionMailer or other solutions.'
|
14
15
|
spec.homepage = 'https://github.com/norbertszivos/mail_plugger'
|
15
16
|
spec.license = 'MIT'
|
16
17
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
|
@@ -21,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
21
22
|
spec.metadata['source_code_uri'] =
|
22
23
|
'https://github.com/norbertszivos/mail_plugger'
|
23
24
|
spec.metadata['changelog_uri'] =
|
24
|
-
'https://github.com/norbertszivos/mail_plugger/CHANGELOG.md'
|
25
|
+
'https://github.com/norbertszivos/mail_plugger/blob/main/CHANGELOG.md'
|
25
26
|
|
26
27
|
# Specify which files should be added to the gem when it is released.
|
27
28
|
# The `git ls-files -z` loads the files in the RubyGem
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mail_plugger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Norbert Szivós
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mail
|
@@ -24,8 +24,8 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '2.5'
|
27
|
-
description: Delivery Method to send emails via
|
28
|
-
ActionMailer.
|
27
|
+
description: Delivery Method to send emails via API(s). We can use this Delivery Method
|
28
|
+
with Ruby on Rails ActionMailer or other solutions.
|
29
29
|
email:
|
30
30
|
- sysqa@yahoo.com
|
31
31
|
executables: []
|
@@ -51,6 +51,18 @@ files:
|
|
51
51
|
- bin/setup
|
52
52
|
- docs/usage_in_ruby_on_rails.md
|
53
53
|
- docs/usage_in_script_or_console.md
|
54
|
+
- docs/usage_of_attachments_in_ruby_on_rails.md
|
55
|
+
- docs/usage_of_aws_ses_in_ruby_on_rails.md
|
56
|
+
- docs/usage_of_delivery_method.md
|
57
|
+
- docs/usage_of_mailgun_in_ruby_on_rails.md
|
58
|
+
- docs/usage_of_mandrill_in_ruby_on_rails.md
|
59
|
+
- docs/usage_of_more_delivery_system_in_ruby_on_rails.md
|
60
|
+
- docs/usage_of_one_delivery_system_with_more_send_methods_in_ruby_on_rails.md
|
61
|
+
- docs/usage_of_plug_in_method.md
|
62
|
+
- docs/usage_of_postmark_in_ruby_on_rails.md
|
63
|
+
- docs/usage_of_secial_options_in_ruby_on_rails.md
|
64
|
+
- docs/usage_of_sendgrid_in_ruby_on_rails.md
|
65
|
+
- docs/usage_of_sparkpost_in_ruby_on_rails.md
|
54
66
|
- gemfiles/.bundle/config
|
55
67
|
- gemfiles/mail_2.6.gemfile
|
56
68
|
- gemfiles/mail_2.6.gemfile.lock
|
@@ -72,7 +84,7 @@ licenses:
|
|
72
84
|
metadata:
|
73
85
|
homepage_uri: https://github.com/norbertszivos/mail_plugger
|
74
86
|
source_code_uri: https://github.com/norbertszivos/mail_plugger
|
75
|
-
changelog_uri: https://github.com/norbertszivos/mail_plugger/CHANGELOG.md
|
87
|
+
changelog_uri: https://github.com/norbertszivos/mail_plugger/blob/main/CHANGELOG.md
|
76
88
|
post_install_message:
|
77
89
|
rdoc_options: []
|
78
90
|
require_paths:
|
@@ -88,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
100
|
- !ruby/object:Gem::Version
|
89
101
|
version: 1.3.1
|
90
102
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
103
|
+
rubygems_version: 3.1.4
|
92
104
|
signing_key:
|
93
105
|
specification_version: 4
|
94
106
|
summary: Plug in the required mailer API(s) with MailPlugger.
|