ruby-changes:42321
From: usa <ko1@a...>
Date: Tue, 29 Mar 2016 21:09:13 +0900 (JST)
Subject: [ruby-changes:42321] usa:r54395 (ruby_2_1): merge revision(s) 54257: [Backport #12215]
usa 2016-03-29 21:09:08 +0900 (Tue, 29 Mar 2016) New Revision: 54395 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54395 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_1/ Modified files: branches/ruby_2_1/ChangeLog branches/ruby_2_1/lib/uri/http.rb branches/ruby_2_1/version.h Index: ruby_2_1/lib/uri/http.rb =================================================================== --- ruby_2_1/lib/uri/http.rb (revision 54394) +++ ruby_2_1/lib/uri/http.rb (revision 54395) @@ -62,6 +62,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_1/lib/uri/http.rb#L62 return super(tmp) end +=begin # # == Description # @@ -74,8 +75,8 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_1/lib/uri/http.rb#L75 # # 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 @@ -83,6 +84,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/ruby_2_1/lib/uri/http.rb#L84 def initialize(*arg) super(*arg) end +=end # # == Description Index: ruby_2_1/ChangeLog =================================================================== --- ruby_2_1/ChangeLog (revision 54394) +++ ruby_2_1/ChangeLog (revision 54395) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ChangeLog#L1 +Tue Mar 29 21:09:02 2016 Nobuyoshi Nakada <nobu@r...> + + * lib/uri/http.rb (URI::HTTP#initialize): [DOC] fix example, + missing mandatory arguments. [ruby-core:74540] [Bug #12215] + Tue Mar 29 21:07:30 2016 NARUSE, Yui <naruse@r...> * thread_pthread.c (reserve_stack): fix reserving position where Index: ruby_2_1/version.h =================================================================== --- ruby_2_1/version.h (revision 54394) +++ ruby_2_1/version.h (revision 54395) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/version.h#L1 #define RUBY_VERSION "2.1.9" #define RUBY_RELEASE_DATE "2016-03-29" -#define RUBY_PATCHLEVEL 487 +#define RUBY_PATCHLEVEL 488 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 3 Property changes on: ruby_2_1 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r54257 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/