ruby_llm-chat 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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +25 -0
  4. data/lib/ruby_llm-chat.rb +4 -0
  5. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c07813d895bf8dc8595b97fd3a6cad564831fac6c206d39ff3adf7b8a083c68f
4
+ data.tar.gz: 25b558775c71b9dfb9fcedccc7180547cfa7c38f128e38179c37830c314da1d0
5
+ SHA512:
6
+ metadata.gz: a1320da9af6c92015dcf5497374967c53e7b617cb90202f5fc89a43079d193c4c0832451e83a1c095871c02a12fa3c49ad70bc2e6f5f2e97714c49a5b5d1953f
7
+ data.tar.gz: 7e966f266f87cd85c1e6c7ff44525a41fc1c71fd8721e3be1d1176cd93ae7c747c43f18853f672723509433f530daa5db4cffb446111f173ea579b533365f154
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.md ADDED
@@ -0,0 +1,25 @@
1
+ # RubyLLM Chat
2
+
3
+ A drop-in chat interface for Rails applications, built on RubyLLM.
4
+
5
+ ## Status
6
+
7
+ This is a placeholder release. The full implementation is coming soon!
8
+
9
+ ## About
10
+
11
+ RubyLLM Chat will package the chat experience for Rails apps built on the [RubyLLM](https://github.com/crmne/ruby_llm) gem.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ gem install ruby_llm-chat
17
+ ```
18
+
19
+ ## Stay Tuned
20
+
21
+ Watch this repository for updates.
22
+
23
+ ## License
24
+
25
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Placeholder release reserving the ruby_llm-chat gem name.
4
+ # The full implementation is coming soon.
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_llm-chat
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
+ description: RubyLLM Chat will package the chat experience for Rails apps built on
13
+ RubyLLM. This is a placeholder release - full implementation coming soon!
14
+ email:
15
+ - carmine@paolino.me
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/ruby_llm-chat.rb
23
+ homepage: https://github.com/crmne/ruby_llm-chat
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/crmne/ruby_llm-chat
28
+ source_code_uri: https://github.com/crmne/ruby_llm-chat
29
+ rubygems_mfa_required: 'true'
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 3.1.3
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 4.0.16
45
+ specification_version: 4
46
+ summary: A drop-in chat interface for Rails applications, built on RubyLLM.
47
+ test_files: []