Sha256: d938024d5d5fa8014ffb6726ede63ceb0bbd83ff3aa2e6f5596c05f4add69469

Contents?: true

Size: 947 Bytes

Versions: 107

Compression:

Stored size: 947 Bytes

Contents

module AbstractController
  # 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 ||= begin
          if _routes
            super - _routes.named_routes.helper_names
          else
            super
          end
        end
      end
    end
  end
end

Version data entries

107 entries across 105 versions & 10 rubygems

Version Path
actionpack-4.2.11.3 lib/abstract_controller/url_for.rb
actionpack-4.2.11.2 lib/abstract_controller/url_for.rb
actionpack-5.1.7 lib/abstract_controller/url_for.rb
actionpack-5.1.7.rc1 lib/abstract_controller/url_for.rb
actionpack-5.1.6.2 lib/abstract_controller/url_for.rb
actionpack-5.0.7.2 lib/abstract_controller/url_for.rb
actionpack-4.2.11.1 lib/abstract_controller/url_for.rb
actionpack-5.1.6.1 lib/abstract_controller/url_for.rb
actionpack-5.0.7.1 lib/abstract_controller/url_for.rb
actionpack-4.2.11 lib/abstract_controller/url_for.rb
actionpack-5.1.6 lib/abstract_controller/url_for.rb
actionpack-5.0.7 lib/abstract_controller/url_for.rb
actionpack-5.1.5 lib/abstract_controller/url_for.rb
actionpack-5.1.5.rc1 lib/abstract_controller/url_for.rb
actionpack-4.2.10 lib/abstract_controller/url_for.rb
actionpack-4.2.10.rc1 lib/abstract_controller/url_for.rb
actionpack-5.1.4 lib/abstract_controller/url_for.rb
actionpack-5.0.6 lib/abstract_controller/url_for.rb
actionpack-5.1.4.rc1 lib/abstract_controller/url_for.rb
actionpack-5.0.6.rc1 lib/abstract_controller/url_for.rb