method
rotate
v8.0.0 -
Show latest stable
- Class:
ActiveSupport::Messages::RotationConfiguration
rotate(kind, *args, **options)public
No documentation available.
# File activesupport/lib/active_support/messages/rotation_configuration.rb, line 12
def rotate(kind, *args, **options)
args << options unless options.empty?
case kind
when :signed
@signed << args
when :encrypted
@encrypted << args
end
end