Module: Puffer::OrmAdapter::Base

Defined in:
lib/puffer/orm_adapter/base.rb

Instance Method Summary collapse

Instance Method Details

#columns_hashObject

Raises:

  • (NotSupportedError)


5
6
7
# File 'lib/puffer/orm_adapter/base.rb', line 5

def columns_hash
  raise NotSupportedError
end

#filter(scope, fields, options = {}) ⇒ Object

Raises:

  • (NotSupportedError)


13
14
15
# File 'lib/puffer/orm_adapter/base.rb', line 13

def filter scope, fields, options = {}
  raise NotSupportedError
end

#reflection(name) ⇒ Object

Raises:

  • (NotSupportedError)


9
10
11
# File 'lib/puffer/orm_adapter/base.rb', line 9

def reflection name
  raise NotSupportedError
end