class Arel::Collectors::PlainString

Public Class Methods

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

Public Instance Methods

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