rubyllm 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 +13 -0
  4. data/lib/rubyllm.rb +3 -0
  5. metadata +61 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 118d51916f86586f48d6845a05545b1d3052dd2c60ae12b591ed199ca67b6d47
4
+ data.tar.gz: 425915a8052153c9c62454d66f442c60b6078434bf14423f22c06fe78a5f2a18
5
+ SHA512:
6
+ metadata.gz: ad03ae2ed1bfe76f5ca9b2def801d7a65a8b676666b83150b12c3ea14e6415e6e7ffe44c282eb48896e78228771428b05c671a539be36d23af6ad17264f98805
7
+ data.tar.gz: 9b9f9f2e180f6d386bdc4a10a1ff9e00346b95cd6e4cf4cb69a736b6acbcdb5713dc74e7169a6a2eb4f59241a559c8e10f8230895b73f76513ef0f525065de12
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,13 @@
1
+ # rubyllm
2
+
3
+ RubyLLM, without the underscore.
4
+
5
+ This gem is an alias for [ruby_llm](https://github.com/crmne/ruby_llm): installing `rubyllm` installs `ruby_llm`, and `require "rubyllm"` loads it. Use whichever name you like; they are the same library.
6
+
7
+ ```ruby
8
+ gem 'rubyllm'
9
+ ```
10
+
11
+ ## License
12
+
13
+ MIT License - see LICENSE file for details.
data/lib/rubyllm.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'ruby_llm'
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubyllm
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: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ description: 'An alias for the ruby_llm gem: installing rubyllm installs ruby_llm,
27
+ and requiring rubyllm loads it. Use whichever name you like; they are the same library.'
28
+ email:
29
+ - carmine@paolino.me
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - lib/rubyllm.rb
37
+ homepage: https://github.com/crmne/ruby_llm
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ homepage_uri: https://github.com/crmne/ruby_llm
42
+ source_code_uri: https://github.com/crmne/ruby_llm
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: 3.1.3
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: RubyLLM, without the underscore.
61
+ test_files: []