ruby_llm-code 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.minimal.md +25 -0
- data/lib/ruby_llm/code/version.rb +7 -0
- data/lib/ruby_llm-code.minimal.rb +17 -0
- metadata +62 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 47cc85719d20d745a15640527e100d7fa2e787d3d7451cd760873fd74613f3d4
|
4
|
+
data.tar.gz: a8e607e7aaae13e317ac4789445f503cc5d1e6b151666c62d7114addb401238e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1c2a093bb5317dbde2a6bc95a350a71db3429f574d4d49239c8e9f460114b1475ef626416150c8646aadff85db214096b0f488eae2b471d3cd03e45d5c01500e
|
7
|
+
data.tar.gz: a945435dc363f6f93300c367077f86f8a8c97d59ba26c618758b2ff4e5fb979d6fd27e41369e8d2c8dc184e9920e8eeaa0448363c3db267b55e33ee0d3bd3b70
|
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.minimal.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# RubyLLM Code
|
2
|
+
|
3
|
+
AI-powered coding assistant for Ruby developers.
|
4
|
+
|
5
|
+
## Status
|
6
|
+
|
7
|
+
This is a placeholder release. The full implementation is coming soon!
|
8
|
+
|
9
|
+
## About
|
10
|
+
|
11
|
+
RubyLLM Code will be a Ruby implementation of an AI-powered coding assistant, built on top of the [RubyLLM](https://github.com/crmne/ruby_llm) gem.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
```bash
|
16
|
+
gem install ruby_llm-code
|
17
|
+
```
|
18
|
+
|
19
|
+
## Stay Tuned
|
20
|
+
|
21
|
+
Watch this repository for updates. The full implementation with file operations, shell execution, web search, and more is under active development.
|
22
|
+
|
23
|
+
## License
|
24
|
+
|
25
|
+
MIT License - see LICENSE file for details.
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'ruby_llm/code/version'
|
4
|
+
|
5
|
+
module RubyLLM
|
6
|
+
# rubocop:disable Style/Documentation
|
7
|
+
module Code
|
8
|
+
class Error < StandardError; end
|
9
|
+
|
10
|
+
# Placeholder implementation
|
11
|
+
# Full RubyLLM Code coming soon!
|
12
|
+
def self.info
|
13
|
+
"RubyLLM Code #{VERSION} - AI-powered coding assistant (coming soon)"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
# rubocop:enable Style/Documentation
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby_llm-code
|
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
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 1.5.1
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.5.1
|
26
|
+
description: RubyLLM Code will provide an AI-powered coding assistant. This is a placeholder
|
27
|
+
release - full implementation coming soon!
|
28
|
+
email:
|
29
|
+
- carmine@paolino.me
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- LICENSE
|
35
|
+
- README.minimal.md
|
36
|
+
- lib/ruby_llm-code.minimal.rb
|
37
|
+
- lib/ruby_llm/code/version.rb
|
38
|
+
homepage: https://github.com/crmne/ruby_llm-code
|
39
|
+
licenses:
|
40
|
+
- MIT
|
41
|
+
metadata:
|
42
|
+
homepage_uri: https://github.com/crmne/ruby_llm-code
|
43
|
+
source_code_uri: https://github.com/crmne/ruby_llm-code
|
44
|
+
rubygems_mfa_required: 'true'
|
45
|
+
rdoc_options: []
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.2.0
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubygems_version: 3.6.9
|
60
|
+
specification_version: 4
|
61
|
+
summary: AI-powered coding assistant for Ruby (coming soon)
|
62
|
+
test_files: []
|