class Arel::Collectors::Bind

Public Class Methods

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

Public Instance Methods

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