hooksniff 1.2.0 → 1.3.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 +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +49 -53
- data/hooksniff.gemspec +1 -1
- data/lib/hooksniff/api/authentication.rb +0 -13
- data/lib/hooksniff/api/integration.rb +8 -8
- data/lib/hooksniff/api/statistics.rb +0 -13
- data/lib/hooksniff/api/stream.rb +28 -9
- data/lib/hooksniff/errors.rb +79 -0
- data/lib/hooksniff/hooksniff_http_client.rb +48 -9
- data/lib/hooksniff/options.rb +31 -0
- data/lib/hooksniff/paginator.rb +45 -0
- data/lib/hooksniff/response_metadata.rb +48 -0
- data/lib/hooksniff/version.rb +1 -1
- data/lib/hooksniff/webhook.rb +62 -0
- data/lib/hooksniff/webhook_event.rb +295 -0
- data/lib/hooksniff.rb +3 -0
- data/test/test_hooksniff.rb +0 -11
- data/test/test_typed_events.rb +260 -0
- metadata +9 -7
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hooksniff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- HookSniff
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: base64
|
|
@@ -82,7 +81,7 @@ dependencies:
|
|
|
82
81
|
version: '3.25'
|
|
83
82
|
description: HookSniff makes webhooks easy and reliable. Learn more at https://hooksniff.vercel.app
|
|
84
83
|
email:
|
|
85
|
-
-
|
|
84
|
+
- servetarslan02@gmail.com
|
|
86
85
|
executables: []
|
|
87
86
|
extensions: []
|
|
88
87
|
extra_rdoc_files: []
|
|
@@ -181,11 +180,16 @@ files:
|
|
|
181
180
|
- lib/hooksniff/models/message_status_text.rb
|
|
182
181
|
- lib/hooksniff/models/ordering.rb
|
|
183
182
|
- lib/hooksniff/models/status_code_class.rb
|
|
183
|
+
- lib/hooksniff/options.rb
|
|
184
|
+
- lib/hooksniff/paginator.rb
|
|
185
|
+
- lib/hooksniff/response_metadata.rb
|
|
184
186
|
- lib/hooksniff/util.rb
|
|
185
187
|
- lib/hooksniff/validation_error.rb
|
|
186
188
|
- lib/hooksniff/version.rb
|
|
187
189
|
- lib/hooksniff/webhook.rb
|
|
190
|
+
- lib/hooksniff/webhook_event.rb
|
|
188
191
|
- test/test_hooksniff.rb
|
|
192
|
+
- test/test_typed_events.rb
|
|
189
193
|
homepage: https://hooksniff.vercel.app
|
|
190
194
|
licenses:
|
|
191
195
|
- MIT
|
|
@@ -193,7 +197,6 @@ metadata:
|
|
|
193
197
|
allowed_push_host: https://rubygems.org
|
|
194
198
|
homepage_uri: https://hooksniff.vercel.app
|
|
195
199
|
source_code_uri: https://github.com/servetarslan02/HookSniff
|
|
196
|
-
post_install_message:
|
|
197
200
|
rdoc_options: []
|
|
198
201
|
require_paths:
|
|
199
202
|
- lib
|
|
@@ -208,8 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
208
211
|
- !ruby/object:Gem::Version
|
|
209
212
|
version: '0'
|
|
210
213
|
requirements: []
|
|
211
|
-
rubygems_version:
|
|
212
|
-
signing_key:
|
|
214
|
+
rubygems_version: 4.0.6
|
|
213
215
|
specification_version: 4
|
|
214
216
|
summary: HookSniff webhooks API client and webhook verification library
|
|
215
217
|
test_files: []
|