From bf287424fd00c0304c836525bb52d89fc1f4a84a Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 21 Dec 2017 14:15:04 +0000 Subject: open-uri defines URI.open defined as an alias. open-uri's Kernel.open will be deprecated in future. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/open-uri.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/open-uri.rb b/lib/open-uri.rb index a68413e8f8..c0ef89c2ec 100644 --- a/lib/open-uri.rb +++ b/lib/open-uri.rb @@ -40,6 +40,13 @@ module Kernel module_function :open end +module URI #:nodoc: + # alias for Kernel.open defined in open-uri. + def self.open(name, *rest, &block) + Kernel.open(name, *rest, &block) + end +end + # OpenURI is an easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP. # # == Example -- cgit v1.2.3