-
Notifications
You must be signed in to change notification settings - Fork 0
/
voyageai-ruby.gemspec
34 lines (27 loc) · 1.16 KB
/
voyageai-ruby.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
# frozen_string_literal: true
require_relative "lib/voyageai/version"
Gem::Specification.new do |s|
s.name = "voyageai-ruby"
s.version = VoyageAI::VERSION
s.authors = ["Matt Culpepper"]
s.email = ["Matt Culpepper"]
s.homepage = "https://github.com/mculp/voyageai-ruby"
s.summary = "Voyage AI embeddings"
s.description = "Voyage AI API Wrapper"
s.metadata = {
"bug_tracker_uri" => "https://github.com/mculp/voyageai-ruby/issues",
"changelog_uri" => "https://github.com/mculp/voyageai-ruby/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/mculp/voyageai-ruby",
"homepage_uri" => "https://github.com/mculp/voyageai-ruby",
"source_code_uri" => "https://github.com/mculp/voyageai-ruby"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + Dir.glob("bin/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.7"
s.add_runtime_dependency "http", "~> 5.0"
s.add_development_dependency "bundler", ">= 1.15"
s.add_development_dependency "combustion", ">= 1.1"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "rspec", ">= 3.9"
end