postmark-rails 0.20.0 → 0.22.1
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/.circleci/config.yml +65 -0
- data/CHANGELOG.rdoc +11 -0
- data/Gemfile +3 -1
- data/README.md +32 -30
- data/lib/postmark-rails/version.rb +1 -1
- data/postmark-rails.gemspec +2 -3
- data/spec/unit/templated_mailer_spec.rb +5 -5
- metadata +19 -24
- data/.travis/setup.sh +0 -13
- data/.travis.yml +0 -83
- data/gemfiles/Gemfile.actionmailer-3.0.x +0 -14
- data/gemfiles/Gemfile.actionmailer-3.2.x +0 -15
- data/gemfiles/Gemfile.actionmailer-4.0.x +0 -12
- data/gemfiles/Gemfile.actionmailer-4.1.x +0 -12
- data/gemfiles/Gemfile.actionmailer-4.2.x +0 -12
- data/gemfiles/Gemfile.actionmailer-5.0.x +0 -11
- data/gemfiles/Gemfile.actionmailer-5.1.x +0 -11
- data/gemfiles/Gemfile.actionmailer-5.2.x +0 -11
- data/gemfiles/Gemfile.actionmailer-6.0.x +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cae4b6f4ec05353f6f8876e57fcce7bc71693a118b6b8f2cdfa9df1f44b24ef
|
|
4
|
+
data.tar.gz: c269ad10fc7f285eeb883588b775784c074859be9cfe26d636ce7b7d5edca238
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07ad01f2a5fa409df9d27a89a816d2eb5dcb049ac46a9ab8eed8d15ffa3499f1c0eb6731e34a7553fbfc12895dad6a94116503930aa5c67b8d80d03af5ec1a15
|
|
7
|
+
data.tar.gz: 69b6b42988ee76c2766c6f46d37005ddd030fb4570b6c418d6617c77573f06e07c6c81153b1a4758d9a320ecc0e4814d2e5991fa965f3fbafefda0cbe7a0e8a6
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
version: 2.1
|
|
2
|
+
|
|
3
|
+
orbs:
|
|
4
|
+
ruby: circleci/ruby@1.8.0
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
parameters:
|
|
9
|
+
ruby_version:
|
|
10
|
+
type: string
|
|
11
|
+
rails_version:
|
|
12
|
+
type: string
|
|
13
|
+
mime_types_version:
|
|
14
|
+
type: string
|
|
15
|
+
default: "~> 3.1"
|
|
16
|
+
docker:
|
|
17
|
+
- image: cimg/ruby:<< parameters.ruby_version >>
|
|
18
|
+
executor: ruby/default
|
|
19
|
+
environment:
|
|
20
|
+
RAILS_TEST_VERSION: << parameters.rails_version >>
|
|
21
|
+
MIME_TYPES_TEST_VERSION: << parameters.mime_types_version >>
|
|
22
|
+
steps:
|
|
23
|
+
- checkout
|
|
24
|
+
- ruby/install-deps:
|
|
25
|
+
bundler-version: 2.2.3
|
|
26
|
+
path: vendor/bundle/rails-<< parameters.rails_version>>
|
|
27
|
+
with-cache: false # requires Gemfile.lock
|
|
28
|
+
- run:
|
|
29
|
+
name: Run tests
|
|
30
|
+
command: bundle exec rake spec
|
|
31
|
+
|
|
32
|
+
workflows:
|
|
33
|
+
tests:
|
|
34
|
+
jobs:
|
|
35
|
+
- build:
|
|
36
|
+
matrix:
|
|
37
|
+
alias: Rails 3
|
|
38
|
+
parameters:
|
|
39
|
+
rails_version: ["~> 3.0", "~> 3.2"]
|
|
40
|
+
ruby_version: ["2.5"]
|
|
41
|
+
mime_types_version: ["1.25.1"]
|
|
42
|
+
- build:
|
|
43
|
+
matrix:
|
|
44
|
+
alias: Rails 4
|
|
45
|
+
parameters:
|
|
46
|
+
rails_version: ["~> 4.0", "~> 4.1", "~> 4.2"]
|
|
47
|
+
ruby_version: ["2.5"]
|
|
48
|
+
- build:
|
|
49
|
+
matrix:
|
|
50
|
+
alias: Rails 5
|
|
51
|
+
parameters:
|
|
52
|
+
rails_version: ["~> 5.0", "~> 5.1", "~> 5.2"]
|
|
53
|
+
ruby_version: ["2.5", "2.6", "2.7"]
|
|
54
|
+
- build:
|
|
55
|
+
matrix:
|
|
56
|
+
alias: Rails 6
|
|
57
|
+
parameters:
|
|
58
|
+
rails_version: ["~> 6.0"]
|
|
59
|
+
ruby_version: ["2.5", "2.6", "2.7"]
|
|
60
|
+
- build:
|
|
61
|
+
matrix:
|
|
62
|
+
alias: Rails 7
|
|
63
|
+
parameters:
|
|
64
|
+
rails_version: ["~> 7.0"]
|
|
65
|
+
ruby_version: ["2.7"]
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
= Changelog
|
|
2
2
|
|
|
3
|
+
== 0.22.1
|
|
4
|
+
* Migrated to ActiveCampaign
|
|
5
|
+
|
|
6
|
+
== 0.22.0
|
|
7
|
+
|
|
8
|
+
* Added support for Rails 7
|
|
9
|
+
|
|
10
|
+
== 0.21.0
|
|
11
|
+
|
|
12
|
+
* Update minimum postmark gem dependency to avoid use of TLS v1
|
|
13
|
+
|
|
3
14
|
== 0.20.0
|
|
4
15
|
|
|
5
16
|
* Update the postmark gem dependency to 1.x
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
# Postmark Rails Gem
|
|
6
6
|
|
|
7
|
-
[](https://dl.circleci.com/status-badge/redirect/gh/ActiveCampaign/postmark-rails/tree/main)
|
|
8
|
+
[](https://codeclimate.com/github/ActiveCampaign/postmark-rails)
|
|
8
9
|
[](http://www.opensource.org/licenses/MIT)
|
|
9
10
|
[](https://badge.fury.io/rb/postmark-rails)
|
|
10
11
|
|
|
@@ -16,73 +17,74 @@ The gem has been created for fast implementation and fully supports all of [Post
|
|
|
16
17
|
|
|
17
18
|
## Usage
|
|
18
19
|
|
|
19
|
-
Please see the [wiki](https://github.com/
|
|
20
|
+
Please see the [wiki](https://github.com/ActiveCampaign/postmark-rails/wiki) for detailed instructions about library features.
|
|
20
21
|
For details about Postmark API in general, please check out [Postmark developer docs](https://postmarkapp.com/developer).
|
|
21
22
|
|
|
22
23
|
## Requirements
|
|
23
24
|
|
|
24
25
|
You will need a Postmark account, server and sender signature (or verified domain) set up to use it.
|
|
25
|
-
For details about setup, check out [wiki pages](https://github.com/
|
|
26
|
+
For details about setup, check out [wiki pages](https://github.com/ActiveCampaign/postmark-rails/wiki/Getting-Started).
|
|
26
27
|
|
|
27
|
-
Also you will need a [postmark gem](https://github.com/
|
|
28
|
+
Also you will need a [postmark gem](https://github.com/ActiveCampaign/postmark-gem) version 1.0 and higher is required.
|
|
28
29
|
|
|
29
30
|
### Supported Rails Versions
|
|
30
31
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
- Rails 7.0
|
|
33
|
+
- Rails 6.0
|
|
34
|
+
- Rails 5.0
|
|
35
|
+
- Rails 4.x
|
|
36
|
+
- Rails 3.x
|
|
35
37
|
|
|
36
|
-
For Rails 2.3 please take a look at [version 0.4](https://github.com/
|
|
38
|
+
For Rails 2.3 please take a look at [version 0.4](https://github.com/ActiveCampaign/postmark-rails/tree/v0.4.2).
|
|
37
39
|
It may miss some new features, but receives all required bug fixes and other support if needed.
|
|
38
40
|
|
|
39
41
|
## Installation
|
|
40
42
|
|
|
41
43
|
Add `postmark-rails` to your Gemfile and run `bundle install`.
|
|
42
44
|
|
|
43
|
-
```
|
|
45
|
+
```ruby
|
|
44
46
|
gem 'postmark-rails'
|
|
45
47
|
```
|
|
46
48
|
|
|
49
|
+
## Rails 6-7
|
|
47
50
|
|
|
48
|
-
|
|
49
|
-
## Rails 6
|
|
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:
|
|
53
54
|
|
|
54
|
-
```
|
|
55
|
+
```yaml
|
|
55
56
|
postmark_api_token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
56
57
|
```
|
|
58
|
+
|
|
57
59
|
Set Postmark as your preferred mail delivery method via `config/application.rb`:
|
|
58
60
|
|
|
59
|
-
```
|
|
61
|
+
```ruby
|
|
60
62
|
config.action_mailer.delivery_method = :postmark
|
|
61
63
|
config.action_mailer.postmark_settings = { api_token: Rails.application.credentials.postmark_api_token }
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
## Rails 3-5
|
|
67
|
+
|
|
65
68
|
Save your Postmark Server API token to [config/secrets.yml](http://guides.rubyonrails.org/4_1_release_notes.html#config-secrets-yml).
|
|
66
69
|
|
|
67
|
-
```
|
|
70
|
+
```yaml
|
|
68
71
|
postmark_api_token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
69
72
|
```
|
|
70
73
|
|
|
71
74
|
Set Postmark as your preferred mail delivery method via `config/application.rb`:
|
|
72
75
|
|
|
73
|
-
```
|
|
76
|
+
```ruby
|
|
74
77
|
config.action_mailer.delivery_method = :postmark
|
|
75
78
|
config.action_mailer.postmark_settings = { :api_token => Rails.application.secrets.postmark_api_token }
|
|
76
79
|
```
|
|
77
80
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
**Note**: The `postmark_settings` hash can contain [any options](https://github.com/wildbit/postmark-gem#communicating-with-the-api) supported by `Postmark::ApiClient`.
|
|
81
|
+
---
|
|
81
82
|
|
|
83
|
+
**Note**: The `postmark_settings` hash can contain [any options](https://github.com/ActiveCampaign/postmark-gem#communicating-with-the-api) supported by `Postmark::ApiClient`.
|
|
82
84
|
|
|
83
85
|
### Additional information
|
|
84
86
|
|
|
85
|
-
Looking for the advanced usage examples? Check out [the documentation](https://github.com/
|
|
87
|
+
Looking for the advanced usage examples? Check out [the documentation](https://github.com/ActiveCampaign/postmark-gem/blob/main/README.md) for the [postmark gem](https://github.com/ActiveCampaign/postmark-gem).
|
|
86
88
|
The `postmark-rails` gem is built on top of it, so you can benefit from all it's features.
|
|
87
89
|
|
|
88
90
|
## Note on Patches/Pull Requests
|
|
@@ -91,14 +93,14 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) file for details.
|
|
|
91
93
|
|
|
92
94
|
## Authors & Contributors
|
|
93
95
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
96
|
+
- Artem Chistyakov
|
|
97
|
+
- Petyo Ivanov
|
|
98
|
+
- Ilya Sabanin
|
|
99
|
+
- Hristo Deshev
|
|
100
|
+
- Randy Schmidt
|
|
101
|
+
- Chris Williams
|
|
102
|
+
- Nicolás Sanguinetti
|
|
103
|
+
- Laust Rud Jacobsen (rud)
|
|
102
104
|
|
|
103
105
|
## Issues & Comments
|
|
104
106
|
|
|
@@ -108,8 +110,8 @@ Please leave all comments, bugs, requests and issues on the Issues page.
|
|
|
108
110
|
## License
|
|
109
111
|
|
|
110
112
|
The Postmark Rails gem is licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php) license.
|
|
111
|
-
Refer to the [LICENSE](https://github.com/
|
|
113
|
+
Refer to the [LICENSE](https://github.com/ActiveCampaign/postmark-rails/blob/main/LICENSE) file for more information.
|
|
112
114
|
|
|
113
115
|
## Copyright
|
|
114
116
|
|
|
115
|
-
Copyright ©
|
|
117
|
+
Copyright © 2022 ActiveCampaign LLC.
|
data/postmark-rails.gemspec
CHANGED
|
@@ -6,12 +6,11 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.version = PostmarkRails::VERSION
|
|
7
7
|
s.authors = ["Petyo Ivanov", "Ilya Sabanin", "Artem Chistyakov"]
|
|
8
8
|
s.description = %q{The Postmark Rails Gem is a drop-in plug-in for ActionMailer to send emails via Postmark, an email delivery service for web apps.}
|
|
9
|
-
s.email = %q{tema@wildbit.com}
|
|
10
9
|
s.homepage = %q{http://postmarkapp.com}
|
|
11
10
|
s.summary = %q{Postmark adapter for ActionMailer}
|
|
12
11
|
|
|
13
12
|
s.metadata = {
|
|
14
|
-
"source_code_uri" => "https://github.com/
|
|
13
|
+
"source_code_uri" => "https://github.com/ActiveCampaign/postmark-rails"
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
s.extra_rdoc_files = [
|
|
@@ -21,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
21
20
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
22
21
|
|
|
23
22
|
s.add_dependency('actionmailer', ">= 3.0.0")
|
|
24
|
-
s.add_dependency('postmark',
|
|
23
|
+
s.add_dependency('postmark', '>= 1.21.3', '< 2.0')
|
|
25
24
|
|
|
26
25
|
s.add_development_dependency("rake")
|
|
27
26
|
|
|
@@ -16,7 +16,7 @@ RSpec.describe PostmarkRails::TemplatedMailer do
|
|
|
16
16
|
let(:mailer) do
|
|
17
17
|
make_mailer(described_class) do
|
|
18
18
|
def test_message
|
|
19
|
-
mail :from => 'sender@
|
|
19
|
+
mail :from => 'sender@postmarkapp.com', :to => 'recipient@postmarkapp.com'
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
22
|
end
|
|
@@ -28,8 +28,8 @@ RSpec.describe PostmarkRails::TemplatedMailer do
|
|
|
28
28
|
let(:mailer) do
|
|
29
29
|
make_mailer(described_class) do
|
|
30
30
|
def test_message
|
|
31
|
-
mail :from => 'sender@
|
|
32
|
-
:to => 'recipient@
|
|
31
|
+
mail :from => 'sender@postmarkapp.com',
|
|
32
|
+
:to => 'recipient@postmarkapp.com',
|
|
33
33
|
:postmark_template_alias => 'custom_template'
|
|
34
34
|
end
|
|
35
35
|
end
|
|
@@ -43,8 +43,8 @@ RSpec.describe PostmarkRails::TemplatedMailer do
|
|
|
43
43
|
make_mailer(described_class) do
|
|
44
44
|
def test_message
|
|
45
45
|
self.template_model = { :foo => 'bar' }
|
|
46
|
-
mail :from => 'sender@
|
|
47
|
-
:to => 'recipient@
|
|
46
|
+
mail :from => 'sender@postmarkapp.com',
|
|
47
|
+
:to => 'recipient@postmarkapp.com'
|
|
48
48
|
end
|
|
49
49
|
end
|
|
50
50
|
end
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petyo Ivanov
|
|
8
8
|
- Ilya Sabanin
|
|
9
9
|
- Artem Chistyakov
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2022-06-29 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: actionmailer
|
|
@@ -30,16 +30,22 @@ dependencies:
|
|
|
30
30
|
name: postmark
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
|
-
- - "
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 1.21.3
|
|
36
|
+
- - "<"
|
|
34
37
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: '
|
|
38
|
+
version: '2.0'
|
|
36
39
|
type: :runtime
|
|
37
40
|
prerelease: false
|
|
38
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
42
|
requirements:
|
|
40
|
-
- - "
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 1.21.3
|
|
46
|
+
- - "<"
|
|
41
47
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: '
|
|
48
|
+
version: '2.0'
|
|
43
49
|
- !ruby/object:Gem::Dependency
|
|
44
50
|
name: rake
|
|
45
51
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -56,32 +62,22 @@ dependencies:
|
|
|
56
62
|
version: '0'
|
|
57
63
|
description: The Postmark Rails Gem is a drop-in plug-in for ActionMailer to send
|
|
58
64
|
emails via Postmark, an email delivery service for web apps.
|
|
59
|
-
email:
|
|
65
|
+
email:
|
|
60
66
|
executables: []
|
|
61
67
|
extensions: []
|
|
62
68
|
extra_rdoc_files:
|
|
63
69
|
- LICENSE
|
|
64
70
|
- README.md
|
|
65
71
|
files:
|
|
72
|
+
- ".circleci/config.yml"
|
|
66
73
|
- ".document"
|
|
67
74
|
- ".gitignore"
|
|
68
|
-
- ".travis.yml"
|
|
69
|
-
- ".travis/setup.sh"
|
|
70
75
|
- CHANGELOG.rdoc
|
|
71
76
|
- CONTRIBUTING.md
|
|
72
77
|
- Gemfile
|
|
73
78
|
- LICENSE
|
|
74
79
|
- README.md
|
|
75
80
|
- Rakefile
|
|
76
|
-
- gemfiles/Gemfile.actionmailer-3.0.x
|
|
77
|
-
- gemfiles/Gemfile.actionmailer-3.2.x
|
|
78
|
-
- gemfiles/Gemfile.actionmailer-4.0.x
|
|
79
|
-
- gemfiles/Gemfile.actionmailer-4.1.x
|
|
80
|
-
- gemfiles/Gemfile.actionmailer-4.2.x
|
|
81
|
-
- gemfiles/Gemfile.actionmailer-5.0.x
|
|
82
|
-
- gemfiles/Gemfile.actionmailer-5.1.x
|
|
83
|
-
- gemfiles/Gemfile.actionmailer-5.2.x
|
|
84
|
-
- gemfiles/Gemfile.actionmailer-6.0.x
|
|
85
81
|
- lib/postmark-rails.rb
|
|
86
82
|
- lib/postmark-rails/preview_interceptor.rb
|
|
87
83
|
- lib/postmark-rails/railtie.rb
|
|
@@ -109,8 +105,8 @@ files:
|
|
|
109
105
|
homepage: http://postmarkapp.com
|
|
110
106
|
licenses: []
|
|
111
107
|
metadata:
|
|
112
|
-
source_code_uri: https://github.com/
|
|
113
|
-
post_install_message:
|
|
108
|
+
source_code_uri: https://github.com/ActiveCampaign/postmark-rails
|
|
109
|
+
post_install_message:
|
|
114
110
|
rdoc_options:
|
|
115
111
|
- "--charset=UTF-8"
|
|
116
112
|
require_paths:
|
|
@@ -126,9 +122,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
122
|
- !ruby/object:Gem::Version
|
|
127
123
|
version: '0'
|
|
128
124
|
requirements: []
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
signing_key:
|
|
125
|
+
rubygems_version: 3.0.8
|
|
126
|
+
signing_key:
|
|
132
127
|
specification_version: 4
|
|
133
128
|
summary: Postmark adapter for ActionMailer
|
|
134
129
|
test_files:
|
data/.travis/setup.sh
DELETED
data/.travis.yml
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
language: ruby
|
|
2
|
-
rvm:
|
|
3
|
-
- 2.0.0
|
|
4
|
-
- 2.1.10
|
|
5
|
-
- 2.2.10
|
|
6
|
-
- 2.3.8
|
|
7
|
-
- 2.4.5
|
|
8
|
-
- 2.5.3
|
|
9
|
-
- 2.6.0
|
|
10
|
-
- 2.7.0
|
|
11
|
-
script: bundle exec rake spec
|
|
12
|
-
gemfile:
|
|
13
|
-
- Gemfile
|
|
14
|
-
- gemfiles/Gemfile.actionmailer-3.0.x
|
|
15
|
-
- gemfiles/Gemfile.actionmailer-3.2.x
|
|
16
|
-
- gemfiles/Gemfile.actionmailer-4.0.x
|
|
17
|
-
- gemfiles/Gemfile.actionmailer-4.1.x
|
|
18
|
-
- gemfiles/Gemfile.actionmailer-4.2.x
|
|
19
|
-
- gemfiles/Gemfile.actionmailer-5.0.x
|
|
20
|
-
- gemfiles/Gemfile.actionmailer-5.1.x
|
|
21
|
-
- gemfiles/Gemfile.actionmailer-5.2.x
|
|
22
|
-
- gemfiles/Gemfile.actionmailer-6.0.x
|
|
23
|
-
matrix:
|
|
24
|
-
exclude:
|
|
25
|
-
- rvm: 2.0.0
|
|
26
|
-
gemfile: Gemfile
|
|
27
|
-
- rvm: 2.0.0
|
|
28
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.0.x
|
|
29
|
-
- rvm: 2.0.0
|
|
30
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.1.x
|
|
31
|
-
- rvm: 2.0.0
|
|
32
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.2.x
|
|
33
|
-
- rvm: 2.0.0
|
|
34
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
|
35
|
-
|
|
36
|
-
- rvm: 2.1.10
|
|
37
|
-
gemfile: Gemfile
|
|
38
|
-
- rvm: 2.1.10
|
|
39
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.0.x
|
|
40
|
-
- rvm: 2.1.10
|
|
41
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.1.x
|
|
42
|
-
- rvm: 2.1.10
|
|
43
|
-
gemfile: gemfiles/Gemfile.actionmailer-5.2.x
|
|
44
|
-
- rvm: 2.1.10
|
|
45
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
|
46
|
-
|
|
47
|
-
- rvm: 2.2.10
|
|
48
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
|
49
|
-
|
|
50
|
-
- rvm: 2.3.8
|
|
51
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
|
52
|
-
|
|
53
|
-
- rvm: 2.4.5
|
|
54
|
-
gemfile: gemfiles/Gemfile.actionmailer-6.0.x
|
|
55
|
-
|
|
56
|
-
- rvm: 2.5.3
|
|
57
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
|
58
|
-
- rvm: 2.5.3
|
|
59
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.2.x
|
|
60
|
-
|
|
61
|
-
- rvm: 2.6.0
|
|
62
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
|
63
|
-
- rvm: 2.6.0
|
|
64
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.2.x
|
|
65
|
-
- rvm: 2.6.0
|
|
66
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.0.x
|
|
67
|
-
- rvm: 2.6.0
|
|
68
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.1.x
|
|
69
|
-
- rvm: 2.6.0
|
|
70
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.2.x
|
|
71
|
-
|
|
72
|
-
- rvm: 2.7.0
|
|
73
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.0.x
|
|
74
|
-
- rvm: 2.7.0
|
|
75
|
-
gemfile: gemfiles/Gemfile.actionmailer-3.2.x
|
|
76
|
-
- rvm: 2.7.0
|
|
77
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.0.x
|
|
78
|
-
- rvm: 2.7.0
|
|
79
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.1.x
|
|
80
|
-
- rvm: 2.7.0
|
|
81
|
-
gemfile: gemfiles/Gemfile.actionmailer-4.2.x
|
|
82
|
-
before_install:
|
|
83
|
-
- .travis/setup.sh
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gemspec :path => '../'
|
|
4
|
-
|
|
5
|
-
gem 'json', '< 2.0.0'
|
|
6
|
-
gem 'rake', '< 11.0.0'
|
|
7
|
-
gem 'postmark', '~> 1.15', :path => ENV['POSTMARK_GEM_PATH']
|
|
8
|
-
gem 'actionmailer', '~> 3.0.0'
|
|
9
|
-
gem 'rack-cache', '~> 1.2.0'
|
|
10
|
-
|
|
11
|
-
group :test do
|
|
12
|
-
gem 'rspec', '~> 3.7'
|
|
13
|
-
gem 'mime-types', '~> 1.25.1'
|
|
14
|
-
end
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gemspec :path => '../'
|
|
4
|
-
|
|
5
|
-
gem 'json', '< 2.0.0'
|
|
6
|
-
gem 'rake', '< 11.0.0'
|
|
7
|
-
gem 'postmark', '~> 1.15', :path => ENV['POSTMARK_GEM_PATH']
|
|
8
|
-
gem 'actionmailer', :github => 'rails', :branch => '3-2-stable'
|
|
9
|
-
gem 'i18n', '~> 0.6.0'
|
|
10
|
-
gem 'rack-cache', '~> 1.2.0'
|
|
11
|
-
|
|
12
|
-
group :test do
|
|
13
|
-
gem 'rspec', '~> 3.7'
|
|
14
|
-
gem 'mime-types', '~> 1.25.1'
|
|
15
|
-
end
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gemspec :path => '../'
|
|
4
|
-
|
|
5
|
-
gem 'json', '< 2.0.0'
|
|
6
|
-
gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
|
|
7
|
-
gem 'actionmailer', '~> 4.0.0'
|
|
8
|
-
|
|
9
|
-
group :test do
|
|
10
|
-
gem 'rspec', '~> 3.7'
|
|
11
|
-
gem 'mime-types', '~> 1.25.1'
|
|
12
|
-
end
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gemspec :path => '../'
|
|
4
|
-
|
|
5
|
-
gem 'json', '< 2.0.0'
|
|
6
|
-
gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
|
|
7
|
-
gem 'actionmailer', '~> 4.1.0'
|
|
8
|
-
|
|
9
|
-
group :test do
|
|
10
|
-
gem 'rspec', '~> 3.7'
|
|
11
|
-
gem 'mime-types', '~> 1.25.1'
|
|
12
|
-
end
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gemspec :path => '../'
|
|
4
|
-
|
|
5
|
-
gem 'json', '< 2.0.0'
|
|
6
|
-
gem 'postmark', '~> 1.15.0', path: ENV['POSTMARK_GEM_PATH']
|
|
7
|
-
gem 'actionmailer', '~> 4.2.0'
|
|
8
|
-
|
|
9
|
-
group :test do
|
|
10
|
-
gem 'rspec', '~> 3.7'
|
|
11
|
-
gem 'mime-types', '~> 1.25.1'
|
|
12
|
-
end
|