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.



162
163
164
165
# File 'lib/active_scaffold/tableless.rb', line 162

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

Instance Method Details

#execute(values, connection) ⇒ Object



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

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