couchbase 3.4.0-arm64-darwin-20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +202 -0
- data/README.md +154 -0
- data/ext/extconf.rb +0 -0
- data/lib/active_support/cache/couchbase_store.rb +339 -0
- data/lib/couchbase/analytics_options.rb +107 -0
- data/lib/couchbase/authenticator.rb +65 -0
- data/lib/couchbase/binary_collection.rb +128 -0
- data/lib/couchbase/binary_collection_options.rb +24 -0
- data/lib/couchbase/bucket.rb +144 -0
- data/lib/couchbase/cluster.rb +439 -0
- data/lib/couchbase/cluster_registry.rb +44 -0
- data/lib/couchbase/collection.rb +589 -0
- data/lib/couchbase/collection_options.rb +300 -0
- data/lib/couchbase/config_profiles.rb +55 -0
- data/lib/couchbase/configuration.rb +57 -0
- data/lib/couchbase/datastructures/couchbase_list.rb +160 -0
- data/lib/couchbase/datastructures/couchbase_map.rb +194 -0
- data/lib/couchbase/datastructures/couchbase_queue.rb +134 -0
- data/lib/couchbase/datastructures/couchbase_set.rb +128 -0
- data/lib/couchbase/datastructures.rb +24 -0
- data/lib/couchbase/diagnostics.rb +181 -0
- data/lib/couchbase/errors.rb +351 -0
- data/lib/couchbase/json_transcoder.rb +32 -0
- data/lib/couchbase/libcouchbase.bundle +0 -0
- data/lib/couchbase/logger.rb +85 -0
- data/lib/couchbase/management/analytics_index_manager.rb +1127 -0
- data/lib/couchbase/management/bucket_manager.rb +436 -0
- data/lib/couchbase/management/collection_manager.rb +321 -0
- data/lib/couchbase/management/query_index_manager.rb +520 -0
- data/lib/couchbase/management/search_index_manager.rb +408 -0
- data/lib/couchbase/management/user_manager.rb +468 -0
- data/lib/couchbase/management/view_index_manager.rb +237 -0
- data/lib/couchbase/management.rb +27 -0
- data/lib/couchbase/mutation_state.rb +63 -0
- data/lib/couchbase/options.rb +2580 -0
- data/lib/couchbase/query_options.rb +120 -0
- data/lib/couchbase/railtie.rb +45 -0
- data/lib/couchbase/scope.rb +232 -0
- data/lib/couchbase/search_options.rb +1570 -0
- data/lib/couchbase/subdoc.rb +290 -0
- data/lib/couchbase/utils/generic_logger_adapter.rb +38 -0
- data/lib/couchbase/utils/stdlib_logger_adapter.rb +65 -0
- data/lib/couchbase/utils/time.rb +56 -0
- data/lib/couchbase/utils.rb +21 -0
- data/lib/couchbase/version.rb +23 -0
- data/lib/couchbase/view_options.rb +65 -0
- data/lib/couchbase.rb +20 -0
- data/lib/rails/generators/couchbase/config/config_generator.rb +27 -0
- metadata +101 -0
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: couchbase
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.4.0
|
5
|
+
platform: arm64-darwin-20
|
6
|
+
authors:
|
7
|
+
- Sergey Avseyev
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-02-19 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Modern SDK for Couchbase Server
|
14
|
+
email:
|
15
|
+
- sergey.avseyev@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- LICENSE.txt
|
21
|
+
- README.md
|
22
|
+
- ext/extconf.rb
|
23
|
+
- lib/active_support/cache/couchbase_store.rb
|
24
|
+
- lib/couchbase.rb
|
25
|
+
- lib/couchbase/analytics_options.rb
|
26
|
+
- lib/couchbase/authenticator.rb
|
27
|
+
- lib/couchbase/binary_collection.rb
|
28
|
+
- lib/couchbase/binary_collection_options.rb
|
29
|
+
- lib/couchbase/bucket.rb
|
30
|
+
- lib/couchbase/cluster.rb
|
31
|
+
- lib/couchbase/cluster_registry.rb
|
32
|
+
- lib/couchbase/collection.rb
|
33
|
+
- lib/couchbase/collection_options.rb
|
34
|
+
- lib/couchbase/config_profiles.rb
|
35
|
+
- lib/couchbase/configuration.rb
|
36
|
+
- lib/couchbase/datastructures.rb
|
37
|
+
- lib/couchbase/datastructures/couchbase_list.rb
|
38
|
+
- lib/couchbase/datastructures/couchbase_map.rb
|
39
|
+
- lib/couchbase/datastructures/couchbase_queue.rb
|
40
|
+
- lib/couchbase/datastructures/couchbase_set.rb
|
41
|
+
- lib/couchbase/diagnostics.rb
|
42
|
+
- lib/couchbase/errors.rb
|
43
|
+
- lib/couchbase/json_transcoder.rb
|
44
|
+
- lib/couchbase/libcouchbase.bundle
|
45
|
+
- lib/couchbase/logger.rb
|
46
|
+
- lib/couchbase/management.rb
|
47
|
+
- lib/couchbase/management/analytics_index_manager.rb
|
48
|
+
- lib/couchbase/management/bucket_manager.rb
|
49
|
+
- lib/couchbase/management/collection_manager.rb
|
50
|
+
- lib/couchbase/management/query_index_manager.rb
|
51
|
+
- lib/couchbase/management/search_index_manager.rb
|
52
|
+
- lib/couchbase/management/user_manager.rb
|
53
|
+
- lib/couchbase/management/view_index_manager.rb
|
54
|
+
- lib/couchbase/mutation_state.rb
|
55
|
+
- lib/couchbase/options.rb
|
56
|
+
- lib/couchbase/query_options.rb
|
57
|
+
- lib/couchbase/railtie.rb
|
58
|
+
- lib/couchbase/scope.rb
|
59
|
+
- lib/couchbase/search_options.rb
|
60
|
+
- lib/couchbase/subdoc.rb
|
61
|
+
- lib/couchbase/utils.rb
|
62
|
+
- lib/couchbase/utils/generic_logger_adapter.rb
|
63
|
+
- lib/couchbase/utils/stdlib_logger_adapter.rb
|
64
|
+
- lib/couchbase/utils/time.rb
|
65
|
+
- lib/couchbase/version.rb
|
66
|
+
- lib/couchbase/view_options.rb
|
67
|
+
- lib/rails/generators/couchbase/config/config_generator.rb
|
68
|
+
homepage: https://www.couchbase.com
|
69
|
+
licenses:
|
70
|
+
- Apache-2.0
|
71
|
+
metadata:
|
72
|
+
homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
|
73
|
+
bug_tracker_uri: https://couchbase.com/issues/browse/RCBC
|
74
|
+
mailing_list_uri: https://forums.couchbase.com/c/ruby-sdk
|
75
|
+
source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.4.0
|
76
|
+
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.4.0
|
77
|
+
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.4.0/index.html
|
78
|
+
github_repo: ssh://github.com/couchbase/couchbase-ruby-client
|
79
|
+
rubygems_mfa_required: 'true'
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options:
|
82
|
+
- "--exclude"
|
83
|
+
- ext/
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 3.2.0
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubygems_version: 3.4.6
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: SDK for Couchbase Server
|
101
|
+
test_files: []
|