mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
24 lines
317 B
Ruby
24 lines
317 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Arel # :nodoc: all
|
|
module Collectors
|
|
class Bind
|
|
def initialize
|
|
@binds = []
|
|
end
|
|
|
|
def <<(str)
|
|
self
|
|
end
|
|
|
|
def add_bind(bind)
|
|
@binds << bind
|
|
self
|
|
end
|
|
|
|
def value
|
|
@binds
|
|
end
|
|
end
|
|
end
|
|
end
|