module LazyRotator

Rotate a set of files

Constants

VERSION

Public Class Methods

rotate(file_name, retention_limit = 5) click to toggle source
# File lib/lazy_rotator.rb, line 9
def self.rotate(file_name, retention_limit = 5)
  Set.new(file_name, retention_limit).process
end