[前][次][番号順一覧][スレッド一覧]

ruby-changes:42476

From: naruse <ko1@a...>
Date: Tue, 12 Apr 2016 13:30:44 +0900 (JST)
Subject: [ruby-changes:42476] naruse:r54550 (ruby_2_3): merge revision(s) 54257: [Backport #12215]

naruse	2016-04-12 14:27:20 +0900 (Tue, 12 Apr 2016)

  New Revision: 54550

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54550

  Log:
    merge revision(s) 54257: [Backport #12215]
    
    * lib/uri/http.rb (URI::HTTP#initialize): [DOC] fix example,
      missing mandatory arguments.  [ruby-core:74540] [Bug #12215]

  Modified directories:
    branches/ruby_2_3/
  Modified files:
    branches/ruby_2_3/ChangeLog
    branches/ruby_2_3/lib/uri/http.rb
    branches/ruby_2_3/version.h
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 54549)
+++ ruby_2_3/version.h	(revision 54550)
@@ -1,10 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1
 #define RUBY_VERSION "2.3.0"
-#define RUBY_RELEASE_DATE "2016-04-07"
-#define RUBY_PATCHLEVEL 75
+#define RUBY_RELEASE_DATE "2016-04-12"
+#define RUBY_PATCHLEVEL 76
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 4
-#define RUBY_RELEASE_DAY 7
+#define RUBY_RELEASE_DAY 12
 
 #include "ruby/version.h"
 
Index: ruby_2_3/ChangeLog
===================================================================
--- ruby_2_3/ChangeLog	(revision 54549)
+++ ruby_2_3/ChangeLog	(revision 54550)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1
+Tue Apr 12 14:27:04 2016  Nobuyoshi Nakada  <nobu@r...>
+
+	* lib/uri/http.rb (URI::HTTP#initialize): [DOC] fix example,
+	  missing mandatory arguments.  [ruby-core:74540] [Bug #12215]
+
 Thu Apr  7 01:07:02 2016  Nobuyoshi Nakada  <nobu@r...>
 
 	* sprintf.c (rb_str_format): fix buffer overflow, length must be
Index: ruby_2_3/lib/uri/http.rb
===================================================================
--- ruby_2_3/lib/uri/http.rb	(revision 54549)
+++ ruby_2_3/lib/uri/http.rb	(revision 54550)
@@ -63,6 +63,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_3/lib/uri/http.rb#L63
       return super(tmp)
     end
 
+=begin
     #
     # == Description
     #
@@ -75,8 +76,8 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_3/lib/uri/http.rb#L76
     #
     # Example:
     #
-    #     uri = URI::HTTP.new('http', nil, "www.example.com", nil, "/path",
-    #       "query", 'fragment')
+    #     uri = URI::HTTP.new("http", nil, "www.example.com", nil, nil,
+    #                         "/path", nil, "query", "fragment")
     #
     #
     # See also URI::Generic.new
@@ -84,6 +85,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_3/lib/uri/http.rb#L85
     def initialize(*arg)
       super(*arg)
     end
+=end
 
     #
     # == Description

Property changes on: ruby_2_3
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r54257


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]