Sha256: a8dc238076e4e219f352dfb54aebb6586ac1cec7086f13def0edd2b26f776827

Contents?: true

Size: 725 Bytes

Versions: 89

Compression:

Stored size: 725 Bytes

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Collectors
    class SubstituteBinds
      attr_accessor :preparable

      def initialize(quoter, delegate_collector)
        @quoter = quoter
        @delegate = delegate_collector
      end

      def <<(str)
        delegate << str
        self
      end

      def add_bind(bind)
        bind = bind.value_for_database if bind.respond_to?(:value_for_database)
        self << quoter.quote(bind)
      end

      def add_binds(binds, proc_for_binds = nil)
        self << binds.map { |bind| quoter.quote(bind) }.join(", ")
      end

      def value
        delegate.value
      end

      private
        attr_reader :quoter, :delegate
    end
  end
end

Version data entries

89 entries across 84 versions & 10 rubygems

Version Path
activerecord-7.0.3.1 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.6.1 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.6 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.3 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.2.4 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.5.1 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.5 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.2.3 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.7 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.2.2 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.6 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.5 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.2.1 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.2 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.1 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.0 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.4 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.0.rc3 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.3 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.4.2 lib/arel/collectors/substitute_binds.rb