File tree Expand file tree Collapse file tree 4 files changed +7
-12
lines changed Expand file tree Collapse file tree 4 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 22 remote: .
33 specs:
44 qdrant-ruby (0.9.2 )
5- faraday (~> 1 )
6- faraday_middleware (~> 1 )
5+ faraday (>= 2.0.1 , < 3 )
76
87GEM
98 remote: https://rubygems.org/
1211 byebug (11.1.3 )
1312 coderay (1.1.3 )
1413 diff-lcs (1.5.0 )
15- faraday (1.2.0 )
16- multipart-post (>= 1.2 , < 3 )
17- ruby2_keywords
18- faraday_middleware (1.2.0 )
19- faraday (~> 1.0 )
14+ faraday (2.7.10 )
15+ faraday-net_http (>= 2.0 , < 3.1 )
16+ ruby2_keywords (>= 0.0.4 )
17+ faraday-net_http (3.0.2 )
2018 json (2.6.3 )
2119 language_server-protocol (3.17.0.3 )
2220 method_source (1.0.0 )
23- multipart-post (2.3.0 )
2421 parallel (1.22.1 )
2522 parser (3.2.1.1 )
2623 ast (~> 2.4.1 )
7269
7370PLATFORMS
7471 x86_64-darwin-19
72+ x86_64-darwin-21
7573 x86_64-linux
7674
7775DEPENDENCIES
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33require "faraday"
4- require "faraday_middleware"
54require "forwardable"
65
76module Qdrant
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ Gem::Specification.new do |spec|
3535 # For more information and examples about making a new gem, check out our
3636 # guide at: https://bundler.io/guides/creating_gem.html
3737
38- spec . add_dependency "faraday" , "~> 1"
39- spec . add_dependency "faraday_middleware" , "~> 1"
38+ spec . add_dependency "faraday" , ">= 2.0.1" , "< 3"
4039 spec . add_development_dependency "pry-byebug" , "~> 3.9"
4140end
Original file line number Diff line number Diff line change 44require "ostruct"
55require "qdrant"
66require "faraday"
7- require "faraday_middleware"
87
98RSpec . configure do |config |
109 # Enable flags like --only-failures and --next-failure
You can’t perform that action at this time.
0 commit comments