mail_plugger 1.4.0 → 1.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +2 -2
- data/lib/mail_plugger/version.rb +1 -1
- data/lib/mail_plugger.rb +1 -1
- metadata +19 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 174f3fa6b0708e5e3635df906ef07df145dbfecade90452bae98d2bfef912f5a
|
|
4
|
+
data.tar.gz: 58c9aa8b5a2dc5d6552a02d79775d45bfbea6bb770fa4943b97986d4c58ad485
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1de355d0eff072fcd5ac56b99d258143a7d52eb7edfd23851335c8089ffab8cde18fb86fb6c952828b8529f573778216c10118043322df703311b491605c0779
|
|
7
|
+
data.tar.gz: 46c0e544614420ade838a70b01031fbd2cf3698c98c7666869638bbfb42622dbf9ea47261a013bbb461e3ba4bffc5497ece8bc222da55bd65479bede4d127edc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## 1.5.0 (2021-12-31)
|
|
4
|
+
|
|
5
|
+
### Changes
|
|
6
|
+
|
|
7
|
+
* Add Ruby 3.1 support.
|
|
8
|
+
* Drop Ruby 2.5 support.
|
|
9
|
+
* Require MFA on RubyGems.
|
|
10
|
+
* Update bundler and gems.
|
|
11
|
+
* Fix typo in the README.md.
|
|
12
|
+
* Replace Travis with GitHub Actions.
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 1.4.0 (2021-06-08)
|
|
4
16
|
|
|
5
17
|
### New features
|
data/README.md
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
[](https://badge.fury.io/rb/mail_plugger)
|
|
4
4
|
[](https://github.com/MailToolbox/mail_plugger/blob/main/LICENSE.txt)
|
|
5
5
|
[](https://github.com/rubocop-hq/rubocop)
|
|
6
|
-
[](https://github.com/MailToolbox/mail_plugger/actions/workflows/mail_plugger_ci.yml)
|
|
7
7
|
[](https://codeclimate.com/github/MailToolbox/mail_plugger/maintainability)
|
|
8
8
|
[](https://codeclimate.com/github/MailToolbox/mail_plugger/test_coverage)
|
|
9
9
|
|
|
10
|
-
**MailPlugger** helps you to use different mail providers' **SMTP** and **API**. You can use any SMTPs and APIs which one would like to use. It allows you to send different emails with different SMTPs and APIs. Also it can help to move between providers, load
|
|
10
|
+
**MailPlugger** helps you to use different mail providers' **SMTP** and **API**. You can use any SMTPs and APIs which one would like to use. It allows you to send different emails with different SMTPs and APIs. Also it can help to move between providers, load balancing or cost management.
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
data/lib/mail_plugger/version.rb
CHANGED
data/lib/mail_plugger.rb
CHANGED
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.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Norbert Szivós
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mail
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '2.5'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: net-smtp
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0.3'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0.3'
|
|
27
41
|
description: Delivery Method to send emails via SMTP(s) and API(s). We can use this
|
|
28
42
|
Delivery Method with Ruby on Rails ActionMailer or other solutions.
|
|
29
43
|
email:
|
|
@@ -54,6 +68,7 @@ metadata:
|
|
|
54
68
|
changelog_uri: https://github.com/MailToolbox/mail_plugger/blob/main/CHANGELOG.md
|
|
55
69
|
bug_tracker_uri: https://github.com/MailToolbox/mail_plugger/issues
|
|
56
70
|
documentation_uri: https://rubydoc.info/gems/mail_plugger
|
|
71
|
+
rubygems_mfa_required: 'true'
|
|
57
72
|
post_install_message:
|
|
58
73
|
rdoc_options: []
|
|
59
74
|
require_paths:
|
|
@@ -62,14 +77,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
62
77
|
requirements:
|
|
63
78
|
- - ">="
|
|
64
79
|
- !ruby/object:Gem::Version
|
|
65
|
-
version: 2.
|
|
80
|
+
version: 2.6.0
|
|
66
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
82
|
requirements:
|
|
68
83
|
- - ">="
|
|
69
84
|
- !ruby/object:Gem::Version
|
|
70
85
|
version: '0'
|
|
71
86
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
87
|
+
rubygems_version: 3.3.3
|
|
73
88
|
signing_key:
|
|
74
89
|
specification_version: 4
|
|
75
90
|
summary: Plug in required mailer SMTP(s) and API(s) with MailPlugger.
|