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.5.rc2 lib/abstract_controller/url_for.rb
actionpack-4.2.5.rc1 lib/abstract_controller/url_for.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/abstract_controller/url_for.rb
actionpack-4.2.4 lib/abstract_controller/url_for.rb
actionpack-4.2.4.rc1 lib/abstract_controller/url_for.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/actionpack-4.2.3/lib/abstract_controller/url_for.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/actionpack-4.2.3/lib/abstract_controller/url_for.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/actionpack-4.2.2/lib/abstract_controller/url_for.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/actionpack-4.2.1/lib/abstract_controller/url_for.rb
actionpack-4.2.3 lib/abstract_controller/url_for.rb
actionpack-4.2.3.rc1 lib/abstract_controller/url_for.rb
actionpack-4.2.2 lib/abstract_controller/url_for.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/actionpack-4.2.1/lib/abstract_controller/url_for.rb
actionpack-4.2.1 lib/abstract_controller/url_for.rb
actionpack-4.2.1.rc4 lib/abstract_controller/url_for.rb
actionpack-4.2.1.rc3 lib/abstract_controller/url_for.rb
actionpack-4.2.1.rc2 lib/abstract_controller/url_for.rb
actionpack-4.2.1.rc1 lib/abstract_controller/url_for.rb
activejob-lock-0.0.1 rails/actionpack/lib/abstract_controller/url_for.rb
actionpack-4.2.0 lib/abstract_controller/url_for.rb