Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibondarev committed May 10, 2023
1 parent 8103c56 commit e7447f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
qdrant-ruby (0.9.2)
faraday (~> 1)
faraday_middleware (~> 1)

GEM
remote: https://rubygems.org/
Expand All @@ -14,6 +15,8 @@ GEM
faraday (1.2.0)
multipart-post (>= 1.2, < 3)
ruby2_keywords
faraday_middleware (1.2.0)
faraday (~> 1.0)
json (2.6.3)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
Expand Down
1 change: 1 addition & 0 deletions lib/qdrant/client.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

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

module Qdrant
Expand Down
1 change: 1 addition & 0 deletions qdrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ Gem::Specification.new do |spec|
# guide at: https://bundler.io/guides/creating_gem.html

spec.add_dependency "faraday", "~> 1"
spec.add_dependency "faraday_middleware", "~> 1"
spec.add_development_dependency "pry-byebug", "~> 3.9"
end
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# frozen_string_literal: true

require "json"
require "ostruct"
require "qdrant"
require "faraday"
require "faraday_middleware"

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

0 comments on commit e7447f2

Please sign in to comment.