-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathai-chat.gemspec
More file actions
32 lines (28 loc) · 1.24 KB
/
ai-chat.gemspec
File metadata and controls
32 lines (28 loc) · 1.24 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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "ai-chat"
spec.version = "0.6.1"
spec.authors = ["Raghu Betina", "Jelani Woods"]
spec.email = ["raghu@firstdraft.com", "jelani@firstdraft.com"]
spec.homepage = "https://github.com/firstdraft/ai-chat"
spec.summary = "A beginner-friendly Ruby interface for OpenAI's API"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/firstdraft/ai-chat/issues",
"changelog_uri" => "https://github.com/firstdraft/ai-chat/blob/main/CHANGELOG.md",
"homepage_uri" => "https://rubygems.org/gems/ai-chat",
"label" => "AI Chat",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/firstdraft/ai-chat"
}
spec.required_ruby_version = ">= 3.2"
spec.add_runtime_dependency "openai", "~> 0.59"
spec.add_runtime_dependency "marcel", "~> 1.0"
spec.add_runtime_dependency "base64", "~> 0.1", "> 0.1.1"
spec.add_runtime_dependency "json", "~> 2.0"
spec.add_runtime_dependency "tty-spinner", "~> 0.9.3"
spec.add_runtime_dependency "amazing_print", "~> 2.0"
spec.add_development_dependency "dotenv", ">= 1.0.0"
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.files = Dir["*.gemspec", "lib/**/*"]
end