Class: Imap::Backup::Text::Sanitizer
- Inherits:
-
Object
- Object
- Imap::Backup::Text::Sanitizer
- Extended by:
- Forwardable
- Defined in:
- lib/imap/backup/text/sanitizer.rb
Instance Method Summary collapse
- #flush ⇒ Object
-
#initialize(output) ⇒ Sanitizer
constructor
A new instance of Sanitizer.
- #print(*args) ⇒ Object
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
#flush ⇒ Object
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 |
#print(*args) ⇒ Object
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 |