skaidb 1.0.3
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/CHANGELOG.md +122 -0
- data/LICENSE +557 -0
- data/README.md +484 -0
- data/docs/api.md +146 -0
- data/docs/getting-started.md +127 -0
- data/docs/pooling.md +47 -0
- data/docs/streaming.md +69 -0
- data/docs/tls.md +59 -0
- data/docs/types.md +72 -0
- data/lib/skaidb.rb +1334 -0
- metadata +78 -0
metadata
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: skaidb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- skaidb contributors
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-09-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bigdecimal
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '5'
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '2.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '5'
|
|
33
|
+
description: A pure-stdlib Ruby client for skaidb. Speaks the binary wire protocol
|
|
34
|
+
with SCRAM-SHA-256 auth and exposes a ruby-pg-style API (exec / exec_params, $1
|
|
35
|
+
placeholders, PG::Result-shaped results, streaming, batches, pooling, TLS).
|
|
36
|
+
email:
|
|
37
|
+
executables: []
|
|
38
|
+
extensions: []
|
|
39
|
+
extra_rdoc_files: []
|
|
40
|
+
files:
|
|
41
|
+
- CHANGELOG.md
|
|
42
|
+
- LICENSE
|
|
43
|
+
- README.md
|
|
44
|
+
- docs/api.md
|
|
45
|
+
- docs/getting-started.md
|
|
46
|
+
- docs/pooling.md
|
|
47
|
+
- docs/streaming.md
|
|
48
|
+
- docs/tls.md
|
|
49
|
+
- docs/types.md
|
|
50
|
+
- lib/skaidb.rb
|
|
51
|
+
homepage: https://github.com/porcupin26/skaidb-ruby
|
|
52
|
+
licenses:
|
|
53
|
+
- SSPL-1.0
|
|
54
|
+
metadata:
|
|
55
|
+
source_code_uri: https://github.com/porcupin26/skaidb-ruby
|
|
56
|
+
changelog_uri: https://github.com/porcupin26/skaidb-ruby/blob/main/CHANGELOG.md
|
|
57
|
+
documentation_uri: https://github.com/porcupin26/skaidb-ruby/tree/main/docs
|
|
58
|
+
bug_tracker_uri: https://github.com/porcupin26/skaidb-ruby/issues
|
|
59
|
+
post_install_message:
|
|
60
|
+
rdoc_options: []
|
|
61
|
+
require_paths:
|
|
62
|
+
- lib
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '2.7'
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '0'
|
|
73
|
+
requirements: []
|
|
74
|
+
rubygems_version: 3.5.22
|
|
75
|
+
signing_key:
|
|
76
|
+
specification_version: 4
|
|
77
|
+
summary: Official Ruby driver for skaidb (binary wire protocol, pg-style API)
|
|
78
|
+
test_files: []
|