nahook 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.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +189 -0
- data/lib/nahook/client.rb +140 -0
- data/lib/nahook/errors.rb +97 -0
- data/lib/nahook/http_client.rb +164 -0
- data/lib/nahook/management.rb +63 -0
- data/lib/nahook/resources/applications.rb +148 -0
- data/lib/nahook/resources/endpoints.rb +114 -0
- data/lib/nahook/resources/environments.rb +121 -0
- data/lib/nahook/resources/event_types.rb +97 -0
- data/lib/nahook/resources/portal_sessions.rb +47 -0
- data/lib/nahook/resources/subscriptions.rb +70 -0
- data/lib/nahook/version.rb +5 -0
- data/lib/nahook.rb +29 -0
- metadata +76 -0
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nahook
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nahook
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: faraday
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '2.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '2.0'
|
|
26
|
+
description: Ruby client for sending webhooks and managing resources through the Nahook
|
|
27
|
+
API. Supports direct endpoint delivery, fan-out by event type, batch operations,
|
|
28
|
+
and full management API access.
|
|
29
|
+
email:
|
|
30
|
+
- support@nahook.com
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- LICENSE
|
|
36
|
+
- README.md
|
|
37
|
+
- lib/nahook.rb
|
|
38
|
+
- lib/nahook/client.rb
|
|
39
|
+
- lib/nahook/errors.rb
|
|
40
|
+
- lib/nahook/http_client.rb
|
|
41
|
+
- lib/nahook/management.rb
|
|
42
|
+
- lib/nahook/resources/applications.rb
|
|
43
|
+
- lib/nahook/resources/endpoints.rb
|
|
44
|
+
- lib/nahook/resources/environments.rb
|
|
45
|
+
- lib/nahook/resources/event_types.rb
|
|
46
|
+
- lib/nahook/resources/portal_sessions.rb
|
|
47
|
+
- lib/nahook/resources/subscriptions.rb
|
|
48
|
+
- lib/nahook/version.rb
|
|
49
|
+
homepage: https://nahook.com
|
|
50
|
+
licenses:
|
|
51
|
+
- MIT
|
|
52
|
+
metadata:
|
|
53
|
+
homepage_uri: https://nahook.com
|
|
54
|
+
source_code_uri: https://github.com/getnahook/nahook-ruby
|
|
55
|
+
changelog_uri: https://github.com/getnahook/nahook-ruby/blob/main/CHANGELOG.md
|
|
56
|
+
bug_tracker_uri: https://github.com/getnahook/nahook-ruby/issues
|
|
57
|
+
documentation_uri: https://docs.nahook.com/sdks/ruby
|
|
58
|
+
rubygems_mfa_required: 'true'
|
|
59
|
+
rdoc_options: []
|
|
60
|
+
require_paths:
|
|
61
|
+
- lib
|
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '3.0'
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
requirements: []
|
|
73
|
+
rubygems_version: 4.0.10
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: Official Ruby SDK for the Nahook webhook platform
|
|
76
|
+
test_files: []
|