summaryrefslogtreecommitdiff
path: root/lib/open-uri.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-09 10:33:25 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-09 10:33:25 +0000
commit704d798615c5190510b036a4db8d32a0f9783df2 (patch)
tree4abff6627c141992ba9dd317d68fbe37ae5665c6 /lib/open-uri.rb
parentfea3684d5e3dbc04ca8f7b15d06eecbd1b02a061 (diff)
lib/open-uri.rb (URI::HTTPS#proxy_open): raise ArgumentError to notice https is not supported.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/open-uri.rb')
-rw-r--r--lib/open-uri.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/open-uri.rb b/lib/open-uri.rb
index a6186fbb2c..8d0353bbc9 100644
--- a/lib/open-uri.rb
+++ b/lib/open-uri.rb
@@ -578,6 +578,12 @@ module URI
include OpenURI::OpenRead
end
+ class HTTPS
+ def proxy_open(buf, uri, options) # :nodoc:
+ raise ArgumentError, "open-uri doesn't support https."
+ end
+ end
+
class FTP
def direct_open(buf, options) # :nodoc:
require 'net/ftp'