schematist 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '097eccbc3bfb0005f21d04f6f8548d92dc54c7b3426e7b3594130b7c6b0d6482'
4
+ data.tar.gz: 35faf184b8853ca8ac93148929c13028d2ec7b6549ae0332fe811ed7c2aa179b
5
+ SHA512:
6
+ metadata.gz: e55563a9a650a7b09feb3fa2633e094084a7a6f9dccccfff143162549c0754ae125732a81478ad126116664c8445587a657410c75fd1d9e0ffd7adfc41009b65
7
+ data.tar.gz: 99920a39bb6fbc7b58124cb2dac61b2954de588ad2c265034ff12398934d1ea71560b01491b96aff9b7830d313c792365c960783597ab6dbd38c586af9fab755
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Carmine Paolino
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # Schematist
2
+
3
+ A Ruby DSL for building JSON Schema documents.
4
+
5
+ ## Status
6
+
7
+ Schematist is the next home of [ruby_llm-schema](https://github.com/crmne/ruby_llm-schema). Today, installing `schematist` installs ruby_llm-schema and `require "schematist"` loads it, so you can point your Gemfile here now. The expanded library, a complete JSON Schema (draft 2020-12) toolkit under the `Schematist` name, lands in a future release.
8
+
9
+ ## Installation
10
+
11
+ ```ruby
12
+ gem 'schematist'
13
+ ```
14
+
15
+ ## License
16
+
17
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Schematist
4
+ VERSION = '0.1.0'
5
+ end
data/lib/schematist.rb ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'schematist/version'
4
+ require 'ruby_llm/schema'
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: schematist
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Carmine Paolino
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: ruby_llm-schema
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ description: Schematist is the next home of ruby_llm-schema. Installing schematist
27
+ installs ruby_llm-schema and requiring schematist loads it. The expanded JSON Schema
28
+ (draft 2020-12) toolkit lands here in a future release.
29
+ email:
30
+ - carmine@paolino.me
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - LICENSE
36
+ - README.md
37
+ - lib/schematist.rb
38
+ - lib/schematist/version.rb
39
+ homepage: https://github.com/crmne/ruby_llm-schema
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ homepage_uri: https://github.com/crmne/ruby_llm-schema
44
+ source_code_uri: https://github.com/crmne/ruby_llm-schema
45
+ rubygems_mfa_required: 'true'
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 3.1.3
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 4.0.16
61
+ specification_version: 4
62
+ summary: A Ruby DSL for building JSON Schema documents.
63
+ test_files: []