mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
263 B
Ruby
18 lines
263 B
Ruby
# encoding: utf-8
|
|
|
|
require 'arel/collectors/plain_string'
|
|
|
|
module Arel
|
|
module Collectors
|
|
class SQLString < PlainString
|
|
def add_bind bind
|
|
self << bind.to_s
|
|
self
|
|
end
|
|
|
|
def compile bvs
|
|
value
|
|
end
|
|
end
|
|
end
|
|
end
|