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
challah-0.6.1 vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/url_for.rb
challah-0.6.1 vendor/bundle/gems/actionpack-3.2.2/lib/abstract_controller/url_for.rb
challah-0.6.1 vendor/bundle/gems/actionpack-3.2.3/lib/abstract_controller/url_for.rb
challah-0.6.1 vendor/bundle/gems/actionpack-3.2.5/lib/abstract_controller/url_for.rb
actionpack-3.2.5 lib/abstract_controller/url_for.rb
actionpack-3.2.4 lib/abstract_controller/url_for.rb
actionpack-3.1.5 lib/abstract_controller/url_for.rb
actionpack-3.2.4.rc1 lib/abstract_controller/url_for.rb
actionpack-3.1.5.rc1 lib/abstract_controller/url_for.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.3/lib/abstract_controller/url_for.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.3/lib/abstract_controller/url_for.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.3/lib/abstract_controller/url_for.rb
challah-0.6.0 vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/url_for.rb
challah-0.6.0 vendor/bundle/gems/actionpack-3.2.2/lib/abstract_controller/url_for.rb
challah-0.6.0 vendor/bundle/gems/actionpack-3.2.3/lib/abstract_controller/url_for.rb
challah-0.5.4 vendor/bundle/gems/actionpack-3.2.2/lib/abstract_controller/url_for.rb
challah-0.5.4 vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/url_for.rb
actionpack-3.2.3 lib/abstract_controller/url_for.rb
actionpack-3.2.3.rc2 lib/abstract_controller/url_for.rb
actionpack-3.2.3.rc1 lib/abstract_controller/url_for.rb