Class: ActiveScaffold::Tableless::StatementCache
- Defined in:
- lib/active_scaffold/tableless.rb
Instance Method Summary collapse
- #execute(values, connection) ⇒ Object
-
#initialize(key, model = nil) ⇒ StatementCache
constructor
A new instance of StatementCache.
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 |