This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
func_bot.gemspec
38 lines (32 loc) · 1.66 KB
/
func_bot.gemspec
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
require_relative "lib/func_bot/version"
Gem::Specification.new do |spec|
spec.name = "func_bot"
spec.version = FuncBot::VERSION
spec.authors = ["lbp"]
spec.email = ["[email protected]"]
spec.summary = "FuncBot is a Rails gem built on top of the ruby-openai gem. It helps you create chatbots that can answer questions by calling on functions you define. It's goal is to provide a simple interface to consume OpenAI's Function Calling API."
spec.description = spec.summary
spec.homepage = "https://github.com/leopolicastro/func_bot"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# to allow pushing to a single host or delete this section to allow pushing to any host.
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.0.5"
spec.add_dependency "ruby-openai"
spec.add_development_dependency "vcr"
spec.add_development_dependency "webmock"
spec.add_development_dependency "standard"
spec.add_development_dependency "byebug"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "factory_bot_rails"
spec.add_development_dependency "faker"
spec.add_development_dependency "shoulda-matchers"
spec.add_development_dependency "coderay"
spec.add_development_dependency "generator_spec"
end