terret 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/lib/terret/cli.rb +21 -0
- metadata +61 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: c4f0a14c9e5888a0e82a87c8b5750a045f990cbfa9d38651fcd0887e0e4c3ed7
|
|
4
|
+
data.tar.gz: 4265df27d9a05b000d80a6a68f8616695c7a1e6fe19a88680d998e96e43035b4
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e5333ec91ff3411ce606861f83b4566bb7e131358ca36e87eee05de758a78ff9acabf2f8fa9e75afc545150ed22f9122d2277b1df433a2e20cd3a397a45f2ddc
|
|
7
|
+
data.tar.gz: 6fdc6deb241df9bdeb09fe3077604e5624efeb4b8fa27226e54a911b42fa82c55cdeaa89cd481a16722b9b65b3ab37135578f7f2f02ce908920e3f5c24fc880e
|
data/lib/terret/cli.rb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Terret
|
|
4
|
+
# The `trt` command line interface.
|
|
5
|
+
#
|
|
6
|
+
# Not implemented yet. The CLI is M4 work in docs/terret-implementation-plan.md
|
|
7
|
+
# and it needs a real model adapter to drive, which is M2 work still outstanding.
|
|
8
|
+
# This gem exists so that the `terret` name belongs to the project that will
|
|
9
|
+
# fill it. Everything that currently works lives in terret-core and hames.
|
|
10
|
+
module CLI
|
|
11
|
+
VERSION = "0.0.1"
|
|
12
|
+
|
|
13
|
+
def self.start(_argv = ARGV)
|
|
14
|
+
abort <<~MSG
|
|
15
|
+
terret: the trt CLI does not exist yet.
|
|
16
|
+
|
|
17
|
+
What works today is the library. See https://terret.org
|
|
18
|
+
MSG
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: terret
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Obie Fernandez
|
|
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: terret-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0.1'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0.1'
|
|
26
|
+
description: Placeholder release. Terret is a Ruby-native, model-agnostic agent harness
|
|
27
|
+
where everything is a plugin. This meta-gem will carry the trt CLI, profiles, and
|
|
28
|
+
boot; none of that is written yet. The working code is in terret-core and hames.
|
|
29
|
+
email:
|
|
30
|
+
- obiefernandez@gmail.com
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- lib/terret/cli.rb
|
|
36
|
+
homepage: https://terret.org
|
|
37
|
+
licenses:
|
|
38
|
+
- MIT
|
|
39
|
+
metadata:
|
|
40
|
+
homepage_uri: https://terret.org
|
|
41
|
+
source_code_uri: https://github.com/terret-org/terret
|
|
42
|
+
bug_tracker_uri: https://github.com/terret-org/terret/issues
|
|
43
|
+
rubygems_mfa_required: 'true'
|
|
44
|
+
rdoc_options: []
|
|
45
|
+
require_paths:
|
|
46
|
+
- lib
|
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '4.0'
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '0'
|
|
57
|
+
requirements: []
|
|
58
|
+
rubygems_version: 4.0.16
|
|
59
|
+
specification_version: 4
|
|
60
|
+
summary: Ruby-native, model-agnostic agent harness (name placeholder)
|
|
61
|
+
test_files: []
|