Class: ActiveScaffold::Tableless::StatementCache

Inherits:
Object
  • Object
show all
Defined in:
lib/active_scaffold/tableless.rb

Instance Method Summary collapse

Constructor Details

#initialize(key, model = nil) ⇒ StatementCache

Returns a new instance of StatementCache.



167
168
169
170
# File 'lib/active_scaffold/tableless.rb', line 167

def initialize(key, model = nil)
  @key = key
  @model = model
end

Instance Method Details

#execute(values, connection) ⇒ Object



172
173
174
# File 'lib/active_scaffold/tableless.rb', line 172

def execute(values, connection)
  @model.where(@key => values)
end