class Courgette::Processors::DefaultProcessor

Public Instance Methods

process(text) click to toggle source
# File lib/courgette/processors/default_processor.rb, line 4
def process(text)
  text.unpack('C*').pack('U*').gsub("\r\n", "\n")
end