Sha256: a8dc238076e4e219f352dfb54aebb6586ac1cec7086f13def0edd2b26f776827

Contents?: true

Size: 725 Bytes

Versions: 85

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

85 entries across 80 versions & 8 rubygems

Version Path
activerecord-7.1.5 lib/arel/collectors/substitute_binds.rb
activerecord-7.1.4.2 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.8.6 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.7.10 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.7.9 lib/arel/collectors/substitute_binds.rb
activerecord-7.1.4.1 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.8.5 lib/arel/collectors/substitute_binds.rb
activerecord-7.1.4 lib/arel/collectors/substitute_binds.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/arel/collectors/substitute_binds.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/arel/collectors/substitute_binds.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/collectors/substitute_binds.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/collectors/substitute_binds.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/collectors/substitute_binds.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activerecord-7.1.3.4/lib/arel/collectors/substitute_binds.rb
activerecord-7.1.3.4 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.8.4 lib/arel/collectors/substitute_binds.rb
activerecord-6.1.7.8 lib/arel/collectors/substitute_binds.rb
activerecord-7.1.3.2 lib/arel/collectors/substitute_binds.rb
activerecord-7.1.3.1 lib/arel/collectors/substitute_binds.rb
activerecord-7.0.8.1 lib/arel/collectors/substitute_binds.rb