1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/collectors/sql_string.rb
2014-04-09 11:58:44 -07:00

25 lines
313 B
Ruby

# encoding: utf-8
module Arel
module Collectors
class SQLString
def initialize
@str = ''
end
def value
@str
end
def << str
@str << str
self
end
def add_bind bind
self << bind.to_s
self
end
end
end
end