aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/messages/rotation_configuration.rb
blob: 908658ff021f6e3c1b68469848cfd20749a7b3ab (plain) (tree)
1
2
3
4
5



                             
                                         



















                                       
# frozen_string_literal: true

module ActiveSupport
  module Messages
    class RotationConfiguration # :nodoc:
      attr_reader :signed, :encrypted

      def initialize
        @signed, @encrypted = [], []
      end

      def rotate(kind = nil, **options)
        case kind
        when :signed
          @signed << options
        when :encrypted
          @encrypted << options
        else
          rotate :signed, options
          rotate :encrypted, options
        end
      end
    end
  end
end