couchbase 3.4.0-arm64-darwin-20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) 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/analytics_options.rb +107 -0
  7. data/lib/couchbase/authenticator.rb +65 -0
  8. data/lib/couchbase/binary_collection.rb +128 -0
  9. data/lib/couchbase/binary_collection_options.rb +24 -0
  10. data/lib/couchbase/bucket.rb +144 -0
  11. data/lib/couchbase/cluster.rb +439 -0
  12. data/lib/couchbase/cluster_registry.rb +44 -0
  13. data/lib/couchbase/collection.rb +589 -0
  14. data/lib/couchbase/collection_options.rb +300 -0
  15. data/lib/couchbase/config_profiles.rb +55 -0
  16. data/lib/couchbase/configuration.rb +57 -0
  17. data/lib/couchbase/datastructures/couchbase_list.rb +160 -0
  18. data/lib/couchbase/datastructures/couchbase_map.rb +194 -0
  19. data/lib/couchbase/datastructures/couchbase_queue.rb +134 -0
  20. data/lib/couchbase/datastructures/couchbase_set.rb +128 -0
  21. data/lib/couchbase/datastructures.rb +24 -0
  22. data/lib/couchbase/diagnostics.rb +181 -0
  23. data/lib/couchbase/errors.rb +351 -0
  24. data/lib/couchbase/json_transcoder.rb +32 -0
  25. data/lib/couchbase/libcouchbase.bundle +0 -0
  26. data/lib/couchbase/logger.rb +85 -0
  27. data/lib/couchbase/management/analytics_index_manager.rb +1127 -0
  28. data/lib/couchbase/management/bucket_manager.rb +436 -0
  29. data/lib/couchbase/management/collection_manager.rb +321 -0
  30. data/lib/couchbase/management/query_index_manager.rb +520 -0
  31. data/lib/couchbase/management/search_index_manager.rb +408 -0
  32. data/lib/couchbase/management/user_manager.rb +468 -0
  33. data/lib/couchbase/management/view_index_manager.rb +237 -0
  34. data/lib/couchbase/management.rb +27 -0
  35. data/lib/couchbase/mutation_state.rb +63 -0
  36. data/lib/couchbase/options.rb +2580 -0
  37. data/lib/couchbase/query_options.rb +120 -0
  38. data/lib/couchbase/railtie.rb +45 -0
  39. data/lib/couchbase/scope.rb +232 -0
  40. data/lib/couchbase/search_options.rb +1570 -0
  41. data/lib/couchbase/subdoc.rb +290 -0
  42. data/lib/couchbase/utils/generic_logger_adapter.rb +38 -0
  43. data/lib/couchbase/utils/stdlib_logger_adapter.rb +65 -0
  44. data/lib/couchbase/utils/time.rb +56 -0
  45. data/lib/couchbase/utils.rb +21 -0
  46. data/lib/couchbase/version.rb +23 -0
  47. data/lib/couchbase/view_options.rb +65 -0
  48. data/lib/couchbase.rb +20 -0
  49. data/lib/rails/generators/couchbase/config/config_generator.rb +27 -0
  50. metadata +101 -0
@@ -0,0 +1,290 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module Couchbase
16
+ class LookupInSpec
17
+ # Fetches the content from a field (if present) at the given path
18
+ #
19
+ # @param [String, Symbol] path the path identifying where to get the value. When path is a symbol, the library will try to expand it as
20
+ # macro.
21
+ # @return [LookupInSpec]
22
+ def self.get(path)
23
+ case path
24
+ when Symbol
25
+ new(:get, expand_macro(path))
26
+ when ""
27
+ new(:get_doc, "")
28
+ else
29
+ new(:get, path)
30
+ end
31
+ end
32
+
33
+ # Checks if a value at the given path exists in the document
34
+ #
35
+ # @param [String] path the path to check if the field exists
36
+ # @return [LookupInSpec]
37
+ def self.exists(path)
38
+ new(:exists, path)
39
+ end
40
+
41
+ # Counts the number of values at a given path in the document
42
+ #
43
+ # @param [String] path the path identifying where to count the values
44
+ # @return [LookupInSpec]
45
+ def self.count(path)
46
+ new(:count, path)
47
+ end
48
+
49
+ def xattr
50
+ @xattr = true
51
+ self
52
+ end
53
+
54
+ def xattr?
55
+ @xattr
56
+ end
57
+
58
+ attr_reader :type
59
+ attr_reader :path
60
+
61
+ # @api private
62
+ #
63
+ # @param [Symbol] macro
64
+ # @raise [Error::XattrUnknownMacro] if the macro cannot be expanded
65
+ def self.expand_macro(macro)
66
+ case macro
67
+ when :document
68
+ "$document"
69
+ when :expiry_time, :expiration_time
70
+ "$document.exptime"
71
+ when :cas
72
+ "$document.CAS"
73
+ when :seq_no, :sequence_number
74
+ "$document.seqno"
75
+ when :last_modified
76
+ "$document.last_modified"
77
+ when :is_deleted
78
+ "$document.deleted"
79
+ when :value_size_bytes
80
+ "$document.value_bytes"
81
+ when :rev_id, :revision_id
82
+ "$document.revid"
83
+ else
84
+ raise Error::XattrUnknownMacro, "unknown macro #{macro}"
85
+ end
86
+ end
87
+
88
+ private_class_method :expand_macro
89
+
90
+ private
91
+
92
+ # @param [:get_doc, :get, :exists, :count] type of the lookup
93
+ # @param [String] path
94
+ def initialize(type, path)
95
+ @xattr = false
96
+ @type = type
97
+ @path = path
98
+ end
99
+ end
100
+
101
+ class MutateInSpec
102
+ # Creates a command with the intention of replacing an existing value in a JSON document.
103
+ #
104
+ # If the path is empty (""), then the value will be used for the document's full body. Will
105
+ # error if the last element of the path does not exist.
106
+ #
107
+ # @param [String] path the path identifying where to replace the value.
108
+ # @param [Object, Symbol] value the value to replace with.
109
+ # When symbol specified and it is matches to known macro, it will be expanded
110
+ #
111
+ # @return [MutateInSpec]
112
+ def self.replace(path, value)
113
+ new(path.empty? ? :set_doc : :replace, path, value)
114
+ end
115
+
116
+ # Creates a command with the intention of inserting a new value in a JSON object.
117
+ #
118
+ # Will error if the last element of the path already exists.
119
+ #
120
+ # @param [String] path the path identifying where to insert the value.
121
+ # @param [Object, Symbol] value the value to insert.
122
+ # When symbol specified and it is matches to known macro, it will be expanded
123
+ #
124
+ # @return [MutateInSpec]
125
+ def self.insert(path, value)
126
+ new(:dict_add, path, value)
127
+ end
128
+
129
+ # Creates a command with the intention of removing an existing value in a JSON object.
130
+ #
131
+ # Will error if the path does not exist.
132
+ #
133
+ # @param path the path identifying what to remove.
134
+ #
135
+ # @return [MutateInSpec]
136
+ def self.remove(path)
137
+ new(path.empty? ? :remove_doc : :remove, path, nil)
138
+ end
139
+
140
+ # Creates a command with the intention of upserting a value in a JSON object.
141
+ #
142
+ # That is, the value will be replaced if the path already exists, or inserted if not.
143
+ #
144
+ # @param [String] path the path identifying where to upsert the value.
145
+ # @param [Object, Symbol] value the value to upsert.
146
+ # When symbol specified and it is matches to known macro, it will be expanded
147
+ #
148
+ # @return [MutateInSpec]
149
+ def self.upsert(path, value)
150
+ new(:dict_upsert, path, value)
151
+ end
152
+
153
+ # Creates a command with the intention of appending a value to an existing JSON array.
154
+ #
155
+ # Will error if the last element of the path does not exist or is not an array.
156
+ #
157
+ # @param [String] path the path identifying an array to which to append the value.
158
+ # @param [Array] values the value(s) to append.
159
+ #
160
+ # @return [MutateInSpec]
161
+ def self.array_append(path, values)
162
+ new(:array_push_last, path, values)
163
+ end
164
+
165
+ # Creates a command with the intention of prepending a value to an existing JSON array.
166
+ #
167
+ # Will error if the last element of the path does not exist or is not an array.
168
+ #
169
+ # @param [String] path the path identifying an array to which to append the value.
170
+ # @param [Array] values the value(s) to prepend.
171
+ #
172
+ # @return [MutateInSpec]
173
+ def self.array_prepend(path, values)
174
+ new(:array_push_first, path, values)
175
+ end
176
+
177
+ # Creates a command with the intention of inserting a value into an existing JSON array.
178
+ #
179
+ # Will error if the last element of the path does not exist or is not an array.
180
+ #
181
+ # @param [String] path the path identifying an array to which to append the value, and an index. E.g. "foo.bar[3]"
182
+ # @param [Array] values the value(s) to insert.
183
+ #
184
+ # @return [MutateInSpec]
185
+ def self.array_insert(path, values)
186
+ new(:array_insert, path, values)
187
+ end
188
+
189
+ # Creates a command with the intent of inserting a value into an existing JSON array, but only if the value
190
+ # is not already contained in the array (by way of string comparison).
191
+ #
192
+ # Will error if the last element of the path does not exist or is not an array.
193
+ #
194
+ # @param [String] path the path identifying an array to which to append the value, and an index. E.g. "foo.bar[3]"
195
+ # @param [Object, Symbol] value the value to insert.
196
+ #
197
+ # @return [MutateInSpec]
198
+ def self.array_add_unique(path, value)
199
+ new(:array_add_unique, path, value)
200
+ end
201
+
202
+ # Creates a command with the intent of incrementing a numerical field in a JSON object.
203
+ #
204
+ # If the field does not exist, then it is created and takes the value of +delta+
205
+ #
206
+ # @param [String] path the path identifying a numerical field to adjust or create
207
+ # @param [Integer] delta the value to increment the field by
208
+ #
209
+ # @return [MutateInSpec]
210
+ def self.increment(path, delta)
211
+ new(:counter, path, delta.abs)
212
+ end
213
+
214
+ # Creates a command with the intent of decrementing a numerical field in a JSON object.
215
+ #
216
+ # If the field does not exist, then it is created and takes the value of +delta+ * -1
217
+ #
218
+ # @param [String] path the path identifying a numerical field to adjust or create
219
+ # @param [Integer] delta the value to decrement the field by
220
+ #
221
+ # @return [MutateInSpec]
222
+ def self.decrement(path, delta)
223
+ new(:counter, path, -1 * delta.abs)
224
+ end
225
+
226
+ def xattr
227
+ @xattr = true
228
+ self
229
+ end
230
+
231
+ def create_path
232
+ @create_path = true
233
+ self
234
+ end
235
+
236
+ def xattr?
237
+ @xattr
238
+ end
239
+
240
+ def create_path?
241
+ @create_path
242
+ end
243
+
244
+ def expand_macros?
245
+ @expand_macros
246
+ end
247
+
248
+ CAS = "${Mutation.CAS}".freeze
249
+ SEQ_NO = "${Mutation.seqno}".freeze
250
+ VALUE_CRC32C = "${Mutation.value_crc32c}".freeze
251
+
252
+ attr_reader :type
253
+ attr_reader :path
254
+ attr_reader :param
255
+
256
+ private
257
+
258
+ def initialize(type, path, param)
259
+ @create_path = false
260
+ @param = nil
261
+ @xattr = false
262
+ @type = type
263
+ @path = path
264
+ @param =
265
+ case param
266
+ when :cas
267
+ CAS
268
+ when :seq_no, :sequence_number
269
+ SEQ_NO
270
+ when :value_crc32c, :value_crc
271
+ VALUE_CRC32C
272
+ else
273
+ param
274
+ end
275
+ @expand_macros = [CAS, SEQ_NO, VALUE_CRC32C].include?(@param)
276
+ @xattr = true if @expand_macros
277
+ return if @param.nil?
278
+
279
+ @param =
280
+ case type
281
+ when :counter
282
+ @param.to_i
283
+ when :array_push_first, :array_push_last, :array_insert
284
+ @param.map { |entry| JSON.generate(entry) }.join(",")
285
+ else
286
+ JSON.generate(@param)
287
+ end
288
+ end
289
+ end
290
+ end
@@ -0,0 +1,38 @@
1
+ # Copyright 2021 Couchbase, Inc.
2
+ # Copyright 2020-Present Couchbase, Inc.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ require "time"
17
+
18
+ module Couchbase
19
+ module Utils
20
+ class GenericLoggerAdapter
21
+ DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%6N".freeze
22
+
23
+ def initialize(logger, verbose: false)
24
+ @logger = logger
25
+ @verbose = verbose
26
+ end
27
+
28
+ def log(level, thread_id, seconds, nanoseconds, payload, filename, line, function)
29
+ return unless @logger.respond_to?(level)
30
+
31
+ progname = "cxxcbc##{thread_id}"
32
+ payload += " at #{filename}:#{line} #{function}" if @verbose && filename
33
+ @logger.send(level,
34
+ "[#{::Time.at(seconds, nanoseconds, :nanosecond).strftime(DATETIME_FORMAT)} #{progname}] #{level} -- #{payload}")
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,65 @@
1
+ # Copyright 2021 Couchbase, Inc.
2
+ # Copyright 2020-Present Couchbase, Inc.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ require "logger"
17
+ require "time"
18
+
19
+ module Couchbase
20
+ module Utils
21
+ class StdlibLoggerAdapter
22
+ def initialize(logger, verbose: false)
23
+ raise ArgumentError, "logger argument must be or derive from stdlib Logger class" unless logger.is_a?(::Logger)
24
+
25
+ @logger = logger
26
+ @verbose = verbose
27
+ end
28
+
29
+ def log(level, thread_id, seconds, nanoseconds, payload, filename, line, function)
30
+ logdev = @logger.instance_variable_get(:@logdev)
31
+ return unless logdev
32
+
33
+ severity = map_spdlog_level(level)
34
+ return unless severity
35
+
36
+ progname = "cxxcbc##{thread_id}"
37
+ payload += " at #{filename}:#{line} #{function}" if @verbose && filename
38
+ logdev.write(
39
+ @logger.send(:format_message, @logger.send(:format_severity, severity), ::Time.at(seconds, nanoseconds, :nanosecond), progname,
40
+ payload)
41
+ )
42
+ end
43
+
44
+ private
45
+
46
+ def map_spdlog_level(level)
47
+ case level
48
+ when :trace, :debug
49
+ ::Logger::Severity::DEBUG
50
+ when :info
51
+ ::Logger::Severity::INFO
52
+ when :warn
53
+ ::Logger::Severity::WARN
54
+ when :error
55
+ ::Logger::Severity::ERROR
56
+ when :critical
57
+ ::Logger::Severity::FATAL
58
+ else # rubocop:disable Style/EmptyElse
59
+ # covers :off
60
+ nil
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,56 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require "time"
16
+
17
+ module Couchbase
18
+ module Utils
19
+ # Various Time utilities
20
+ module Time
21
+ RELATIVE_EXPIRY_CUTOFF_SECONDS = 30 * 24 * 60 * 60
22
+ WORKAROUND_EXPIRY_CUTOFF_SECONDS = 50 * 365 * 24 * 60 * 60
23
+
24
+ module_function
25
+
26
+ # @param [Integer, #in_seconds, Time, nil] time_or_duration expiration time to associate with the document
27
+ def extract_expiry_time(time_or_duration)
28
+ if time_or_duration.respond_to?(:in_seconds) # Duration
29
+ [:duration, time_or_duration.in_seconds]
30
+ elsif time_or_duration.respond_to?(:tv_sec) # Time
31
+ [:time_point, time_or_duration.tv_sec]
32
+ elsif time_or_duration.is_a?(Integer)
33
+ if time_or_duration < RELATIVE_EXPIRY_CUTOFF_SECONDS
34
+ # looks like valid relative duration as specified in protocol (less than 30 days)
35
+ [:duration, time_or_duration]
36
+ elsif time_or_duration > WORKAROUND_EXPIRY_CUTOFF_SECONDS
37
+ effective_expiry = ::Time.at(time_or_duration).utc
38
+ warn "The specified expiry duration #{time_or_duration} is longer than 50 years. For bug-compatibility " \
39
+ "with previous versions of SDK 3.0.x, the number of seconds in the duration will be interpreted as " \
40
+ "the epoch second when the document should expire (#{effective_expiry}). Stuffing an epoch second " \
41
+ "into a Duration is deprecated and will no longer work in SDK 3.1. Consider using Time instance instead."
42
+ [:time_point, time_or_duration]
43
+ else
44
+ [:time_point, ::Time.now.tv_sec + time_or_duration]
45
+ end
46
+ else
47
+ [:duration, time_or_duration]
48
+ end
49
+ end
50
+
51
+ def extract_duration(number_or_duration)
52
+ number_or_duration.respond_to?(:in_milliseconds) ? number_or_duration.public_send(:in_milliseconds) : number_or_duration
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,21 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module Couchbase
16
+ # Module for internal tools, extensions and utilities
17
+ module Utils
18
+ end
19
+ end
20
+
21
+ require "couchbase/utils/time"
@@ -0,0 +1,23 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module Couchbase
16
+ # Version of the library and all bundled dependencies
17
+ #
18
+ # @example Display version (+Couchbase::BUILD_INFO+ contains more details)
19
+ # $ ruby -rcouchbase -e 'pp Couchbase::VERSION'
20
+ # {:sdk=>"3.4.0", :ruby_abi=>"3.1.0", :revision=>"416fe68e6029ec8a4c40611cf6e6b30d3b90d20f"}
21
+ VERSION = {} unless defined?(VERSION) # rubocop:disable Style/MutableConstant
22
+ VERSION.update(:sdk => "3.4.0".freeze)
23
+ end
@@ -0,0 +1,65 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require "json"
16
+
17
+ module Couchbase
18
+ class Bucket
19
+ class ViewRow
20
+ # @return [String]
21
+ attr_accessor :id
22
+
23
+ # @return [#to_json]
24
+ attr_accessor :key
25
+
26
+ # @return [#to_json]
27
+ attr_accessor :value
28
+
29
+ # @yieldparam [ViewRow] self
30
+ def initialize
31
+ yield self if block_given?
32
+ end
33
+ end
34
+
35
+ class ViewMetaData
36
+ # @return [Integer]
37
+ attr_accessor :total_rows
38
+
39
+ # @api private
40
+ attr_writer :debug_info
41
+
42
+ def debug
43
+ JSON.parse(@debug_info)
44
+ end
45
+
46
+ # @yieldparam [ViewMetaData] self
47
+ def initialize
48
+ yield self if block_given?
49
+ end
50
+ end
51
+
52
+ class ViewResult
53
+ # @return [ViewMetaData] returns object representing additional metadata associated with this query
54
+ attr_accessor :meta_data
55
+
56
+ # @return [Array<ViewRow>]
57
+ attr_accessor :rows
58
+
59
+ # @yieldparam [ViewResult] self
60
+ def initialize
61
+ yield self if block_given?
62
+ end
63
+ end
64
+ end
65
+ end
data/lib/couchbase.rb ADDED
@@ -0,0 +1,20 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require "couchbase/version"
16
+ require "couchbase/libcouchbase"
17
+ require "couchbase/logger"
18
+ require "couchbase/cluster"
19
+
20
+ require "couchbase/railtie" if defined?(Rails)
@@ -0,0 +1,27 @@
1
+ # Copyright 2020-2021 Couchbase, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module Couchbase
16
+ module Generators
17
+ class ConfigGenerator < Rails::Generators::Base
18
+ desc "Creates a Couchbase configuration file at config/couchbase.yml"
19
+
20
+ source_root File.expand_path(File.join("..", "templates"), __FILE__)
21
+
22
+ def create_config_file
23
+ template "couchbase.yml", File.join("config", "couchbase.yml")
24
+ end
25
+ end
26
+ end
27
+ end