aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/uri_parser.rb
blob: 8e2a3f69eb3add5c92e878b07d18cd46fddacbad (plain) (blame)
1
2
3
4
5
6
7
8
9
require 'uri'

module ActionController #:nodoc:
  module UriParser
    def uri_parser
      @uri_parser ||= URI.const_defined?(:Parser) ? URI::Parser.new : URI
    end
  end
end