Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates faraday dependency #4

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ PATH
remote: .
specs:
qdrant-ruby (0.9.2)
faraday (~> 1)
faraday_middleware (~> 1)
faraday (>= 2.0.1, < 3)

GEM
remote: https://rubygems.org/
Expand All @@ -12,15 +11,13 @@ GEM
byebug (11.1.3)
coderay (1.1.3)
diff-lcs (1.5.0)
faraday (1.2.0)
multipart-post (>= 1.2, < 3)
ruby2_keywords
faraday_middleware (1.2.0)
faraday (~> 1.0)
faraday (2.7.10)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
json (2.6.3)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
multipart-post (2.3.0)
parallel (1.22.1)
parser (3.2.1.1)
ast (~> 2.4.1)
Expand Down Expand Up @@ -72,6 +69,7 @@ GEM

PLATFORMS
x86_64-darwin-19
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
Expand Down
1 change: 0 additions & 1 deletion lib/qdrant/client.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require "faraday"
require "faraday_middleware"
require "forwardable"

module Qdrant
Expand Down
3 changes: 1 addition & 2 deletions qdrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Gem::Specification.new do |spec|
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html

spec.add_dependency "faraday", "~> 1"
spec.add_dependency "faraday_middleware", "~> 1"
spec.add_dependency "faraday", ">= 2.0.1", "< 3"
spec.add_development_dependency "pry-byebug", "~> 3.9"
end
1 change: 0 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
require "ostruct"
require "qdrant"
require "faraday"
require "faraday_middleware"

RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
Expand Down