httpx 0.14.5 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/httpx/idna.rb DELETED
@@ -1,15 +0,0 @@
1
- module HTTPX
2
- module IDNA
3
- module_function
4
-
5
- begin
6
- require "idn"
7
-
8
- def convert(non_ascii_hostname); end
9
- rescue LoadError
10
- def convert(non_ascii_hostname)
11
- DomainName.new(non_ascii_hostname).hostname
12
- end
13
- end
14
- end
15
- end