Method: ActiveSupport::Autoload#autoload_under
- Defined in:
- activesupport/lib/active_support/dependencies/autoload.rb
#autoload_under(path) ⇒ Object
44 45 46 47 48 49 |
# File 'activesupport/lib/active_support/dependencies/autoload.rb', line 44 def autoload_under(path) @_under_path, old_path = path, @_under_path yield ensure @_under_path = old_path end |