Flowdock
method

host_or_subdomain_and_domain

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActionDispatch::Http::URL
host_or_subdomain_and_domain(options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/url.rb, line 66
        def host_or_subdomain_and_domain(options)
          return options[:host] unless options[:subdomain] || options[:domain]

          tld_length = options[:tld_length] || @@tld_length

          host = ""
          host << (options[:subdomain] || extract_subdomain(options[:host], tld_length))
          host << "."
          host << (options[:domain]    || extract_domain(options[:host], tld_length))
          host
        end
Register or log in to add new notes.