chain_mail 0.1.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.
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chain_mail
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Toray Altas
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-09-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk-ses
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '6.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '6.0'
41
+ description: ChainMail provides a unified interface for sending transactional emails
42
+ through multiple providers (SendGrid, Postmark, Mailgun, etc.) with automatic failover
43
+ and Rails integration.
44
+ email:
45
+ - toray.altas@gmail.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".pre-commit-config.yaml"
51
+ - ".rspec"
52
+ - ".rubocop.yml"
53
+ - CHANGELOG.md
54
+ - LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - assets/images/logo.png
58
+ - chain_mail.gemspec
59
+ - config/initializers/chain_mail.rb
60
+ - lib/chain_mail.rb
61
+ - lib/chain_mail/configuration.rb
62
+ - lib/chain_mail/delivery.rb
63
+ - lib/chain_mail/providers/base.rb
64
+ - lib/chain_mail/providers/brevo.rb
65
+ - lib/chain_mail/providers/mailgun.rb
66
+ - lib/chain_mail/providers/one_signal.rb
67
+ - lib/chain_mail/providers/postmark.rb
68
+ - lib/chain_mail/providers/send_grid.rb
69
+ - lib/chain_mail/providers/send_pulse.rb
70
+ - lib/chain_mail/providers/ses.rb
71
+ - lib/chain_mail/railtie.rb
72
+ - lib/chain_mail/version.rb
73
+ - sig/chain_mail.rbs
74
+ - vendor/sendpulse/sendpulse_api.rb
75
+ homepage: https://github.com/taltas/chain_mail
76
+ licenses: []
77
+ metadata:
78
+ allowed_push_host: https://rubygems.org
79
+ homepage_uri: https://github.com/taltas/chain_mail
80
+ source_code_uri: https://github.com/taltas/chain_mail
81
+ changelog_uri: https://github.com/taltas/chain_mail/blob/main/CHANGELOG.md
82
+ rubygems_mfa_required: 'true'
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: 3.0.0
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubygems_version: 3.5.3
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Unified transactional email delivery with failover for Ruby/Rails.
102
+ test_files: []