Flowdock
method

build_url_hash

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: UrlConfig
build_url_hash(url) private

No documentation

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

Hide source
# File activerecord/lib/active_record/database_configurations/url_config.rb, line 60
        def build_url_hash(url)
          if url.nil? || /^jdbc:/.match?(url)
            { "url" => url }
          else
            ActiveRecord::ConnectionAdapters::ConnectionSpecification::ConnectionUrlResolver.new(url).to_hash
          end
        end
Register or log in to add new notes.