diff options
author | Steve Wills <swills@FreeBSD.org> | 2014-09-02 01:13:47 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2014-09-02 01:13:47 +0000 |
commit | aafb928748041db7ef4731cd31e32f81c232bea6 (patch) | |
tree | 2a6d6daf7a5f832830d3a3058da99072b4e98e32 /lang/ruby20/files/patch-lib_uri_generic.rb | |
parent | - Update to 2.4.9 (diff) |
lang/ruby*: remove obsolete patches
Remove no longer needed patches for ftp.
While here, fix the test target for ruby21
PR: 192998
Submitted by: Robert Grimm <rfgrimm@gmail.com>
Notes
Notes:
svn path=/head/; revision=366970
Diffstat (limited to 'lang/ruby20/files/patch-lib_uri_generic.rb')
-rw-r--r-- | lang/ruby20/files/patch-lib_uri_generic.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lang/ruby20/files/patch-lib_uri_generic.rb b/lang/ruby20/files/patch-lib_uri_generic.rb deleted file mode 100644 index a8b483e1fd9b..000000000000 --- a/lang/ruby20/files/patch-lib_uri_generic.rb +++ /dev/null @@ -1,21 +0,0 @@ ---- lib/uri/generic.rb.orig 2013-11-27 04:27:22.851503866 +0000 -+++ lib/uri/generic.rb 2013-11-27 04:27:58.130502926 +0000 -@@ -1481,7 +1481,17 @@ - end - end - -- str << path_query -+ path = path_query -+ -+ # -+ # Add URI delimiter if the path misses it (like as in FTP) -+ # -+ if not path.empty? and not str.empty? and path[0, 1] != '/' -+ path = '/' + path -+ end -+ str << path -+ end -+ if @fragment - end - - if @fragment |