class Arel::Collectors::PlainString

Public Class Methods

new() click to toggle source
# File lib/arel/collectors/plain_string.rb, line 5
def initialize
  @str = ''.dup
end

Public Instance Methods

<<(str) click to toggle source
# File lib/arel/collectors/plain_string.rb, line 13
def << str
  @str << str
  self
end
value() click to toggle source
# File lib/arel/collectors/plain_string.rb, line 9
def value
  @str
end