mailgun-ruby 1.2.11 → 1.2.12
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/CHANGELOG.md +16 -0
- data/README.md +2 -2
- data/lib/mailgun/domains/domains.rb +1 -1
- data/lib/mailgun/events/events.rb +1 -1
- data/lib/mailgun/messages/message_builder.rb +2 -2
- data/lib/mailgun/response.rb +7 -0
- data/lib/mailgun/templates/templates.rb +187 -0
- data/lib/mailgun/version.rb +1 -1
- data/lib/mailgun.rb +1 -0
- data/lib/railgun/mailer.rb +1 -1
- data/mailgun.gemspec +4 -1
- data/spec/integration/email_validation_spec.rb +7 -0
- data/spec/integration/mailgun_spec.rb +16 -0
- data/spec/integration/templates_spec.rb +135 -0
- data/spec/unit/messages/message_builder_spec.rb +1 -1
- data/vcr_cassettes/email_validation.yml +5 -5
- data/vcr_cassettes/templates.yml +1065 -0
- metadata +13 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailgun-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mailgun
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-10-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -148,6 +148,7 @@ files:
|
|
148
148
|
- ".rubocop_todo.yml"
|
149
149
|
- ".ruby-env.yml.example"
|
150
150
|
- ".travis.yml"
|
151
|
+
- CHANGELOG.md
|
151
152
|
- Gemfile
|
152
153
|
- LICENSE
|
153
154
|
- README.md
|
@@ -176,6 +177,7 @@ files:
|
|
176
177
|
- lib/mailgun/messages/message_builder.rb
|
177
178
|
- lib/mailgun/response.rb
|
178
179
|
- lib/mailgun/suppressions.rb
|
180
|
+
- lib/mailgun/templates/templates.rb
|
179
181
|
- lib/mailgun/version.rb
|
180
182
|
- lib/mailgun/webhooks/webhooks.rb
|
181
183
|
- lib/railgun.rb
|
@@ -199,6 +201,7 @@ files:
|
|
199
201
|
- spec/integration/routes_spec.rb
|
200
202
|
- spec/integration/stats_spec.rb
|
201
203
|
- spec/integration/suppressions_spec.rb
|
204
|
+
- spec/integration/templates_spec.rb
|
202
205
|
- spec/integration/unsubscribes_spec.rb
|
203
206
|
- spec/integration/webhook_spec.rb
|
204
207
|
- spec/spec_helper.rb
|
@@ -233,12 +236,15 @@ files:
|
|
233
236
|
- vcr_cassettes/send_message.yml
|
234
237
|
- vcr_cassettes/stats.yml
|
235
238
|
- vcr_cassettes/suppressions.yml
|
239
|
+
- vcr_cassettes/templates.yml
|
236
240
|
- vcr_cassettes/unsubscribes.yml
|
237
241
|
- vcr_cassettes/webhooks.yml
|
238
|
-
homepage:
|
242
|
+
homepage: https://www.mailgun.com/
|
239
243
|
licenses:
|
240
244
|
- Apache-2.0
|
241
|
-
metadata:
|
245
|
+
metadata:
|
246
|
+
documentation_uri: https://documentation.mailgun.com/
|
247
|
+
source_code_uri: https://github.com/mailgun/mailgun-ruby
|
242
248
|
post_install_message:
|
243
249
|
rdoc_options: []
|
244
250
|
require_paths:
|
@@ -254,7 +260,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
254
260
|
- !ruby/object:Gem::Version
|
255
261
|
version: '0'
|
256
262
|
requirements: []
|
257
|
-
|
263
|
+
rubyforge_project:
|
264
|
+
rubygems_version: 2.7.6
|
258
265
|
signing_key:
|
259
266
|
specification_version: 4
|
260
267
|
summary: Mailgun's Official Ruby SDK
|
@@ -273,6 +280,7 @@ test_files:
|
|
273
280
|
- spec/integration/routes_spec.rb
|
274
281
|
- spec/integration/stats_spec.rb
|
275
282
|
- spec/integration/suppressions_spec.rb
|
283
|
+
- spec/integration/templates_spec.rb
|
276
284
|
- spec/integration/unsubscribes_spec.rb
|
277
285
|
- spec/integration/webhook_spec.rb
|
278
286
|
- spec/spec_helper.rb
|