Sha256: a5b5bb699ed652f2ba22064472c90b146436293af4beeb99841897e443b18a68

Contents?: true

Size: 934 Bytes

Versions: 180

Compression:

Stored size: 934 Bytes

Contents

# 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 AbstractController
  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

180 entries across 141 versions & 18 rubygems

Version Path
actionpack-3.2.22.5 lib/abstract_controller/url_for.rb
actionpack-3.2.22.4 lib/abstract_controller/url_for.rb
actionpack-3.2.22.3 lib/abstract_controller/url_for.rb
actionpack-3.2.22.2 lib/abstract_controller/url_for.rb
actionpack-3.2.22.1 lib/abstract_controller/url_for.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
actionpack-3.2.22 lib/abstract_controller/url_for.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
actionpack-3.2.21 lib/abstract_controller/url_for.rb
actionpack-3.2.20 lib/abstract_controller/url_for.rb
actionpack-3.2.19 lib/abstract_controller/url_for.rb
actionpack-3.2.18 lib/abstract_controller/url_for.rb
actionpack-3.2.17 lib/abstract_controller/url_for.rb
actionpack-3.2.16 lib/abstract_controller/url_for.rb
actionpack-3.2.15 lib/abstract_controller/url_for.rb
actionpack-3.2.15.rc3 lib/abstract_controller/url_for.rb
actionpack-3.2.15.rc2 lib/abstract_controller/url_for.rb
actionpack-3.2.15.rc1 lib/abstract_controller/url_for.rb
actionpack-3.2.14 lib/abstract_controller/url_for.rb
actionpack-3.2.14.rc2 lib/abstract_controller/url_for.rb