Sha256: f128bba5f59c8ea6968905ddcccb372adab1475a9b2e51c720963c0c834b3d16
Contents?: true
Size: 1.28 KB
Versions: 37
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require "active_support/core_ext/module/delegation" module Rails class Application class RoutesReloader attr_reader :route_sets, :paths, :external_routes attr_accessor :eager_load delegate :execute_if_updated, :execute, :updated?, to: :updater def initialize @paths = [] @route_sets = [] @external_routes = [] @eager_load = false end def reload! clear! load_paths finalize! route_sets.each(&:eager_load!) if eager_load ensure revert end private def updater @updater ||= begin dirs = @external_routes.each_with_object({}) do |dir, hash| hash[dir.to_s] = %w(rb) end ActiveSupport::FileUpdateChecker.new(paths, dirs) { reload! } end end def clear! route_sets.each do |routes| routes.disable_clear_and_finalize = true routes.clear! end end def load_paths paths.each { |path| load(path) } end def finalize! route_sets.each(&:finalize!) end def revert route_sets.each do |routes| routes.disable_clear_and_finalize = false end end end end end
Version data entries
37 entries across 37 versions & 4 rubygems