method
routes_changed_at
rails latest stable - Class:
ActionController::Routing::RouteSet
routes_changed_at()public
No documentation available.
# File actionpack/lib/action_controller/routing/route_set.rb, line 296
def routes_changed_at
routes_changed_at = nil
configuration_files.each do |config|
config_changed_at = File.stat(config).mtime
if routes_changed_at.nil? || config_changed_at > routes_changed_at
routes_changed_at = config_changed_at
end
end
routes_changed_at
end