toon-fu 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 209aece0889367dd31ee2cf3bd80fb03094022b6be61967c6b9f400c5b02d014
4
+ data.tar.gz: 33ce4ad50d1bc81088e25fa426c6b2cbd73e086593bd8b822240d6161f20b61b
5
+ SHA512:
6
+ metadata.gz: 12340212191070a117e650bec7d7861fdd05b57c4725816264474e30a4fa3c9244c70bc8ff2cc6c754f50ba5f948fef05f6b5841cb889bd367faa43432288bb6
7
+ data.tar.gz: 0c6e732a2adfdf17c7ca269dcfbcb3a83adcc4ea68b878244c565f5c1f0d4040746fe2098a36645e7baf0f47cbbcf1366bce6cd28add46de1abac15ba8ac1693
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.0.1
4
+
5
+ Name claimed. No encoder yet.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Yevhenii Hurin
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,20 @@
1
+ # toon-fu
2
+
3
+ [TOON](https://github.com/toon-format/spec) (Token-Oriented Object Notation) for Ruby.
4
+
5
+ Written from the specification, with the reference test fixtures as the conformance suite.
6
+
7
+ ## Versioning
8
+
9
+ The gem version tracks the TOON specification it implements:
10
+
11
+ - `MAJOR.MINOR` is the spec version. `4.1.x` speaks TOON 4.1.
12
+ - `PATCH` is the gem's own: fixes and improvements that do not change the dialect.
13
+
14
+ Pin to the spec line you need: `gem "toon-fu", "~> 4.1.0"`.
15
+
16
+ `0.0.1` is a placeholder that claims the name. The first real release will be `4.1.0`.
17
+
18
+ ## License
19
+
20
+ MIT
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ToonFu
4
+ VERSION = "0.0.1"
5
+ end
data/lib/toon_fu.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "toon_fu/version"
4
+
5
+ # TOON (Token-Oriented Object Notation) for Ruby.
6
+ module ToonFu
7
+ class Error < StandardError; end
8
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: toon-fu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Yevhenii Hurin
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A Ruby implementation of TOON, the token-efficient serialization format
13
+ for LLM input. The gem's MAJOR.MINOR tracks the TOON specification version; PATCH
14
+ is the gem's own.
15
+ email:
16
+ - evgeny.gurin@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - LICENSE
23
+ - README.md
24
+ - lib/toon_fu.rb
25
+ - lib/toon_fu/version.rb
26
+ homepage: https://github.com/hoblin/toon-fu
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ source_code_uri: https://github.com/hoblin/toon-fu
31
+ changelog_uri: https://github.com/hoblin/toon-fu/blob/main/CHANGELOG.md
32
+ rubygems_mfa_required: 'true'
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.3'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.6.9
48
+ specification_version: 4
49
+ summary: TOON (Token-Oriented Object Notation) for Ruby, versioned by the spec it
50
+ implements
51
+ test_files: []