D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
arel-6.0.4
/
lib
/
arel
/
collectors
/
Filename :
plain_string.rb
back
Copy
module Arel module Collectors class PlainString def initialize @str = '' end def value @str end def << str @str << str self end end end end