pager_duty-connection 1.3.0 → 1.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5ed2448d451ac75d9a5e2978c4bf1699c44226f0ea898e933dd183b46a280a5
4
- data.tar.gz: 154c884d8a19d6970522150dede47047af93e4c0e2d5039985ceb123b96dfda4
3
+ metadata.gz: 4c392576dc99307e392b659a3bcdc08a71e93b7a9d1e4d1c1f2d0d1757c78cec
4
+ data.tar.gz: 710475fc120cf3d3ae18f4eeaeebfbc78d878c80aacc612acbc72fc759405fe5
5
5
  SHA512:
6
- metadata.gz: '08226d6faaf08512d6e268912e4ee57d47e0bcd3fddd2d3e56d8c67203f974409de137f206578c886028e027535e333edf8763cb190d3c6fc90607dec4605823'
7
- data.tar.gz: a586dee66779efb0e89cdc8c7c720eeb0cc16b89f4af681cf8ad3a4735a270be9f9856bd40f81c346fef320def10822427ea2d26745e14df9d417929f24a058e
6
+ metadata.gz: 22907cfe9371c5767c9341037a14a0df90e5d410faa2302973295a70a8a10d9453f565c3f5d10986d96976d11a6e0d59598e3a8035b2ef391ced4e2f5ef13722
7
+ data.tar.gz: f0e3c25d24760085ebdaa6dc0c3838e85cc7ead08a12e75e1aa113f8f2be0aa0a2de5e736348a5faf249339cb5cf0759fc5abc492062f287599d2030f0509767
@@ -186,19 +186,19 @@ module PagerDuty
186
186
  offset = (page - 1) * limit
187
187
  request[:query_params] = request[:query_params].merge(offset: offset, limit: limit)
188
188
 
189
- run_request(:get, path, request)
189
+ run_request(:get, path, **request)
190
190
  end
191
191
 
192
192
  def put(path, request = {})
193
- run_request(:put, path, request)
193
+ run_request(:put, path, **request)
194
194
  end
195
195
 
196
196
  def post(path, request = {})
197
- run_request(:post, path, request)
197
+ run_request(:post, path, **request)
198
198
  end
199
199
 
200
200
  def delete(path, request = {})
201
- run_request(:delete, path, request)
201
+ run_request(:delete, path, **request)
202
202
  end
203
203
 
204
204
  private
@@ -1,5 +1,5 @@
1
1
  module PagerDuty
2
2
  class Connection
3
- VERSION = "1.3.0"
3
+ VERSION = "1.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pager_duty-connection
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Nichols
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-04 00:00:00.000000000 Z
11
+ date: 2020-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday