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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc7745cd4b479b454e6e90734d90eea3e0cfbb1e60ff458bfdd9737a8d86a054
4
- data.tar.gz: 4e97f95902d60968987ee44a769b4fee77eca9de8e9a10a7fbd47f90b09b154a
3
+ metadata.gz: 2cae4b6f4ec05353f6f8876e57fcce7bc71693a118b6b8f2cdfa9df1f44b24ef
4
+ data.tar.gz: c269ad10fc7f285eeb883588b775784c074859be9cfe26d636ce7b7d5edca238
5
5
  SHA512:
6
- metadata.gz: f59aebc4c6bc2cd804e0dba9abf9a750d1fca8076b97771f5c484638359fa15d1d1f3a2cfe2891f260792b511162e6bb9fee48192c267002e13fe4f945be3727
7
- data.tar.gz: 98224a32f71170fe6a8aed66ff6ff0f6ccf83260c602c6721648f57ad6cebc580081580c680adeec0a4f0cdcad3383fdd3a27f60c16485555201dc63c2dd626d
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
@@ -2,7 +2,9 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
+ gem 'actionmailer', ENV.fetch('RAILS_TEST_VERSION', '~> 7.0')
6
+
5
7
  group :test do
6
8
  gem 'rspec', '~> 3.7'
7
- gem 'mime-types', '~> 3.1'
9
+ gem 'mime-types', ENV.fetch('MIME_TYPES_TEST_VERSION', '~> 3.1')
8
10
  end
data/README.md CHANGED
@@ -4,7 +4,8 @@
4
4
 
5
5
  # Postmark Rails Gem
6
6
 
7
- [![Build Status](https://travis-ci.org/wildbit/postmark-rails.svg?branch=master)](https://travis-ci.org/wildbit/postmark-rails) [![Code Climate](https://codeclimate.com/github/wildbit/postmark-rails/badges/gpa.svg)](https://codeclimate.com/github/wildbit/postmark-rails)
7
+ [![CircleCI](https://dl.circleci.com/status-badge/img/gh/ActiveCampaign/postmark-rails/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/ActiveCampaign/postmark-rails/tree/main)
8
+ [![Code Climate](https://codeclimate.com/github/ActiveCampaign/postmark-rails/badges/gpa.svg)](https://codeclimate.com/github/ActiveCampaign/postmark-rails)
8
9
  [![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http://www.opensource.org/licenses/MIT)
9
10
  [![Gem Version](https://badge.fury.io/rb/postmark-rails.svg)](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/wildbit/postmark-rails/wiki) for detailed instructions about library features.
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/wildbit/postmark-rails/wiki/Getting-Started).
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/wildbit/postmark-gem) version 1.0 and higher is required.
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
- * Rails 6.0
32
- * Rails 5.0
33
- * Rails 4.x
34
- * Rails 3.x
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/wildbit/postmark-rails/tree/v0.4.2).
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
- ``` ruby
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
- ``` yaml
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
- ``` ruby
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
- ``` yaml
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
- ``` ruby
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/wildbit/postmark-gem/blob/master/README.md) for the [postmark gem](https://github.com/wildbit/postmark-gem).
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
- * Artem Chistyakov
95
- * Petyo Ivanov
96
- * Ilya Sabanin
97
- * Hristo Deshev
98
- * Randy Schmidt
99
- * Chris Williams
100
- * Nicolás Sanguinetti
101
- * Laust Rud Jacobsen (rud)
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/wildbit/postmark-rails/blob/master/LICENSE) file for more information.
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 © 2020 Wildbit LLC.
117
+ Copyright © 2022 ActiveCampaign LLC.
@@ -1,3 +1,3 @@
1
1
  module PostmarkRails
2
- VERSION = '0.20.0'
2
+ VERSION = '0.22.1'
3
3
  end
@@ -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/wildbit/postmark-rails"
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', "~> 1.15")
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@wildbit.com', :to => 'recipient@wildbit.com'
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@wildbit.com',
32
- :to => 'recipient@wildbit.com',
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@wildbit.com',
47
- :to => 'recipient@wildbit.com'
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.20.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: 2020-03-12 00:00:00.000000000 Z
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: '1.15'
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: '1.15'
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: tema@wildbit.com
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/wildbit/postmark-rails
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
- rubyforge_project:
130
- rubygems_version: 2.7.8
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
@@ -1,13 +0,0 @@
1
- #!/bin/bash
2
-
3
- set -eax
4
-
5
- echo "Configuring Ruby and Bundler..."
6
- echo "TRAVIS_RUBY_VERSION=${TRAVIS_RUBY_VERSION}"
7
-
8
- if [[ "$TRAVIS_RUBY_VERSION" < "2.3" ]];
9
- then
10
- gem install bundler -v '< 2'
11
- else
12
- gem install bundler
13
- fi
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
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec :path => '../'
4
-
5
- gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
6
- gem 'actionmailer', '~> 5.0.0'
7
-
8
- group :test do
9
- gem 'rspec', '~> 3.7'
10
- gem 'mime-types', '~> 3.2.2'
11
- end
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec :path => '../'
4
-
5
- gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
6
- gem 'actionmailer', '~> 5.1.0'
7
-
8
- group :test do
9
- gem 'rspec', '~> 3.7'
10
- gem 'mime-types', '~> 3.2.2'
11
- end
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec :path => '../'
4
-
5
- gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
6
- gem 'actionmailer', '~> 5.2.0'
7
-
8
- group :test do
9
- gem 'rspec', '~> 3.7'
10
- gem 'mime-types', '~> 3.2.2'
11
- end
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec :path => '../'
4
-
5
- gem 'postmark', '~> 1.15', path: ENV['POSTMARK_GEM_PATH']
6
- gem 'actionmailer', '~> 6.0.0'
7
-
8
- group :test do
9
- gem 'rspec', '~> 3.7'
10
- gem 'mime-types', '~> 3.2.2'
11
- end