qdrant-ruby 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/qdrant.rb ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "qdrant/version"
4
+
5
+ module Qdrant
6
+ autoload :Aliases, "qdrant/aliases"
7
+ autoload :Base, "qdrant/base"
8
+ autoload :Collections, "qdrant/collections"
9
+ autoload :Client, "qdrant/client"
10
+ autoload :Clusters, "qdrant/clusters"
11
+ autoload :Collections, "qdrant/collections"
12
+ autoload :Error, "qdrant/error"
13
+ autoload :Points, "qdrant/points"
14
+ autoload :Service, "qdrant/service"
15
+ autoload :Snapshots, "qdrant/snapshots"
16
+ end
data/sig/qdrant.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Qdrant
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: qdrant-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.0
5
+ platform: ruby
6
+ authors:
7
+ - Andrei Bondarev
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-04-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry-byebug
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.9'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.9'
41
+ description: Ruby wrapper for the Qdrant vector search database API
42
+ email:
43
+ - andrei@sourcelabs.io
44
+ - andrei.bondarev13@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".rspec"
50
+ - CHANGELOG.md
51
+ - Gemfile
52
+ - Gemfile.lock
53
+ - LICENSE
54
+ - README.md
55
+ - Rakefile
56
+ - lib/qdrant.rb
57
+ - lib/qdrant/aliases.rb
58
+ - lib/qdrant/base.rb
59
+ - lib/qdrant/client.rb
60
+ - lib/qdrant/clusters.rb
61
+ - lib/qdrant/collections.rb
62
+ - lib/qdrant/error.rb
63
+ - lib/qdrant/points.rb
64
+ - lib/qdrant/service.rb
65
+ - lib/qdrant/snapshots.rb
66
+ - lib/qdrant/version.rb
67
+ - sig/qdrant.rbs
68
+ homepage: https://github.com/andreibondarev/qdrant-ruby
69
+ licenses:
70
+ - Apache-2.0
71
+ metadata:
72
+ homepage_uri: https://github.com/andreibondarev/qdrant-ruby
73
+ source_code_uri: https://github.com/andreibondarev/qdrant-ruby
74
+ changelog_uri: https://github.com/andreibondarev/qdrant-ruby/CHANGELOG.md
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 2.6.0
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubygems_version: 3.2.3
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: Ruby wrapper for the Qdrant vector search database API
94
+ test_files: []