File tree Expand file tree Collapse file tree 4 files changed +5
-58
lines changed
lib/active_support/core_ext Expand file tree Collapse file tree 4 files changed +5
-58
lines changed Original file line number Diff line number Diff line change 1+ * Remove deprecated ` Module#reachable? ` method.
2+
3+ * Rafael Mendonça França*
4+
15* Remove deprecated ` #acronym_regex ` method from ` Inflections ` .
26
37 * Rafael Mendonça França*
Original file line number Diff line number Diff line change 33require "active_support/core_ext/module/aliasing"
44require "active_support/core_ext/module/introspection"
55require "active_support/core_ext/module/anonymous"
6- require "active_support/core_ext/module/reachable"
76require "active_support/core_ext/module/attribute_accessors"
87require "active_support/core_ext/module/attribute_accessors_per_thread"
98require "active_support/core_ext/module/attr_internal"
Original file line number Diff line number Diff line change 33require "active_support/core_ext/module/anonymous"
44require "active_support/core_ext/string/inflections"
55
6- class Module
7- def reachable? #:nodoc:
8- !anonymous? && name . safe_constantize . equal? ( self )
9- end
10- deprecate :reachable?
11- end
6+ ActiveSupport ::Deprecation . warn ( "reachable is deprecated and will be removed from the framework." )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments