mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
15 lines
220 B
Ruby
15 lines
220 B
Ruby
module RestClient
|
|
|
|
# Utility methods intended for use only within RestClient
|
|
#
|
|
# @api private
|
|
|
|
module Util
|
|
private
|
|
|
|
def parser
|
|
URI.const_defined?(:Parser) ? URI::Parser.new : URI
|
|
end
|
|
|
|
end
|
|
end
|