# frozen_string_literal: true # An adapter for Rails routing helpers, such as article_path. module Phlex::Rails::Helpers module Routes # This must be included first because it defines `url_options` rather than delegating it to the view context. include Rails.application.routes.url_helpers include Rails.application.routes.mounted_helpers include URLOptions include DefaultURLOptions end end