-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_llm-test.gemspec
More file actions
26 lines (20 loc) · 1.05 KB
/
ruby_llm-test.gemspec
File metadata and controls
26 lines (20 loc) · 1.05 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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ruby_llm/test/version"
Gem::Specification.new do |spec|
spec.name = "ruby_llm-test"
spec.version = RubyLLM::Test::VERSION
spec.authors = ["Todd Kummer"]
spec.email = ["todd@rockridgesolutions.com"]
spec.summary = "Test application logic by stubbing responses from a RubyLLM::Provider."
spec.description = "Provides a RubyLLM::Provider that allows you to stub responses for testing purposes. You can " \
"stub individual responses or a sequence of responses, and you can also temporarily stub " \
"responses within a block."
spec.homepage = "https://github.com/RockSolt/ruby_llm-test"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.3"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["homepage_uri"] = spec.homepage
spec.files = Dir["lib/**/*", "LICENSE.txt", "README.md"]
spec.add_dependency "ruby_llm", ">= 1.5.0"
end