Class: Imap::Backup::Serializer::UnusedNameFinder
- Inherits:
-
Object
- Object
- Imap::Backup::Serializer::UnusedNameFinder
- Defined in:
- lib/imap/backup/serializer/unused_name_finder.rb
Instance Attribute Summary collapse
-
#serializer ⇒ Object
readonly
Returns the value of attribute serializer.
Instance Method Summary collapse
-
#initialize(serializer:) ⇒ UnusedNameFinder
constructor
A new instance of UnusedNameFinder.
- #run ⇒ Object
Constructor Details
#initialize(serializer:) ⇒ UnusedNameFinder
Returns a new instance of UnusedNameFinder.
7 8 9 |
# File 'lib/imap/backup/serializer/unused_name_finder.rb', line 7 def initialize(serializer:) @serializer = serializer end |
Instance Attribute Details
#serializer ⇒ Object (readonly)
Returns the value of attribute serializer.
5 6 7 |
# File 'lib/imap/backup/serializer/unused_name_finder.rb', line 5 def serializer @serializer end |
Instance Method Details
#run ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/imap/backup/serializer/unused_name_finder.rb', line 11 def run digit = 0 folder = nil loop do extra = digit.zero? ? "" : "-#{digit}" folder = "#{serializer.folder}-#{serializer.uid_validity}#{extra}" test = Serializer.new(serializer.path, folder) break if !test.validate! digit += 1 end folder end |