nlqdb 0.0.1
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.md +15 -0
- data/lib/nlqdb/version.rb +5 -0
- data/lib/nlqdb.rb +11 -0
- metadata +47 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: cfdfa4896a672736397df8abf4e580eeb0e8333185bd1253efcb9d5ebceae749
|
|
4
|
+
data.tar.gz: 1199060c76df8f9ce3fee24d6a6ace703400eee36ac4a97682c390bcd4d15fa7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ca82ae12d12807903ffb2317b7c3af0130460bddca39c1d34279db86ca7ac3aa68324def1db3169325b79bd56c16ef1d35a1890d0d684c808eb61090b86d157c
|
|
7
|
+
data.tar.gz: 580a60aec48802587b53fef9a99c30c48f25fcef1b6bb5e5536bc652bfb877b672269d03619c93d8567f415332a365a1d0b980d9271b546f0c4efad9ac082c3b
|
data/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# nlqdb — Ruby gem
|
|
2
|
+
|
|
3
|
+
Ruby client for [nlqdb](https://nlqdb.com) — natural-language databases.
|
|
4
|
+
|
|
5
|
+
**Status:** Placeholder. Real implementation coming in Phase 2.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
gem install nlqdb
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
Functional Source License 1.1 with Apache 2.0 future license ([FSL-1.1-ALv2](../../LICENSE)).
|
data/lib/nlqdb.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nlqdb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- nlqdb team
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-05-05 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Placeholder gem. Real implementation coming in Phase 2.
|
|
14
|
+
email:
|
|
15
|
+
- info@nlqdb.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.md
|
|
21
|
+
- lib/nlqdb.rb
|
|
22
|
+
- lib/nlqdb/version.rb
|
|
23
|
+
homepage: https://nlqdb.com
|
|
24
|
+
licenses:
|
|
25
|
+
- FSL-1.1-ALv2
|
|
26
|
+
metadata:
|
|
27
|
+
source_code_uri: https://github.com/nlqdb/nlqdb
|
|
28
|
+
post_install_message:
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '3.0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubygems_version: 3.0.3.1
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: Ruby client for nlqdb — natural-language databases
|
|
47
|
+
test_files: []
|