mailgunner 3.1.0 → 3.1.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: ecebbd735148a4e998432b795af65a568b07d3240a6fdaced0f9b4e2df046a3f
4
- data.tar.gz: 1779983950d5fb39a0cf04164289998c87fbfd2b34f9728e2b69ddb5217ab365
3
+ metadata.gz: dac54745e6d3475bcbd5c27675c89a9647870fe514561b5ad36ac2aa7b48eb3b
4
+ data.tar.gz: 58821c8391d23c4ce4706b3d35d4cb5fbd65ff3c09f71740c3a482c33805fcb0
5
5
  SHA512:
6
- metadata.gz: bfa31b90f0285e73bd3cb975c36aa5ea90845706acd12121e05ab54d3577765408f27e968070008336fe5d3cbd282a25ab67f4a378b88beb49a6f1b770bdde8e
7
- data.tar.gz: e5474d83229a4e02fac4e4e3ca23d9328d1108e582eadd5cc2e1f411ffa3a8dedd67b7b6bff33ac91358521cc74061a7f06b55b21dd863aea98695e5b6fac6a0
6
+ metadata.gz: c510956aca65b48139a0826569b57f2114aabcbf7dc7eca881cec5770e3d96458237a313ad7929e96484959c54080a69c7631b6c5b357fb5b0164c3a65f39b5a
7
+ data.tar.gz: 809f0890f502900537b03f35aa1b012f27c9654ec18dd70c4265a4a0e2b08db09c3f9db9aa331beee695510e28be4edc50bb8dceceb27a86385bc07e84eb84c5
data/CHANGES.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 3.1.1
2
+
3
+ * Fixed missing keyword argument in Mailgunner::Client#get_whitelists method
4
+
5
+ * Fixed last argument as keyword parameters deprecation warning on Ruby 2.7
6
+
1
7
  # 3.1.0
2
8
 
3
9
  * Allow delivery method settings to be modified before delivery (#22)
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # mailgunner
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/mailgunner.svg)](https://badge.fury.io/rb/mailgunner) [![Build Status](https://api.travis-ci.org/readysteady/mailgunner.svg?branch=master)](https://travis-ci.org/readysteady/mailgunner)
3
+ ![Gem Version](https://badge.fury.io/rb/mailgunner.svg)
4
+ ![Build Status](https://github.com/readysteady/mailgunner/workflows/Test/badge.svg)
4
5
 
5
6
 
6
7
  Ruby client for the [Mailgun API](https://documentation.mailgun.com/en/latest/api_reference.html).
@@ -55,7 +55,7 @@ module Mailgunner
55
55
  end
56
56
 
57
57
  def get_whitelists(params = PARAMS)
58
- get("/v3/#{escape @domain}/whitelists", params)
58
+ get("/v3/#{escape @domain}/whitelists", query: params)
59
59
  end
60
60
 
61
61
  def get_whitelist(address_or_domain)
@@ -12,7 +12,7 @@ module Mailgunner
12
12
  def deliver!(mail)
13
13
  check(mail)
14
14
 
15
- client = Client.new(settings)
15
+ client = Client.new(**settings)
16
16
  client.send_mime(mail)
17
17
  end
18
18
 
@@ -1,3 +1,3 @@
1
1
  module Mailgunner
2
- VERSION = '3.1.0'
2
+ VERSION = '3.1.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailgunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Craft
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-30 00:00:00.000000000 Z
11
+ date: 2020-04-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby client for the Mailgun API
14
14
  email:
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  requirements: []
67
- rubygems_version: 3.0.3
67
+ rubygems_version: 3.1.2
68
68
  signing_key:
69
69
  specification_version: 4
70
70
  summary: Ruby client for the Mailgun API