-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
openai.gemspec
35 lines (31 loc) · 1.11 KB
/
openai.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
require_relative "lib/openai/version"
Gem::Specification.new do |spec|
spec.name = "openai"
spec.version = OpenAI::VERSION
spec.authors = ["Erik Berlin", "Nilesh Trivedi"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "A Ruby interface to the OpenAI API."
spec.homepage = "https://sferik.github.io/openai-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.3"
spec.platform = Gem::Platform::RUBY
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"rubygems_mfa_required" => "true",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/sferik/openai-ruby",
"changelog_uri" => "https://github.com/sferik/openai-ruby/blob/master/CHANGELOG.md",
"bug_tracker_uri" => "https://github.com/sferik/openai-ruby/issues",
"documentation_uri" => "https://rubydoc.info/gems/openai/"
}
spec.files = Dir[
"bin/*",
"lib/**/*.rb",
"sig/*.rbs",
"*.md",
"LICENSE.txt"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end