-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasimov.gemspec
32 lines (26 loc) · 1.14 KB
/
asimov.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
require_relative "lib/asimov/version"
Gem::Specification.new do |spec|
spec.name = "asimov"
spec.version = Asimov::VERSION
spec.authors = ["Peter M. Goldstein"]
spec.email = ["peter.m.goldstein@gmail.com"]
spec.summary = "A Ruby client for the OpenAI API support for multiple API " \
"configurations in a single app, robust and simple error handling, " \
"and network-level configuration."
spec.description = spec.summary
spec.homepage = "https://github.com/petergoldstein/asimov"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/petergoldstein/asimov"
spec.metadata["changelog_uri"] = "https://github.com/petergoldstein/asimov/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.glob("lib/**/*") + [
"LICENSE.txt",
"README.md",
"CHANGELOG.md",
"Gemfile"
]
spec.require_paths = ["lib"]
spec.add_dependency "httparty", ">= 0.18.1", "< 0.22.0"
end