Module: Couchbase::Operations

Included in:
Bucket
Defined in:
lib/couchbase/operations/get.rb,
lib/couchbase/operations.rb,
lib/couchbase/operations/stats.rb,
lib/couchbase/operations/store.rb,
lib/couchbase/operations/touch.rb,
lib/couchbase/operations/utils.rb,
lib/couchbase/operations/delete.rb,
lib/couchbase/operations/unlock.rb,
lib/couchbase/operations/arithmetic.rb,
lib/couchbase/operations/design_docs.rb

Overview

Author

Mike Evans <[email protected]>

Copyright

2013 Urlgonomics LLC.

License

Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the ‘License’); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an ‘AS IS’ BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Defined Under Namespace

Modules: Arithmetic, Delete, DesignDocs, Get, Stats, Store, Touch, Unlock, Utils

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
# File 'lib/couchbase/operations.rb', line 31

def self.included(klass)
  klass.send(:include, Store)
  klass.send(:include, Get)
  klass.send(:include, Touch)
  klass.send(:include, Delete)
  klass.send(:include, Unlock)
  klass.send(:include, Arithmetic)
  klass.send(:include, Stats)
  klass.send(:include, DesignDocs)
  klass.send(:include, Utils)
end