couchbase 3.5.0-arm64-darwin-22

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +202 -0
  3. data/README.md +154 -0
  4. data/ext/extconf.rb +0 -0
  5. data/lib/active_support/cache/couchbase_store.rb +339 -0
  6. data/lib/couchbase/3.0/libcouchbase.bundle +0 -0
  7. data/lib/couchbase/3.1/libcouchbase.bundle +0 -0
  8. data/lib/couchbase/3.2/libcouchbase.bundle +0 -0
  9. data/lib/couchbase/3.3/libcouchbase.bundle +0 -0
  10. data/lib/couchbase/analytics_options.rb +107 -0
  11. data/lib/couchbase/authenticator.rb +64 -0
  12. data/lib/couchbase/binary_collection.rb +128 -0
  13. data/lib/couchbase/binary_collection_options.rb +24 -0
  14. data/lib/couchbase/bucket.rb +144 -0
  15. data/lib/couchbase/cluster.rb +460 -0
  16. data/lib/couchbase/cluster_registry.rb +49 -0
  17. data/lib/couchbase/collection.rb +705 -0
  18. data/lib/couchbase/collection_options.rb +399 -0
  19. data/lib/couchbase/config_profiles.rb +55 -0
  20. data/lib/couchbase/configuration.rb +56 -0
  21. data/lib/couchbase/datastructures/couchbase_list.rb +160 -0
  22. data/lib/couchbase/datastructures/couchbase_map.rb +194 -0
  23. data/lib/couchbase/datastructures/couchbase_queue.rb +134 -0
  24. data/lib/couchbase/datastructures/couchbase_set.rb +128 -0
  25. data/lib/couchbase/datastructures.rb +24 -0
  26. data/lib/couchbase/diagnostics.rb +181 -0
  27. data/lib/couchbase/errors.rb +376 -0
  28. data/lib/couchbase/json_transcoder.rb +39 -0
  29. data/lib/couchbase/key_value_scan.rb +117 -0
  30. data/lib/couchbase/libcouchbase.rb +6 -0
  31. data/lib/couchbase/logger.rb +85 -0
  32. data/lib/couchbase/management/analytics_index_manager.rb +1127 -0
  33. data/lib/couchbase/management/bucket_manager.rb +443 -0
  34. data/lib/couchbase/management/collection_manager.rb +470 -0
  35. data/lib/couchbase/management/collection_query_index_manager.rb +222 -0
  36. data/lib/couchbase/management/query_index_manager.rb +617 -0
  37. data/lib/couchbase/management/scope_search_index_manager.rb +198 -0
  38. data/lib/couchbase/management/search_index_manager.rb +424 -0
  39. data/lib/couchbase/management/user_manager.rb +468 -0
  40. data/lib/couchbase/management/view_index_manager.rb +237 -0
  41. data/lib/couchbase/management.rb +29 -0
  42. data/lib/couchbase/mutation_state.rb +63 -0
  43. data/lib/couchbase/options.rb +2837 -0
  44. data/lib/couchbase/protostellar/binary_collection.rb +55 -0
  45. data/lib/couchbase/protostellar/bucket.rb +51 -0
  46. data/lib/couchbase/protostellar/client.rb +99 -0
  47. data/lib/couchbase/protostellar/cluster.rb +163 -0
  48. data/lib/couchbase/protostellar/collection.rb +152 -0
  49. data/lib/couchbase/protostellar/connect_options.rb +63 -0
  50. data/lib/couchbase/protostellar/error_handling.rb +203 -0
  51. data/lib/couchbase/protostellar/generated/admin/bucket/v1/bucket_pb.rb +61 -0
  52. data/lib/couchbase/protostellar/generated/admin/bucket/v1/bucket_services_pb.rb +35 -0
  53. data/lib/couchbase/protostellar/generated/admin/collection/v1/collection_pb.rb +57 -0
  54. data/lib/couchbase/protostellar/generated/admin/collection/v1/collection_services_pb.rb +36 -0
  55. data/lib/couchbase/protostellar/generated/admin/query/v1/query_pb.rb +61 -0
  56. data/lib/couchbase/protostellar/generated/admin/query/v1/query_services_pb.rb +37 -0
  57. data/lib/couchbase/protostellar/generated/admin/search/v1/search_pb.rb +72 -0
  58. data/lib/couchbase/protostellar/generated/admin/search/v1/search_services_pb.rb +44 -0
  59. data/lib/couchbase/protostellar/generated/analytics/v1/analytics_pb.rb +52 -0
  60. data/lib/couchbase/protostellar/generated/analytics/v1/analytics_services_pb.rb +30 -0
  61. data/lib/couchbase/protostellar/generated/internal/hooks/v1/hooks_pb.rb +70 -0
  62. data/lib/couchbase/protostellar/generated/internal/hooks/v1/hooks_services_pb.rb +36 -0
  63. data/lib/couchbase/protostellar/generated/kv/v1/kv_pb.rb +97 -0
  64. data/lib/couchbase/protostellar/generated/kv/v1/kv_services_pb.rb +46 -0
  65. data/lib/couchbase/protostellar/generated/query/v1/query_pb.rb +57 -0
  66. data/lib/couchbase/protostellar/generated/query/v1/query_services_pb.rb +30 -0
  67. data/lib/couchbase/protostellar/generated/routing/v1/routing_pb.rb +52 -0
  68. data/lib/couchbase/protostellar/generated/routing/v1/routing_services_pb.rb +30 -0
  69. data/lib/couchbase/protostellar/generated/search/v1/search_pb.rb +99 -0
  70. data/lib/couchbase/protostellar/generated/search/v1/search_services_pb.rb +30 -0
  71. data/lib/couchbase/protostellar/generated/transactions/v1/transactions_pb.rb +57 -0
  72. data/lib/couchbase/protostellar/generated/transactions/v1/transactions_services_pb.rb +36 -0
  73. data/lib/couchbase/protostellar/generated/view/v1/view_pb.rb +51 -0
  74. data/lib/couchbase/protostellar/generated/view/v1/view_services_pb.rb +30 -0
  75. data/lib/couchbase/protostellar/generated.rb +9 -0
  76. data/lib/couchbase/protostellar/management/bucket_manager.rb +67 -0
  77. data/lib/couchbase/protostellar/management/collection_manager.rb +94 -0
  78. data/lib/couchbase/protostellar/management/collection_query_index_manager.rb +124 -0
  79. data/lib/couchbase/protostellar/management/query_index_manager.rb +112 -0
  80. data/lib/couchbase/protostellar/management.rb +24 -0
  81. data/lib/couchbase/protostellar/request.rb +78 -0
  82. data/lib/couchbase/protostellar/request_behaviour.rb +42 -0
  83. data/lib/couchbase/protostellar/request_generator/admin/bucket.rb +124 -0
  84. data/lib/couchbase/protostellar/request_generator/admin/collection.rb +94 -0
  85. data/lib/couchbase/protostellar/request_generator/admin/query.rb +130 -0
  86. data/lib/couchbase/protostellar/request_generator/admin.rb +24 -0
  87. data/lib/couchbase/protostellar/request_generator/kv.rb +474 -0
  88. data/lib/couchbase/protostellar/request_generator/query.rb +133 -0
  89. data/lib/couchbase/protostellar/request_generator/search.rb +387 -0
  90. data/lib/couchbase/protostellar/request_generator.rb +26 -0
  91. data/lib/couchbase/protostellar/response_converter/admin/bucket.rb +55 -0
  92. data/lib/couchbase/protostellar/response_converter/admin/collection.rb +42 -0
  93. data/lib/couchbase/protostellar/response_converter/admin/query.rb +59 -0
  94. data/lib/couchbase/protostellar/response_converter/admin.rb +24 -0
  95. data/lib/couchbase/protostellar/response_converter/kv.rb +151 -0
  96. data/lib/couchbase/protostellar/response_converter/query.rb +84 -0
  97. data/lib/couchbase/protostellar/response_converter/search.rb +136 -0
  98. data/lib/couchbase/protostellar/response_converter.rb +26 -0
  99. data/lib/couchbase/protostellar/retry/action.rb +38 -0
  100. data/lib/couchbase/protostellar/retry/orchestrator.rb +60 -0
  101. data/lib/couchbase/protostellar/retry/reason.rb +67 -0
  102. data/lib/couchbase/protostellar/retry/strategies/best_effort.rb +49 -0
  103. data/lib/couchbase/protostellar/retry/strategies.rb +26 -0
  104. data/lib/couchbase/protostellar/retry.rb +28 -0
  105. data/lib/couchbase/protostellar/scope.rb +57 -0
  106. data/lib/couchbase/protostellar/timeout_defaults.rb +30 -0
  107. data/lib/couchbase/protostellar/timeouts.rb +83 -0
  108. data/lib/couchbase/protostellar.rb +29 -0
  109. data/lib/couchbase/query_options.rb +120 -0
  110. data/lib/couchbase/railtie.rb +45 -0
  111. data/lib/couchbase/raw_binary_transcoder.rb +37 -0
  112. data/lib/couchbase/raw_json_transcoder.rb +38 -0
  113. data/lib/couchbase/raw_string_transcoder.rb +40 -0
  114. data/lib/couchbase/scope.rb +256 -0
  115. data/lib/couchbase/search_options.rb +1622 -0
  116. data/lib/couchbase/subdoc.rb +290 -0
  117. data/lib/couchbase/transcoder_flags.rb +62 -0
  118. data/lib/couchbase/utils/generic_logger_adapter.rb +38 -0
  119. data/lib/couchbase/utils/stdlib_logger_adapter.rb +65 -0
  120. data/lib/couchbase/utils/time.rb +69 -0
  121. data/lib/couchbase/utils.rb +21 -0
  122. data/lib/couchbase/version.rb +23 -0
  123. data/lib/couchbase/view_options.rb +65 -0
  124. data/lib/couchbase.rb +28 -0
  125. data/lib/rails/generators/couchbase/config/config_generator.rb +27 -0
  126. metadata +191 -0
metadata ADDED
@@ -0,0 +1,191 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: couchbase
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.5.0
5
+ platform: arm64-darwin-22
6
+ authors:
7
+ - Sergey Avseyev
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: grpc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.59'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.59'
27
+ description: Modern SDK for Couchbase Server
28
+ email:
29
+ - sergey.avseyev@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE.txt
35
+ - README.md
36
+ - ext/extconf.rb
37
+ - lib/active_support/cache/couchbase_store.rb
38
+ - lib/couchbase.rb
39
+ - lib/couchbase/3.0/libcouchbase.bundle
40
+ - lib/couchbase/3.1/libcouchbase.bundle
41
+ - lib/couchbase/3.2/libcouchbase.bundle
42
+ - lib/couchbase/3.3/libcouchbase.bundle
43
+ - lib/couchbase/analytics_options.rb
44
+ - lib/couchbase/authenticator.rb
45
+ - lib/couchbase/binary_collection.rb
46
+ - lib/couchbase/binary_collection_options.rb
47
+ - lib/couchbase/bucket.rb
48
+ - lib/couchbase/cluster.rb
49
+ - lib/couchbase/cluster_registry.rb
50
+ - lib/couchbase/collection.rb
51
+ - lib/couchbase/collection_options.rb
52
+ - lib/couchbase/config_profiles.rb
53
+ - lib/couchbase/configuration.rb
54
+ - lib/couchbase/datastructures.rb
55
+ - lib/couchbase/datastructures/couchbase_list.rb
56
+ - lib/couchbase/datastructures/couchbase_map.rb
57
+ - lib/couchbase/datastructures/couchbase_queue.rb
58
+ - lib/couchbase/datastructures/couchbase_set.rb
59
+ - lib/couchbase/diagnostics.rb
60
+ - lib/couchbase/errors.rb
61
+ - lib/couchbase/json_transcoder.rb
62
+ - lib/couchbase/key_value_scan.rb
63
+ - lib/couchbase/libcouchbase.rb
64
+ - lib/couchbase/logger.rb
65
+ - lib/couchbase/management.rb
66
+ - lib/couchbase/management/analytics_index_manager.rb
67
+ - lib/couchbase/management/bucket_manager.rb
68
+ - lib/couchbase/management/collection_manager.rb
69
+ - lib/couchbase/management/collection_query_index_manager.rb
70
+ - lib/couchbase/management/query_index_manager.rb
71
+ - lib/couchbase/management/scope_search_index_manager.rb
72
+ - lib/couchbase/management/search_index_manager.rb
73
+ - lib/couchbase/management/user_manager.rb
74
+ - lib/couchbase/management/view_index_manager.rb
75
+ - lib/couchbase/mutation_state.rb
76
+ - lib/couchbase/options.rb
77
+ - lib/couchbase/protostellar.rb
78
+ - lib/couchbase/protostellar/binary_collection.rb
79
+ - lib/couchbase/protostellar/bucket.rb
80
+ - lib/couchbase/protostellar/client.rb
81
+ - lib/couchbase/protostellar/cluster.rb
82
+ - lib/couchbase/protostellar/collection.rb
83
+ - lib/couchbase/protostellar/connect_options.rb
84
+ - lib/couchbase/protostellar/error_handling.rb
85
+ - lib/couchbase/protostellar/generated.rb
86
+ - lib/couchbase/protostellar/generated/admin/bucket/v1/bucket_pb.rb
87
+ - lib/couchbase/protostellar/generated/admin/bucket/v1/bucket_services_pb.rb
88
+ - lib/couchbase/protostellar/generated/admin/collection/v1/collection_pb.rb
89
+ - lib/couchbase/protostellar/generated/admin/collection/v1/collection_services_pb.rb
90
+ - lib/couchbase/protostellar/generated/admin/query/v1/query_pb.rb
91
+ - lib/couchbase/protostellar/generated/admin/query/v1/query_services_pb.rb
92
+ - lib/couchbase/protostellar/generated/admin/search/v1/search_pb.rb
93
+ - lib/couchbase/protostellar/generated/admin/search/v1/search_services_pb.rb
94
+ - lib/couchbase/protostellar/generated/analytics/v1/analytics_pb.rb
95
+ - lib/couchbase/protostellar/generated/analytics/v1/analytics_services_pb.rb
96
+ - lib/couchbase/protostellar/generated/internal/hooks/v1/hooks_pb.rb
97
+ - lib/couchbase/protostellar/generated/internal/hooks/v1/hooks_services_pb.rb
98
+ - lib/couchbase/protostellar/generated/kv/v1/kv_pb.rb
99
+ - lib/couchbase/protostellar/generated/kv/v1/kv_services_pb.rb
100
+ - lib/couchbase/protostellar/generated/query/v1/query_pb.rb
101
+ - lib/couchbase/protostellar/generated/query/v1/query_services_pb.rb
102
+ - lib/couchbase/protostellar/generated/routing/v1/routing_pb.rb
103
+ - lib/couchbase/protostellar/generated/routing/v1/routing_services_pb.rb
104
+ - lib/couchbase/protostellar/generated/search/v1/search_pb.rb
105
+ - lib/couchbase/protostellar/generated/search/v1/search_services_pb.rb
106
+ - lib/couchbase/protostellar/generated/transactions/v1/transactions_pb.rb
107
+ - lib/couchbase/protostellar/generated/transactions/v1/transactions_services_pb.rb
108
+ - lib/couchbase/protostellar/generated/view/v1/view_pb.rb
109
+ - lib/couchbase/protostellar/generated/view/v1/view_services_pb.rb
110
+ - lib/couchbase/protostellar/management.rb
111
+ - lib/couchbase/protostellar/management/bucket_manager.rb
112
+ - lib/couchbase/protostellar/management/collection_manager.rb
113
+ - lib/couchbase/protostellar/management/collection_query_index_manager.rb
114
+ - lib/couchbase/protostellar/management/query_index_manager.rb
115
+ - lib/couchbase/protostellar/request.rb
116
+ - lib/couchbase/protostellar/request_behaviour.rb
117
+ - lib/couchbase/protostellar/request_generator.rb
118
+ - lib/couchbase/protostellar/request_generator/admin.rb
119
+ - lib/couchbase/protostellar/request_generator/admin/bucket.rb
120
+ - lib/couchbase/protostellar/request_generator/admin/collection.rb
121
+ - lib/couchbase/protostellar/request_generator/admin/query.rb
122
+ - lib/couchbase/protostellar/request_generator/kv.rb
123
+ - lib/couchbase/protostellar/request_generator/query.rb
124
+ - lib/couchbase/protostellar/request_generator/search.rb
125
+ - lib/couchbase/protostellar/response_converter.rb
126
+ - lib/couchbase/protostellar/response_converter/admin.rb
127
+ - lib/couchbase/protostellar/response_converter/admin/bucket.rb
128
+ - lib/couchbase/protostellar/response_converter/admin/collection.rb
129
+ - lib/couchbase/protostellar/response_converter/admin/query.rb
130
+ - lib/couchbase/protostellar/response_converter/kv.rb
131
+ - lib/couchbase/protostellar/response_converter/query.rb
132
+ - lib/couchbase/protostellar/response_converter/search.rb
133
+ - lib/couchbase/protostellar/retry.rb
134
+ - lib/couchbase/protostellar/retry/action.rb
135
+ - lib/couchbase/protostellar/retry/orchestrator.rb
136
+ - lib/couchbase/protostellar/retry/reason.rb
137
+ - lib/couchbase/protostellar/retry/strategies.rb
138
+ - lib/couchbase/protostellar/retry/strategies/best_effort.rb
139
+ - lib/couchbase/protostellar/scope.rb
140
+ - lib/couchbase/protostellar/timeout_defaults.rb
141
+ - lib/couchbase/protostellar/timeouts.rb
142
+ - lib/couchbase/query_options.rb
143
+ - lib/couchbase/railtie.rb
144
+ - lib/couchbase/raw_binary_transcoder.rb
145
+ - lib/couchbase/raw_json_transcoder.rb
146
+ - lib/couchbase/raw_string_transcoder.rb
147
+ - lib/couchbase/scope.rb
148
+ - lib/couchbase/search_options.rb
149
+ - lib/couchbase/subdoc.rb
150
+ - lib/couchbase/transcoder_flags.rb
151
+ - lib/couchbase/utils.rb
152
+ - lib/couchbase/utils/generic_logger_adapter.rb
153
+ - lib/couchbase/utils/stdlib_logger_adapter.rb
154
+ - lib/couchbase/utils/time.rb
155
+ - lib/couchbase/version.rb
156
+ - lib/couchbase/view_options.rb
157
+ - lib/rails/generators/couchbase/config/config_generator.rb
158
+ homepage: https://www.couchbase.com
159
+ licenses:
160
+ - Apache-2.0
161
+ metadata:
162
+ homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
163
+ bug_tracker_uri: https://couchbase.com/issues/browse/RCBC
164
+ mailing_list_uri: https://forums.couchbase.com/c/ruby-sdk
165
+ source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.5.0
166
+ changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.0
167
+ documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.0/index.html
168
+ github_repo: ssh://github.com/couchbase/couchbase-ruby-client
169
+ rubygems_mfa_required: 'true'
170
+ post_install_message:
171
+ rdoc_options:
172
+ - "--exclude"
173
+ - ext/
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">"
179
+ - !ruby/object:Gem::Version
180
+ version: '3.0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: '0'
186
+ requirements: []
187
+ rubygems_version: 3.5.3
188
+ signing_key:
189
+ specification_version: 4
190
+ summary: SDK for Couchbase Server
191
+ test_files: []