Sha256: 11d5ee5cfbf83dd357313590fb115a134f2605b1f2590490793e36ededc3aadf

Contents?: true

Size: 978 Bytes

Versions: 173

Compression:

Stored size: 978 Bytes

Contents

# frozen_string_literal: true

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

173 entries across 165 versions & 10 rubygems

Version Path
actionpack-6.1.4.2 lib/abstract_controller/url_for.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/actionpack-6.1.4.1/lib/abstract_controller/url_for.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/actionpack-6.1.4.1/lib/abstract_controller/url_for.rb
actionpack-6.1.4.1 lib/abstract_controller/url_for.rb
actionpack-6.0.4.1 lib/abstract_controller/url_for.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/actionpack-6.1.4/lib/abstract_controller/url_for.rb
actionpack-6.1.4 lib/abstract_controller/url_for.rb
actionpack-6.0.4 lib/abstract_controller/url_for.rb
actionpack-5.2.6 lib/abstract_controller/url_for.rb
actionpack-6.0.3.7 lib/abstract_controller/url_for.rb
actionpack-6.1.3.2 lib/abstract_controller/url_for.rb
actionpack-5.2.4.6 lib/abstract_controller/url_for.rb
actionpack-6.1.3.1 lib/abstract_controller/url_for.rb
actionpack-6.0.3.6 lib/abstract_controller/url_for.rb
actionpack-5.2.5 lib/abstract_controller/url_for.rb
actionpack-6.1.3 lib/abstract_controller/url_for.rb
actionpack-6.1.2.1 lib/abstract_controller/url_for.rb
actionpack-6.0.3.5 lib/abstract_controller/url_for.rb
actionpack-5.2.4.5 lib/abstract_controller/url_for.rb
actionpack-6.1.2 lib/abstract_controller/url_for.rb