instance method
set_option
Ruby on Rails 8.1.2
Since v7.1.6 PrivateSignature
set_option(name, value)
No documentation comment.
Parameters
-
namereq -
valuereq
Source
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 92
def set_option(name, value)
@options[name] = value
each { |deprecator| deprecator.public_send("#{name}=", value) }
end
Defined in activesupport/lib/active_support/deprecation/deprecators.rb line 92
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Deprecation::Deprecators