mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e302725751
If you require `nokogiri` from `app/models/user.rb`, dependencies.rb does not mark `Nokogiri` as an autoloaded constant, as expected. But the logic to detect these non-autoloaded constants is incomplete. See the tests defined in the patch for some cases incorrectly handled.
5 lines
99 B
Ruby
5 lines
99 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NestedWithRequireParent
|
|
ModuleFolder::NestedWithRequire
|
|
end
|