Module Reloadable::Deprecated
In: vendor/rails/activesupport/lib/active_support/reloadable.rb

Methods

included  

Public Class methods

[Source]

    # File vendor/rails/activesupport/lib/active_support/reloadable.rb, line 53
53:     def self.included(base)
54:       class << base
55:         define_method(:reloadable?) do
56:           ActiveSupport::Deprecation.warn "Reloadable has been deprecated and reloadable? has no effect", caller
57:           true # This might not have the desired effect, as AR::B.reloadable? => true.
58:         end
59:       end
60:     end

[Validate]