1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/application/routes_reloader.rb
Rafael Mendonça França c1528c905c
Fix the cop violation 👮
2020-12-03 23:14:28 +00:00

69 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require "active_support/core_ext/module/delegation"
module Rails
class Application
class RoutesReloader
include ActiveSupport::Callbacks
attr_reader :route_sets, :paths, :external_routes
attr_accessor :eager_load
attr_writer :run_after_load_paths # :nodoc:
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) }
run_after_load_paths.call
end
def run_after_load_paths
@run_after_load_paths ||= -> { }
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