mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
222 B
Ruby
19 lines
222 B
Ruby
|
module Arel
|
||
|
module Collectors
|
||
|
class PlainString
|
||
|
def initialize
|
||
|
@str = ''
|
||
|
end
|
||
|
|
||
|
def value
|
||
|
@str
|
||
|
end
|
||
|
|
||
|
def << str
|
||
|
@str << str
|
||
|
self
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|