-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
286 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec | ||
|
||
gem "dotenv", "~> 2.8" | ||
gem "awesome_print", "~> 1.9" | ||
gem "rake", "~> 13.0" | ||
gem "debug", "~> 1.7" | ||
gem "rspec", "~> 3.12" | ||
gem "webmock", "~> 3.14" | ||
gem "vcr", "~> 6.1" | ||
gem "standard", "~> 1.33" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,4 +43,4 @@ def index(index_name) | |
Pinecone::Vector.new(index_name) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Pinecone | ||
VERSION = "0.1.71".freeze | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,18 @@ | ||
require_relative "lib/pinecone/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "pinecone" | ||
s.version = Pinecone::VERSION | ||
s.summary = "Ruby client library for Pinecone Vector DB" | ||
s.name = "pinecone" | ||
s.version = Pinecone::VERSION | ||
s.summary = "Ruby client library for Pinecone Vector DB" | ||
s.description = "Ruby client library which includes index and vector operations to upload embeddings into Pinecone and do similarity searches on them." | ||
s.authors = ["Scott Carleton"] | ||
s.email = "[email protected]" | ||
s.files = Dir["lib/pinecone.rb", "lib/pinecone/**/*.rb"] | ||
s.homepage = "https://rubygems.org/gems/pinecone" | ||
s.metadata = {"source_code_uri" => "https://github.com/ScotterC/pinecone"} | ||
s.license = "MIT" | ||
s.authors = ["Scott Carleton"] | ||
s.email = "[email protected]" | ||
s.files = Dir["lib/pinecone.rb", "lib/pinecone/**/*.rb"] | ||
s.homepage = "https://rubygems.org/gems/pinecone" | ||
s.metadata = {"source_code_uri" => "https://github.com/ScotterC/pinecone"} | ||
s.license = "MIT" | ||
|
||
s.add_dependency "httparty", "~> 0.21.0" | ||
s.add_dependency "dry-struct", "~> 1.6.0" | ||
s.add_dependency "dry-validation", "~> 1.10.0" | ||
|
||
s.add_development_dependency "dotenv", "~> 2.8" | ||
s.add_development_dependency "awesome_print", '~> 1.9' | ||
s.add_development_dependency "rake", "~> 13.0" | ||
s.add_development_dependency "debug", "~> 1.7" | ||
s.add_development_dependency "rspec", "~> 3.12" | ||
s.add_development_dependency "webmock", "~> 3.14" | ||
s.add_development_dependency "vcr", "~> 6.1" | ||
end |
Oops, something went wrong.