method

execute_unless_loaded

rails latest stable - Class: Rails::Application::RoutesReloader

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

execute_unless_loaded()
public

No documentation available.

# File railties/lib/rails/application/routes_reloader.rb, line 37
      def execute_unless_loaded
        unless @loaded
          execute
          ActiveSupport.run_load_hooks(:after_routes_loaded, Rails.application)
          true
        end
      end