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.14.rc1 lib/abstract_controller/url_for.rb
swipe-rails-0.0.5 vendor/bundle/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.2 vendor/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.2 vendor/ruby/2.0.0/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.2 vendor/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.1 vendor/ruby/1.9.1/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.1 vendor/ruby/2.0.0/gems/actionpack-3.2.12/lib/abstract_controller/url_for.rb
font-awesome-rails-3.1.1.1 vendor/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
challah-1.0.0.beta3 vendor/bundle/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
challah-1.0.0.beta2 vendor/bundle/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
challah-1.0.0.beta vendor/bundle/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
challah-1.0.0.beta vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/url_for.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.13/lib/abstract_controller/url_for.rb