Class: Imap::Backup::Text::Sanitizer

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/imap/backup/text/sanitizer.rb

Instance Method Summary collapse

Constructor Details

#initialize(output) ⇒ Sanitizer

Returns a new instance of Sanitizer.



14
15
16
17
# File 'lib/imap/backup/text/sanitizer.rb', line 14

def initialize(output)
  @output = output
  @current = ""
end

Instance Method Details

#flushObject



31
32
33
34
35
36
# File 'lib/imap/backup/text/sanitizer.rb', line 31

def flush
  return if @current == ""

  clean = sanitize(@current)
  output.puts clean
end


19
20
21
22
23
24
25
26
27
28
29
# File 'lib/imap/backup/text/sanitizer.rb', line 19

def print(*args)
  @current << args.join
  loop do
    line, newline, rest = @current.partition("\n")
    break if newline != "\n"

    clean = sanitize(line)
    output.puts clean
    @current = rest
  end
end