Method: XDry::Scope#bind

Defined in:
lib/xdry/parsing/scopes_support.rb

#bind(model) ⇒ Object

Raises:

  • (StandardError)


16
17
18
19
20
# File 'lib/xdry/parsing/scopes_support.rb', line 16

def bind model
  raise StandardError, "#{self} already bound to #{@model} when trying to bind to #{model}" unless @model.nil?
  @model = model
  self
end