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

49 lines
1.1 KiB
Ruby
Raw Normal View History

module Rails
class Application
class RoutesReloader
2010-01-24 03:00:18 -05:00
# TODO Write tests for this behavior extracted from Application
def initialize(config)
@config, @last_change_at = config, nil
end
def changed_at
routes_changed_at = nil
2010-01-24 03:00:18 -05:00
paths.each do |path|
config_changed_at = File.stat(path).mtime
if routes_changed_at.nil? || config_changed_at > routes_changed_at
routes_changed_at = config_changed_at
end
end
routes_changed_at
end
def reload!
routes = Rails::Application.routes
routes.disable_clear_and_finalize = true
routes.clear!
2010-01-24 03:00:18 -05:00
paths.each { |path| load(path) }
routes.finalize!
nil
ensure
routes.disable_clear_and_finalize = false
end
def reload_if_changed
current_change_at = changed_at
if @last_change_at != current_change_at
@last_change_at = current_change_at
reload!
end
end
2010-01-23 10:59:32 -05:00
2010-01-24 03:00:18 -05:00
def paths
@config.action_dispatch.route_paths
2010-01-23 10:59:32 -05:00
end
end
end
end