1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/lib/restclient/util.rb
Larry Gilbert 5f684aa062 Add requirements section to README
This includes a new admonition against using Ruby 1.8.7.

[ci skip]
2013-08-19 08:23:23 -07:00

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