Sha256: 3f3dfee73d8623ce07f51280f617c15619ce882db1a14003acf4d86515b16356

Contents?: true

Size: 960 Bytes

Versions: 16

Compression:

Stored size: 960 Bytes

Contents

# frozen_string_literal: true

module AbstractController
  # = URL For
  #
  # Includes +url_for+ into the host class (e.g. an abstract controller or mailer). The class
  # has to provide a +RouteSet+ by implementing the <tt>_routes</tt> methods. Otherwise, an
  # exception will be raised.
  #
  # Note that this module is completely decoupled from HTTP - the only requirement is a valid
  # <tt>_routes</tt> implementation.
  module UrlFor
    extend ActiveSupport::Concern
    include ActionDispatch::Routing::UrlFor

    def _routes
      raise "In order to use #url_for, you must include routing helpers explicitly. " \
            "For instance, `include Rails.application.routes.url_helpers`."
    end

    module ClassMethods
      def _routes
        nil
      end

      def action_methods
        @action_methods ||= if _routes
          super - _routes.named_routes.helper_names
        else
          super
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
actionpack-7.1.5 lib/abstract_controller/url_for.rb
actionpack-7.1.4.2 lib/abstract_controller/url_for.rb
actionpack-7.1.4.1 lib/abstract_controller/url_for.rb
actionpack-7.1.4 lib/abstract_controller/url_for.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionpack-7.1.3.4/lib/abstract_controller/url_for.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/actionpack-7.1.3.4/lib/abstract_controller/url_for.rb
actionpack-7.1.3.4 lib/abstract_controller/url_for.rb
actionpack-7.1.3.2 lib/abstract_controller/url_for.rb
actionpack-7.1.3.1 lib/abstract_controller/url_for.rb
actionpack-7.1.3 lib/abstract_controller/url_for.rb
actionpack-7.1.2 lib/abstract_controller/url_for.rb
actionpack-7.1.1 lib/abstract_controller/url_for.rb
actionpack-7.1.0 lib/abstract_controller/url_for.rb
actionpack-7.1.0.rc2 lib/abstract_controller/url_for.rb
actionpack-7.1.0.rc1 lib/abstract_controller/url_for.rb
actionpack-7.1.0.beta1 lib/abstract_controller/url_for.rb