Sha256: a020f6317e55f960c6278c392fc931c45668fc9176bc36c91b2bd18333f6df92
Contents?: true
Size: 269 Bytes
Versions: 161
Compression:
Stored size: 269 Bytes
Contents
# frozen_string_literal: true module Arel # :nodoc: all module Collectors class PlainString def initialize @str = +"" end def value @str end def <<(str) @str << str self end end end end
Version data entries
161 entries across 156 versions & 14 rubygems