textprov 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/LICENSE +21 -0
- data/README.md +75 -0
- data/exe/textprov +9 -0
- data/lib/textprov/cli.rb +179 -0
- data/lib/textprov/core.rb +212 -0
- data/lib/textprov/encode.rb +171 -0
- data/lib/textprov/mapping.json +764 -0
- data/lib/textprov/version.rb +7 -0
- data/lib/textprov.rb +7 -0
- metadata +53 -0
data/lib/textprov.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: textprov
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- TextProv contributors
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Ruby reference implementation of the TextProv protocol. Encodes and decodes
|
|
13
|
+
producer-declared origin labels in Unicode text; does not detect or verify origin.
|
|
14
|
+
executables:
|
|
15
|
+
- textprov
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- LICENSE
|
|
20
|
+
- README.md
|
|
21
|
+
- exe/textprov
|
|
22
|
+
- lib/textprov.rb
|
|
23
|
+
- lib/textprov/cli.rb
|
|
24
|
+
- lib/textprov/core.rb
|
|
25
|
+
- lib/textprov/encode.rb
|
|
26
|
+
- lib/textprov/mapping.json
|
|
27
|
+
- lib/textprov/version.rb
|
|
28
|
+
homepage: https://github.com/textprov/textprov
|
|
29
|
+
licenses:
|
|
30
|
+
- MIT
|
|
31
|
+
metadata:
|
|
32
|
+
source_code_uri: https://github.com/textprov/textprov
|
|
33
|
+
specification_uri: https://github.com/textprov/textprov/blob/main/SPEC.md
|
|
34
|
+
bug_tracker_uri: https://github.com/textprov/textprov/issues
|
|
35
|
+
rubygems_mfa_required: 'true'
|
|
36
|
+
rdoc_options: []
|
|
37
|
+
require_paths:
|
|
38
|
+
- lib
|
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '3.2'
|
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '0'
|
|
49
|
+
requirements: []
|
|
50
|
+
rubygems_version: 3.6.9
|
|
51
|
+
specification_version: 4
|
|
52
|
+
summary: Label AI output down to the character, directly in ordinary Unicode text.
|
|
53
|
+
test_files: []
|