1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/messages/rotation_configuration.rb

30 lines
620 B
Ruby

# frozen_string_literal: true
module ActiveSupport
module Messages
class RotationConfiguration # :nodoc:
attr_reader :signed, :encrypted
def initialize
@signed, @encrypted = [], []
end
def rotate(kind, *args, **options)
case kind
when :signed
if options&.any?
@signed << (args << options)
else
@signed << args
end
when :encrypted
if options&.any?
@encrypted << (args << options)
else
@encrypted << args
end
end
end
end
end
end