aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/messages/rotation_configuration.rb
blob: 12566bdb63bfc8fc9948bcddef71464f95c99d47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module ActiveSupport
  module Messages
    class RotationConfiguration
      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