module ActiveSupport::Messages::Rotator

def initialize(*secrets, on_rotation: nil, **options)

:nodoc:
def initialize(*secrets, on_rotation: nil, **options)
  super(*secrets, **options)
  @options   = options
  @rotations = []
  @on_rotation = on_rotation
end