leopard 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/Readme.adoc +9 -0
- data/lib/leopard/version.rb +9 -0
- metadata +62 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 925e3c42a3a80193197765a65c4fa5301961310167cfc053e20c936c8a4e7054
|
4
|
+
data.tar.gz: f3e36504a2f3586f56f50b2f6bc4a25e6657b696b9f254e61b5baf33d20695cf
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4987b6747903a013100ac5e8535688d4c7298d0f520cfcc81e207351c116c4cf9b77d89b07d09bc67714a2d2ed275aa5f898d519c0413fe66fac6974d878b016
|
7
|
+
data.tar.gz: ac0484d1a9267faae2daf88cdb4f8e693c0e6399abaf979e8e32e0e77b15e7d7bb32d4b39af4f72c685a9bce3cee5986a851836e309cb37b262b4d44b5a54c84
|
data/Readme.adoc
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# Leopard Nats ServiceApi Server
|
2
|
+
bougyman <me@bougyman.com>
|
3
|
+
:service-api: https://github.com/rubyists/nats-pure.rb/blob/main/docs/service_api.md[Service API]
|
4
|
+
|
5
|
+
The leopard nats serviceapi server provides a simple concurrency
|
6
|
+
model for NATS {service-api} workers. It is designed to be used
|
7
|
+
similarly to a web server (inspired by puma), defining endpoints
|
8
|
+
in your classes, and then serving them via the leopard (Ractor-based)
|
9
|
+
service supervisor.
|
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: leopard
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- bougyman
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: nats-pure
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '2.5'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '2.5'
|
26
|
+
description: Leopard is a puma-like server for managing concurrent NATS ServiceApi
|
27
|
+
endpoint workers
|
28
|
+
email:
|
29
|
+
- bougyman@users.noreply.github.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- Readme.adoc
|
35
|
+
- lib/leopard/version.rb
|
36
|
+
homepage: https://github.com/rubyists/leopard
|
37
|
+
licenses:
|
38
|
+
- MIT
|
39
|
+
metadata:
|
40
|
+
allowed_push_host: https://rubygems.org
|
41
|
+
homepage_uri: https://github.com/rubyists/leopard
|
42
|
+
source_code_uri: https://github.com/rubyists/leopard
|
43
|
+
changelog_uri: https://github.com/rubyists/leopard/blob/main/CHANGELOG.md
|
44
|
+
rubygems_mfa_required: 'true'
|
45
|
+
rdoc_options: []
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.3.0
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubygems_version: 3.6.9
|
60
|
+
specification_version: 4
|
61
|
+
summary: A server to supervise concurrent NATS ServiceApi workers.
|
62
|
+
test_files: []
|