Sha256: 2170f5911ab335890d34f88980a65f72370a404f844d288016486b3d4aa0c89e
Contents?: true
Size: 464 Bytes
Versions: 89
Compression:
Stored size: 464 Bytes
Contents
# 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 add_binds(binds, proc_for_binds = nil) @binds.concat proc_for_binds ? binds.map(&proc_for_binds) : binds self end def value @binds end end end end
Version data entries
89 entries across 84 versions & 10 rubygems