Method: Sequel::Plugins::TableSelect.configure
- Defined in:
- lib/sequel/plugins/table_select.rb
.configure(model) ⇒ Object
Modify the current model’s dataset selection, if the model has a dataset.
29 30 31 32 33 |
# File 'lib/sequel/plugins/table_select.rb', line 29 def self.configure(model) model.instance_exec do self.dataset = dataset if @dataset end end |