-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_pi.gemspec
More file actions
41 lines (34 loc) · 1.25 KB
/
ruby_pi.gemspec
File metadata and controls
41 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true
require_relative "lib/ruby_pi/version"
Gem::Specification.new do |spec|
spec.name = "ruby_pi"
spec.version = RubyPi::VERSION
spec.authors = [ "Mathias Maisberger" ]
spec.email = [ "me@hiasinho.com" ]
spec.summary = "A small Ruby library for building tool-using LLM agents"
spec.description = "RubyPi is a lightweight Ruby agent runtime with tools, streaming, provider and model registries, and an OpenAI-compatible adapter."
spec.homepage = "https://github.com/hiasinho/ruby-pi"
spec.license = "0BSD"
spec.required_ruby_version = ">= 3.4"
spec.metadata = {
"documentation_uri" => "#{spec.homepage}/blob/main/README.md",
"source_code_uri" => spec.homepage,
"changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
"bug_tracker_uri" => "#{spec.homepage}/issues",
"rubygems_mfa_required" => "true"
}
spec.files = Dir.chdir(__dir__) do
Dir[
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**/*.rb"
]
end
spec.require_paths = [ "lib" ]
spec.add_development_dependency "minitest"
spec.add_development_dependency "rake"
spec.add_development_dependency "rubocop-rails-omakase"
spec.add_development_dependency "vcr"
spec.add_development_dependency "webmock"
end