language-operator 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/LICENSE +21 -0
- data/README.md +13 -0
- data/lib/language_operator/version.rb +5 -0
- data/lib/language_operator.rb +8 -0
- metadata +54 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: cc1890d41e08f23d06230234f5a77672ecb5139721f8744d66e9dab3f2d1ce52
|
|
4
|
+
data.tar.gz: 140fb96f5ce0ba1329c41ec1bfdaa072655ffd42e3d959acd72d9343b526651e
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3c20e8cabe5b84004ae06d0e54435b36de48500e953739c93222d324e2ee98b9654f50cb8b6005c2492224dc5635b84bbea72a4019cfe21375aa159c74590e4d
|
|
7
|
+
data.tar.gz: 1b125cd94f4d382b73cba3ca17aa3e92ab5b50b0e897099f2e8da6e677ddc438019df6d424e38466e1802649b4d8a365b2696f6379047c97f05aa0f3e28565cf
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 James Ryan
|
|
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,13 @@
|
|
|
1
|
+
# Language Operator - Placeholder
|
|
2
|
+
|
|
3
|
+
**This gem is a placeholder to reserve the name "language-operator" on RubyGems.**
|
|
4
|
+
|
|
5
|
+
## About
|
|
6
|
+
|
|
7
|
+
Language Operator is a Kubernetes operator for deploying and managing language model agents, tools, and models in Kubernetes clusters.
|
|
8
|
+
|
|
9
|
+
The project is currently under active development. Once the initial release is ready, this placeholder will be replaced with the actual gem.
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
MIT License - See LICENSE file for details.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "language_operator/version"
|
|
4
|
+
|
|
5
|
+
# This is a placeholder gem to reserve the name "language-operator" on RubyGems.
|
|
6
|
+
# The actual implementation will be released when the project is ready.
|
|
7
|
+
module LanguageOperator
|
|
8
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: language-operator
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- James Ryan
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2025-11-05 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: |
|
|
13
|
+
This gem name is reserved for the Language Operator project.
|
|
14
|
+
|
|
15
|
+
Language Operator is a Kubernetes operator for deploying and managing
|
|
16
|
+
language model agents, tools, and models in Kubernetes clusters.
|
|
17
|
+
|
|
18
|
+
For more information, visit the project homepage.
|
|
19
|
+
email:
|
|
20
|
+
- james@theryans.io
|
|
21
|
+
executables: []
|
|
22
|
+
extensions: []
|
|
23
|
+
extra_rdoc_files: []
|
|
24
|
+
files:
|
|
25
|
+
- LICENSE
|
|
26
|
+
- README.md
|
|
27
|
+
- lib/language_operator.rb
|
|
28
|
+
- lib/language_operator/version.rb
|
|
29
|
+
homepage: https://github.com/yourusername/language-operator
|
|
30
|
+
licenses:
|
|
31
|
+
- MIT
|
|
32
|
+
metadata:
|
|
33
|
+
homepage_uri: https://github.com/yourusername/language-operator
|
|
34
|
+
source_code_uri: https://github.com/yourusername/language-operator
|
|
35
|
+
bug_tracker_uri: https://github.com/yourusername/language-operator/issues
|
|
36
|
+
documentation_uri: https://github.com/yourusername/language-operator
|
|
37
|
+
rdoc_options: []
|
|
38
|
+
require_paths:
|
|
39
|
+
- lib
|
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: 3.0.0
|
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
requirements: []
|
|
51
|
+
rubygems_version: 3.6.6
|
|
52
|
+
specification_version: 4
|
|
53
|
+
summary: Placeholder - Language Operator for Kubernetes
|
|
54
|
+
test_files: []
|