postmark-rails 0.21.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +13 -3
- data/CHANGELOG.rdoc +4 -0
- data/README.md +2 -1
- data/gemfiles/Gemfile.actionmailer-7.0.x +11 -0
- data/lib/postmark-rails/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55fc9e5b2ba40ddca5350b181cbe294d65fb940210a482a950c8f75b6377ad08
|
4
|
+
data.tar.gz: 667285784c91caefd471a6ae3ee426cc7e16edbf8fa66cf2fd0300be8a822a80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16211bd6fecc03fd43991dbfcaf590dbacba23b9f2bbcffffc175e97ddaeb9923db64df0f9d84ad5b7158ccc85efce47d281590a589232e9644927ebc6bd214d
|
7
|
+
data.tar.gz: d32f35b9ecd48856a7d8c0183e06c38e863904d1bd1d11a6e730a44a48c7682882e94acd6074a30b2c1a9b1ce0826ab864d5791b291b566f4c4e279cdaddde01
|
data/.travis.yml
CHANGED
@@ -20,6 +20,7 @@ gemfile:
|
|
20
20
|
- gemfiles/Gemfile.actionmailer-5.1.x
|
21
21
|
- gemfiles/Gemfile.actionmailer-5.2.x
|
22
22
|
- gemfiles/Gemfile.actionmailer-6.0.x
|
23
|
+
- gemfiles/Gemfile.actionmailer-7.0.x
|
23
24
|
matrix:
|
24
25
|
exclude:
|
25
26
|
- rvm: 2.0.0
|
@@ -32,6 +33,8 @@ matrix:
|
|
32
33
|
gemfile: gemfiles/Gemfile.actionmailer-5.2.x
|
33
34
|
- rvm: 2.0.0
|
34
35
|
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
36
|
+
- rvm: 2.0.0
|
37
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
35
38
|
|
36
39
|
- rvm: 2.1.10
|
37
40
|
gemfile: Gemfile
|
@@ -43,20 +46,25 @@ matrix:
|
|
43
46
|
gemfile: gemfiles/Gemfile.actionmailer-5.2.x
|
44
47
|
- rvm: 2.1.10
|
45
48
|
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
46
|
-
|
47
|
-
|
48
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
49
|
+
- rvm: 2.1.10
|
50
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
49
51
|
|
50
52
|
- rvm: 2.3.8
|
51
53
|
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
54
|
+
- rvm: 2.3.8
|
55
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
52
56
|
|
53
57
|
- rvm: 2.4.5
|
54
58
|
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
59
|
+
- rvm: 2.4.5
|
60
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
55
61
|
|
56
62
|
- rvm: 2.5.3
|
57
63
|
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
58
64
|
- rvm: 2.5.3
|
59
65
|
gemfile: gemfiles/Gemfile.actionmailer-3.2.x
|
66
|
+
- rvm: 2.5.3
|
67
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
60
68
|
|
61
69
|
- rvm: 2.6.0
|
62
70
|
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
@@ -68,6 +76,8 @@ matrix:
|
|
68
76
|
gemfile: gemfiles/Gemfile.actionmailer-4.1.x
|
69
77
|
- rvm: 2.6.0
|
70
78
|
gemfile: gemfiles/Gemfile.actionmailer-4.2.x
|
79
|
+
- rvm: 2.6.0
|
80
|
+
gemfile: gemfiles/Gemfile.actionmailer-7.0.x
|
71
81
|
|
72
82
|
- rvm: 2.7.0
|
73
83
|
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
data/CHANGELOG.rdoc
CHANGED
data/README.md
CHANGED
@@ -28,6 +28,7 @@ Also you will need a [postmark gem](https://github.com/wildbit/postmark-gem) ver
|
|
28
28
|
|
29
29
|
### Supported Rails Versions
|
30
30
|
|
31
|
+
* Rails 7.0
|
31
32
|
* Rails 6.0
|
32
33
|
* Rails 5.0
|
33
34
|
* Rails 4.x
|
@@ -46,7 +47,7 @@ gem 'postmark-rails'
|
|
46
47
|
|
47
48
|
|
48
49
|
|
49
|
-
## Rails 6
|
50
|
+
## Rails 6-7
|
50
51
|
Save your Postmark Server API Token to [config/credentials.yml.enc](https://guides.rubyonrails.org/security.html#custom-credentials):
|
51
52
|
|
52
53
|
run `rails secret`, then run `rails credentials:edit` and add:
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postmark-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Petyo Ivanov
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-01-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: actionmailer
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- gemfiles/Gemfile.actionmailer-5.1.x
|
89
89
|
- gemfiles/Gemfile.actionmailer-5.2.x
|
90
90
|
- gemfiles/Gemfile.actionmailer-6.0.x
|
91
|
+
- gemfiles/Gemfile.actionmailer-7.0.x
|
91
92
|
- lib/postmark-rails.rb
|
92
93
|
- lib/postmark-rails/preview_interceptor.rb
|
93
94
|
- lib/postmark-rails/railtie.rb
|
@@ -132,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
133
|
- !ruby/object:Gem::Version
|
133
134
|
version: '0'
|
134
135
|
requirements: []
|
135
|
-
rubygems_version: 3.
|
136
|
+
rubygems_version: 3.3.5
|
136
137
|
signing_key:
|
137
138
|
specification_version: 4
|
138
139
|
summary: Postmark adapter for ActionMailer
|