Sha256: b1b09ad762af3311bdb6b99a31d46460690b4eef66911f7599852b5b4d1e8108
Contents?: true
Size: 465 Bytes
Versions: 132
Compression:
Stored size: 465 Bytes
Contents
# 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) args << options unless options.empty? case kind when :signed @signed << args when :encrypted @encrypted << args end end end end end
Version data entries
132 entries across 126 versions & 17 rubygems