actionmailer-balancer 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6da0980fa3a7f0a48467cd26ae1aa5a49338dd76e615f7e3b700d317759101d0
4
+ data.tar.gz: 541c9afcf9e521eb11e524c4964a4dccda4e072ca242d60cba1f6b2aa63db40b
5
+ SHA512:
6
+ metadata.gz: ec87916c317e2195e64b5511baa888dcbdd375cdad9deeea8aa5065287b664da5ddded34cb71bc2029a51294b1dc11be4ce0ea84e16acde8159f356214e246cc
7
+ data.tar.gz: '0879b7fd0f5ec6ab73dcea65957add188a68b725a23828a7f25bfd16f476a2603a9bd527536c6d188d086ca61431717158132c3394162f70ef4a5c2f707c7d1b'
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,28 @@
1
+ require: rubocop-rspec
2
+
3
+ AllCops:
4
+ TargetRubyVersion: 2.7
5
+ NewCops: enable
6
+
7
+ Layout/LineLength:
8
+ Max: 120
9
+
10
+ Naming/MethodParameterName:
11
+ MinNameLength: 2
12
+
13
+ RSpec/MultipleExpectations:
14
+ Max: 4
15
+
16
+ RSpec/NestedGroups:
17
+ Max: 4
18
+
19
+ Style/Documentation:
20
+ Enabled: false
21
+
22
+ Style/StringLiterals:
23
+ Enabled: true
24
+ EnforcedStyle: single_quotes
25
+
26
+ Style/StringLiteralsInInterpolation:
27
+ Enabled: true
28
+ EnforcedStyle: double_quotes
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## [1.0.0] - 2022-10-07
2
+
3
+ - Initial release
@@ -0,0 +1,81 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or advances of any kind
22
+ * Trolling, insulting or derogatory comments, and personal or political attacks
23
+ * Public or private harassment
24
+ * Publishing others' private information, such as a physical or email address, without their explicit permission
25
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
26
+
27
+ ## Enforcement Responsibilities
28
+
29
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
30
+
31
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
32
+
33
+ ## Scope
34
+
35
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
36
+
37
+ ## Enforcement
38
+
39
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at support@mailtrap.io. All complaints will be reviewed and investigated promptly and fairly.
40
+
41
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
42
+
43
+ ## Enforcement Guidelines
44
+
45
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
46
+
47
+ ### 1. Correction
48
+
49
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
50
+
51
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
52
+
53
+ ### 2. Warning
54
+
55
+ **Community Impact**: A violation through a single incident or series of actions.
56
+
57
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
58
+
59
+ ### 3. Temporary Ban
60
+
61
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
62
+
63
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
64
+
65
+ ### 4. Permanent Ban
66
+
67
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
68
+
69
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
70
+
71
+ ## Attribution
72
+
73
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
74
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
75
+
76
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
77
+
78
+ [homepage]: https://www.contributor-covenant.org
79
+
80
+ For answers to common questions about this code of conduct, see the FAQ at
81
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ gem 'mail'
8
+ gem 'rake', '~> 13.0'
9
+ gem 'rspec', '~> 3.0'
10
+ gem 'rubocop', '~> 1.21'
11
+ gem 'rubocop-rspec', require: false
data/Gemfile.lock ADDED
@@ -0,0 +1,133 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ actionmailer-balancer (1.0.0)
5
+ actionmailer (> 4.0, < 8.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (7.0.4)
11
+ actionpack (= 7.0.4)
12
+ actionview (= 7.0.4)
13
+ activejob (= 7.0.4)
14
+ activesupport (= 7.0.4)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ net-imap
17
+ net-pop
18
+ net-smtp
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (7.0.4)
21
+ actionview (= 7.0.4)
22
+ activesupport (= 7.0.4)
23
+ rack (~> 2.0, >= 2.2.0)
24
+ rack-test (>= 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
27
+ actionview (7.0.4)
28
+ activesupport (= 7.0.4)
29
+ builder (~> 3.1)
30
+ erubi (~> 1.4)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
33
+ activejob (7.0.4)
34
+ activesupport (= 7.0.4)
35
+ globalid (>= 0.3.6)
36
+ activesupport (7.0.4)
37
+ concurrent-ruby (~> 1.0, >= 1.0.2)
38
+ i18n (>= 1.6, < 2)
39
+ minitest (>= 5.1)
40
+ tzinfo (~> 2.0)
41
+ ast (2.4.2)
42
+ builder (3.2.4)
43
+ concurrent-ruby (1.1.10)
44
+ crass (1.0.6)
45
+ diff-lcs (1.5.0)
46
+ erubi (1.11.0)
47
+ globalid (1.0.0)
48
+ activesupport (>= 5.0)
49
+ i18n (1.12.0)
50
+ concurrent-ruby (~> 1.0)
51
+ json (2.6.2)
52
+ loofah (2.19.0)
53
+ crass (~> 1.0.2)
54
+ nokogiri (>= 1.5.9)
55
+ mail (2.7.1)
56
+ mini_mime (>= 0.1.1)
57
+ mini_mime (1.1.2)
58
+ mini_portile2 (2.8.0)
59
+ minitest (5.16.3)
60
+ net-imap (0.3.1)
61
+ net-protocol
62
+ net-pop (0.1.2)
63
+ net-protocol
64
+ net-protocol (0.1.3)
65
+ timeout
66
+ net-smtp (0.3.2)
67
+ net-protocol
68
+ nokogiri (1.13.8)
69
+ mini_portile2 (~> 2.8.0)
70
+ racc (~> 1.4)
71
+ parallel (1.22.1)
72
+ parser (3.1.2.1)
73
+ ast (~> 2.4.1)
74
+ racc (1.6.0)
75
+ rack (2.2.4)
76
+ rack-test (2.0.2)
77
+ rack (>= 1.3)
78
+ rails-dom-testing (2.0.3)
79
+ activesupport (>= 4.2.0)
80
+ nokogiri (>= 1.6)
81
+ rails-html-sanitizer (1.4.3)
82
+ loofah (~> 2.3)
83
+ rainbow (3.1.1)
84
+ rake (13.0.6)
85
+ regexp_parser (2.6.0)
86
+ rexml (3.2.5)
87
+ rspec (3.11.0)
88
+ rspec-core (~> 3.11.0)
89
+ rspec-expectations (~> 3.11.0)
90
+ rspec-mocks (~> 3.11.0)
91
+ rspec-core (3.11.0)
92
+ rspec-support (~> 3.11.0)
93
+ rspec-expectations (3.11.1)
94
+ diff-lcs (>= 1.2.0, < 2.0)
95
+ rspec-support (~> 3.11.0)
96
+ rspec-mocks (3.11.1)
97
+ diff-lcs (>= 1.2.0, < 2.0)
98
+ rspec-support (~> 3.11.0)
99
+ rspec-support (3.11.1)
100
+ rubocop (1.36.0)
101
+ json (~> 2.3)
102
+ parallel (~> 1.10)
103
+ parser (>= 3.1.2.1)
104
+ rainbow (>= 2.2.2, < 4.0)
105
+ regexp_parser (>= 1.8, < 3.0)
106
+ rexml (>= 3.2.5, < 4.0)
107
+ rubocop-ast (>= 1.20.1, < 2.0)
108
+ ruby-progressbar (~> 1.7)
109
+ unicode-display_width (>= 1.4.0, < 3.0)
110
+ rubocop-ast (1.21.0)
111
+ parser (>= 3.1.1.0)
112
+ rubocop-rspec (2.13.2)
113
+ rubocop (~> 1.33)
114
+ ruby-progressbar (1.11.0)
115
+ timeout (0.3.0)
116
+ tzinfo (2.0.5)
117
+ concurrent-ruby (~> 1.0)
118
+ unicode-display_width (2.3.0)
119
+
120
+ PLATFORMS
121
+ ruby
122
+ x86_64-darwin-20
123
+
124
+ DEPENDENCIES
125
+ actionmailer-balancer!
126
+ mail
127
+ rake (~> 13.0)
128
+ rspec (~> 3.0)
129
+ rubocop (~> 1.21)
130
+ rubocop-rspec
131
+
132
+ BUNDLED WITH
133
+ 2.2.15
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Railsware Products Studio, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,80 @@
1
+ # ActionMailer Balancer
2
+
3
+ This gem allows you to send your ActionMailer mail through one of several delivery methods, selected by weight.
4
+
5
+ Applications:
6
+
7
+ - gradually migrate to a new mail provider (first 1% of mail, then 5%, and so on)
8
+ - ...or to a new configuration (SMTP to Email API)
9
+ - spread load between multiple providers to stay under limit
10
+
11
+ Works with any valid ActionMailer delivery methods, either built-in or added from a library like [mailtrap](https://github.com/railsware/mailtrap-ruby#actionmailer).
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ ```ruby
18
+ gem 'actionmailer-balancer'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle install
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install actionmailer-balancer
28
+
29
+ ## Usage
30
+
31
+ Add the configuration to Rails env initializer
32
+
33
+ ```ruby
34
+ Your::Application.configure do
35
+ config.action_mailer.delivery_method = :balancer
36
+ config.action_mailer.balancer_settings = {
37
+ delivery_methods: [
38
+ {
39
+ method: :smtp,
40
+ settings: {
41
+ user_name: username,
42
+ password: password,
43
+ address: host,
44
+ domain: domain,
45
+ port: port,
46
+ authentication: auth_method
47
+ },
48
+ weight: 90
49
+ },
50
+ {
51
+ method: :sendmail,
52
+ settings: {
53
+ location: '/path/to/your/sendmail'
54
+ },
55
+ weight: 10
56
+ }
57
+ ]
58
+ }
59
+ end
60
+ ```
61
+
62
+ Now, just use ActionMailer as usual, and mail will be auto-balanced.
63
+
64
+ ## Development
65
+
66
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
67
+
68
+ To install this gem onto your local machine, run `bundle exec rake install`.
69
+
70
+ ## Contributing
71
+
72
+ Bug reports and pull requests are welcome on GitHub at https://github.com/railsware/actionmailer-balancer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/railsware/actionmailer-balancer/blob/master/CODE_OF_CONDUCT.md).
73
+
74
+ ## License
75
+
76
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
77
+
78
+ ## Code of Conduct
79
+
80
+ Everyone interacting in the ActionMailer::Balancer project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/railsware/actionmailer-balancer/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/actionmailer/balancer/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'actionmailer-balancer'
7
+ spec.version = ActionMailer::Balancer::VERSION
8
+ spec.authors = ['Railsware Products Studio, Inc.']
9
+ spec.email = ['support@mailtrap.io']
10
+
11
+ spec.summary = 'ActionMailer balancer'
12
+ spec.description =
13
+ 'Balancer for ActionMailer. ' \
14
+ 'Distributes emails across multiple delivery methods in the given proportion.'
15
+ spec.homepage = 'https://github.com/railsware/actionmailer-balancer'
16
+ spec.license = 'MIT'
17
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
18
+
19
+ spec.metadata['homepage_uri'] = spec.homepage
20
+ spec.metadata['source_code_uri'] = 'https://github.com/railsware/actionmailer-balancer'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/railsware/actionmailer-balancer/blob/main/CHANGELOG.md'
22
+ spec.metadata['rubygems_mfa_required'] = 'true'
23
+
24
+ spec.add_runtime_dependency 'actionmailer', '> 4.0', '< 8.0'
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
29
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:.github|bin|test|spec|features)/}) }
30
+ end
31
+ spec.require_paths = ['lib']
32
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActionMailer
4
+ module Balancer
5
+ class DeliveryMethod
6
+ attr_reader :delivery_methods, :weights_sum
7
+
8
+ def initialize(settings = {})
9
+ add_delivery_methods(settings)
10
+ end
11
+
12
+ def deliver!(message)
13
+ delivery_method = choose_delivery_method
14
+ message.delivery_method(
15
+ ::ActionMailer::Base.delivery_methods[delivery_method[:method]],
16
+ delivery_method[:settings]
17
+ )
18
+ message.deliver!
19
+ end
20
+
21
+ private
22
+
23
+ def add_delivery_methods(settings)
24
+ validate_settings!(settings)
25
+
26
+ @delivery_methods = settings[:delivery_methods]
27
+ @weights_sum = delivery_methods.sum do |method|
28
+ unless method[:weight]
29
+ raise ActionMailer::Balancer::SettingsError, "No weight set for delivery method #{method[:method]}"
30
+ end
31
+
32
+ method[:weight]
33
+ end
34
+ end
35
+
36
+ def choose_delivery_method
37
+ target = rand(1..weights_sum)
38
+ delivery_methods.each do |method|
39
+ return method if target <= method[:weight]
40
+
41
+ target -= method[:weight]
42
+ end
43
+ end
44
+
45
+ def validate_settings!(settings)
46
+ raise ActionMailer::Balancer::SettingsError, 'No settings set' if settings.empty?
47
+
48
+ return if settings[:delivery_methods].is_a?(Array) && !settings[:delivery_methods].empty?
49
+
50
+ raise ActionMailer::Balancer::SettingsError, 'No delivery methods set'
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActionMailer
4
+ module Balancer
5
+ class Railtie < Rails::Railtie
6
+ initializer 'action_mailer_balancer.add_delivery_method', before: 'action_mailer.set_configs' do
7
+ ActiveSupport.on_load(:action_mailer) do
8
+ ::ActionMailer::Base.add_delivery_method(:balancer, ActionMailer::Balancer::DeliveryMethod)
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActionMailer
4
+ module Balancer
5
+ VERSION = '1.0.0'
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'balancer/delivery_method'
4
+ require_relative 'balancer/railtie' if defined? Rails
5
+ require_relative 'balancer/version'
6
+
7
+ module ActionMailer
8
+ module Balancer
9
+ class SettingsError < StandardError; end
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: actionmailer-balancer
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Railsware Products Studio, Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-10-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: actionmailer
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '8.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">"
28
+ - !ruby/object:Gem::Version
29
+ version: '4.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '8.0'
33
+ description: Balancer for ActionMailer. Distributes emails across multiple delivery
34
+ methods in the given proportion.
35
+ email:
36
+ - support@mailtrap.io
37
+ executables: []
38
+ extensions: []
39
+ extra_rdoc_files: []
40
+ files:
41
+ - ".gitignore"
42
+ - ".rspec"
43
+ - ".rubocop.yml"
44
+ - ".ruby-version"
45
+ - CHANGELOG.md
46
+ - CODE_OF_CONDUCT.md
47
+ - Gemfile
48
+ - Gemfile.lock
49
+ - LICENSE.txt
50
+ - README.md
51
+ - Rakefile
52
+ - actionmailer-balancer.gemspec
53
+ - lib/actionmailer/balancer.rb
54
+ - lib/actionmailer/balancer/delivery_method.rb
55
+ - lib/actionmailer/balancer/railtie.rb
56
+ - lib/actionmailer/balancer/version.rb
57
+ homepage: https://github.com/railsware/actionmailer-balancer
58
+ licenses:
59
+ - MIT
60
+ metadata:
61
+ homepage_uri: https://github.com/railsware/actionmailer-balancer
62
+ source_code_uri: https://github.com/railsware/actionmailer-balancer
63
+ changelog_uri: https://github.com/railsware/actionmailer-balancer/blob/main/CHANGELOG.md
64
+ rubygems_mfa_required: 'true'
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 2.7.0
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubygems_version: 3.1.6
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: ActionMailer balancer
84
+ test_files: []