aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/collectors/bind.rb
blob: d816aed90d64e12c11add993d401029ccd44dde8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Arel
  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