class Arel::Collectors::Bind

Public Class Methods

new() click to toggle source
# File lib/arel/collectors/bind.rb, line 5
def initialize
  @binds = []
end

Public Instance Methods

<<(str) click to toggle source
# File lib/arel/collectors/bind.rb, line 9
def << str
  self
end
add_bind(bind) click to toggle source
# File lib/arel/collectors/bind.rb, line 13
def add_bind bind
  @binds << bind
  self
end
value() click to toggle source
# File lib/arel/collectors/bind.rb, line 18
def value
  @binds
end