Sha256: ea0a41ba1a00675fde7fa4abb825074114177d6268f2536a85b1383b3d41a032
Contents?: true
Size: 317 Bytes
Versions: 39
Compression:
Stored size: 317 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 value @binds end end end end
Version data entries
39 entries across 39 versions & 4 rubygems