Module: DataStax

Defined in:
lib/datastax/cassandra.rb

Overview

-- Copyright DataStax, Inc.

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. ++

Class Method Summary collapse

Class Method Details

.include(path) ⇒ Object

[View source]

30
31
32
33
# File 'lib/datastax/cassandra.rb', line 30

def self.include(path)
  path = File.expand_path(path + '.rb', @base)
  class_eval(File.read(path), path, 1)
end

.require(path) ⇒ Object

[View source]

22
23
24
25
26
27
28
# File 'lib/datastax/cassandra.rb', line 22

def self.require(path)
  if path.start_with?('cassandra/')
    include(path)
  else
    ::Kernel.require(path)
  end
end