mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ChangeLog: fix indent broen at r38633 and tabify.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8654730aa8
commit
bab92f0fea
1 changed files with 23 additions and 23 deletions
46
ChangeLog
46
ChangeLog
|
@ -2299,7 +2299,7 @@ Sat Dec 1 09:33:32 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* test/runner.rb: Set GEM_HOME, GEM_PATH and GEM_SKIP to empty set.
|
* test/runner.rb: Set GEM_HOME, GEM_PATH and GEM_SKIP to empty set.
|
||||||
With default_gem support in RubyGems GEM_SKIP prevents loading of
|
With default_gem support in RubyGems GEM_SKIP prevents loading of
|
||||||
built-in gems.
|
built-in gems.
|
||||||
|
|
||||||
Sat Dec 1 07:16:17 2012 Hiroshi Shirosaki <h.shirosaki@gmail.com>
|
Sat Dec 1 07:16:17 2012 Hiroshi Shirosaki <h.shirosaki@gmail.com>
|
||||||
|
|
||||||
|
@ -2937,7 +2937,7 @@ Thu Nov 29 15:10:45 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* test/minitest/test_minitest_unit.rb: restore orig_verbose only
|
* test/minitest/test_minitest_unit.rb: restore orig_verbose only
|
||||||
if it is set. This broke rdoc's tests.
|
if it is set. This broke rdoc's tests.
|
||||||
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20121129T050102Z.diff.html.gz
|
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20121129T050102Z.diff.html.gz
|
||||||
|
|
||||||
Thu Nov 29 14:56:30 2012 Koichi Sasada <ko1@atdot.net>
|
Thu Nov 29 14:56:30 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
@ -6999,7 +6999,7 @@ Fri Sep 28 17:26:27 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
fails on Windows with msys bash. It makes comparing paths
|
fails on Windows with msys bash. It makes comparing paths
|
||||||
case-insensitive.
|
case-insensitive.
|
||||||
pick from upstream to fix a failure of test-all [ruby-core:47711]
|
pick from upstream to fix a failure of test-all [ruby-core:47711]
|
||||||
https://github.com/rubygems/rubygems/commit/c474edb2f3704206f04da1c8c6cf9fb079d84abe
|
https://github.com/rubygems/rubygems/commit/c474edb2f3704206f04da1c8c6cf9fb079d84abe
|
||||||
|
|
||||||
Fri Sep 28 15:44:45 2012 Shugo Maeda <shugo@ruby-lang.org>
|
Fri Sep 28 15:44:45 2012 Shugo Maeda <shugo@ruby-lang.org>
|
||||||
|
|
||||||
|
@ -8877,7 +8877,7 @@ Sun Jul 22 23:58:48 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
Sat Jul 21 06:21:45 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Sat Jul 21 06:21:45 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* lib/net/http.rb: fixes for r36476. [Feature #6546]
|
* lib/net/http.rb: fixes for r36476. [Feature #6546]
|
||||||
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20120720T030101Z.diff.html.gz
|
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20120720T030101Z.diff.html.gz
|
||||||
|
|
||||||
* lib/net/http.rb (Net::HTTP.newobj): return back for compatibility.
|
* lib/net/http.rb (Net::HTTP.newobj): return back for compatibility.
|
||||||
|
|
||||||
|
@ -10529,7 +10529,7 @@ Wed Jun 13 10:20:27 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* process.c (rb_exec_fillarg): use shell if the first word is reserved
|
* process.c (rb_exec_fillarg): use shell if the first word is reserved
|
||||||
or special built-in name.
|
or special built-in name.
|
||||||
http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
|
http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
|
||||||
|
|
||||||
* process.c (rb_exec_fillarg): treat '=' only in the first word. if
|
* process.c (rb_exec_fillarg): treat '=' only in the first word. if
|
||||||
the first word does not contain '=', it is the command name and
|
the first word does not contain '=', it is the command name and
|
||||||
|
@ -10608,7 +10608,7 @@ Mon Jun 11 12:14:37 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
dfp (dynamic frame pointer) to ep (environment pointer).
|
dfp (dynamic frame pointer) to ep (environment pointer).
|
||||||
This change make VM `normal' (similar to other interpreters).
|
This change make VM `normal' (similar to other interpreters).
|
||||||
Before this commit:
|
Before this commit:
|
||||||
Each frame has two env pointers lfp and dfp. lfp points
|
Each frame has two env pointers lfp and dfp. lfp points
|
||||||
local environment which is method/class/toplevel frame.
|
local environment which is method/class/toplevel frame.
|
||||||
lfp[0] is block pointer.
|
lfp[0] is block pointer.
|
||||||
dfp is block local frame. dfp[0] points previous (parent)
|
dfp is block local frame. dfp[0] points previous (parent)
|
||||||
|
@ -10682,7 +10682,7 @@ Mon Jun 11 06:17:06 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* thread_pthread.c (native_cond_initialize): fix typo in r36022.
|
* thread_pthread.c (native_cond_initialize): fix typo in r36022.
|
||||||
this cause a failure on FreeBSD 8.2 amd64.
|
this cause a failure on FreeBSD 8.2 amd64.
|
||||||
http://fbsd.rubyci.org/~chkbuild/ruby-trunk/log/20120610T130201Z.diff.html.gz
|
http://fbsd.rubyci.org/~chkbuild/ruby-trunk/log/20120610T130201Z.diff.html.gz
|
||||||
|
|
||||||
Mon Jun 11 05:21:57 2012 Koichi Sasada <ko1@atdot.net>
|
Mon Jun 11 05:21:57 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
@ -10761,7 +10761,7 @@ Sun Jun 10 15:49:47 2012 Tanaka Akira <akr@fsij.org>
|
||||||
Sun Jun 10 14:19:33 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Sun Jun 10 14:19:33 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in: NetBSD 6 adds libexecinfo but it only works on amd64.
|
* configure.in: NetBSD 6 adds libexecinfo but it only works on amd64.
|
||||||
http://www.mail-archive.com/source-changes-full@netbsd.org/msg38729.html
|
http://www.mail-archive.com/source-changes-full@netbsd.org/msg38729.html
|
||||||
|
|
||||||
Sun Jun 10 12:43:23 2012 Tanaka Akira <akr@fsij.org>
|
Sun Jun 10 12:43:23 2012 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
@ -11437,16 +11437,16 @@ Sun Jun 3 01:36:52 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
(2) Method name: RubyVM::FrameInfo.caller ->
|
(2) Method name: RubyVM::FrameInfo.caller ->
|
||||||
Kernel.caller_locations.
|
Kernel.caller_locations.
|
||||||
(3) Instance methods of
|
(3) Instance methods of
|
||||||
RubyVM::FrameInfo (RubyVM::Backtrace::Location)
|
RubyVM::FrameInfo (RubyVM::Backtrace::Location)
|
||||||
(3-1) name -> label
|
(3-1) name -> label
|
||||||
(3-2) basename -> base_label (basename is confusing with
|
(3-2) basename -> base_label (basename is confusing with
|
||||||
File.basename)
|
File.basename)
|
||||||
(3-3) line_no -> lineno (We have already similar name
|
(3-3) line_no -> lineno (We have already similar name
|
||||||
File#lineno, commented by kou [ruby-dev:45686]).
|
File#lineno, commented by kou [ruby-dev:45686]).
|
||||||
(3-4) filename -> path.
|
(3-4) filename -> path.
|
||||||
(3-5) filepath -> absolute_path.
|
(3-5) filepath -> absolute_path.
|
||||||
(3-5) iseq -> removed (we will make other APIs to access iseq
|
(3-5) iseq -> removed (we will make other APIs to access iseq
|
||||||
and other information of frame for debugging).
|
and other information of frame for debugging).
|
||||||
|
|
||||||
* test/ruby/test_backtrace.rb: apply above changes.
|
* test/ruby/test_backtrace.rb: apply above changes.
|
||||||
And apply comment from kou [ruby-dev:45686].
|
And apply comment from kou [ruby-dev:45686].
|
||||||
|
@ -11833,7 +11833,7 @@ Thu May 24 14:30:13 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* vm.c: add RubyVM::Backtrace object (btobj).
|
* vm.c: add RubyVM::Backtrace object (btobj).
|
||||||
Backtrace information contains an array consists of location
|
Backtrace information contains an array consists of location
|
||||||
information for each frames by string.
|
information for each frames by string.
|
||||||
RubyVM::Backtrace object is lightweight backtrace information,
|
RubyVM::Backtrace object is lightweight backtrace information,
|
||||||
which contains complete information to generate traditional style
|
which contains complete information to generate traditional style
|
||||||
backtrace (an array of strings) with faster generation.
|
backtrace (an array of strings) with faster generation.
|
||||||
|
@ -12454,7 +12454,7 @@ Tue May 8 07:44:18 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_ssl.c (ossl_start_ssl): remove useless rb_sys_fail
|
* ext/openssl/ossl_ssl.c (ossl_start_ssl): remove useless rb_sys_fail
|
||||||
before ossl_raise. this cause a test failure on Linux.
|
before ossl_raise. this cause a test failure on Linux.
|
||||||
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20120507T190102Z.log.html.gz
|
http://u64.rubyci.org/~chkbuild/ruby-trunk/log/20120507T190102Z.log.html.gz
|
||||||
|
|
||||||
Tue May 8 05:35:18 2012 Eric Hodel <drbrain@segment7.net>
|
Tue May 8 05:35:18 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
@ -12489,13 +12489,13 @@ Tue May 8 02:34:26 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* lib/minitest/unit.rb (assert_match): refix of r35563.
|
* lib/minitest/unit.rb (assert_match): refix of r35563.
|
||||||
r35563 breaks the intention of the original change.
|
r35563 breaks the intention of the original change.
|
||||||
https://github.com/seattlerb/minitest/commit/68858105b2eb11c85105ffac5f32b662c59397f3
|
https://github.com/seattlerb/minitest/commit/68858105b2eb11c85105ffac5f32b662c59397f3
|
||||||
* lib/minitest/unit.rb (refute_match): ditto.
|
* lib/minitest/unit.rb (refute_match): ditto.
|
||||||
|
|
||||||
Mon May 7 21:19:17 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Mon May 7 21:19:17 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/json: Merge JSON 1.7.1.
|
* ext/json: Merge JSON 1.7.1.
|
||||||
https://github.com/flori/json/commit/e5b9a9465c1159fae533bca320d950b772bcb4ac
|
https://github.com/flori/json/commit/e5b9a9465c1159fae533bca320d950b772bcb4ac
|
||||||
|
|
||||||
Mon May 7 22:54:22 2012 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
Mon May 7 22:54:22 2012 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
||||||
|
|
||||||
|
@ -12787,7 +12787,7 @@ Fri Apr 27 07:15:07 2012 Tanaka Akira <akr@fsij.org>
|
||||||
* ext/socket/socket.c (sock_s_pack_sockaddr_un): support the longest
|
* ext/socket/socket.c (sock_s_pack_sockaddr_un): support the longest
|
||||||
path in sockaddr_un, really.
|
path in sockaddr_un, really.
|
||||||
reported by nagachika.
|
reported by nagachika.
|
||||||
http://d.hatena.ne.jp/nagachika/20120426/ruby_trunk_changes_35474_35476
|
http://d.hatena.ne.jp/nagachika/20120426/ruby_trunk_changes_35474_35476
|
||||||
|
|
||||||
Thu Apr 26 12:28:06 2012 Tanaka Akira <akr@fsij.org>
|
Thu Apr 26 12:28:06 2012 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
@ -12952,7 +12952,7 @@ Mon Apr 23 20:11:02 2012 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* lib/drb/ssl.rb: generate 1024 bits RSA key instead of 512 bits.
|
* lib/drb/ssl.rb: generate 1024 bits RSA key instead of 512 bits.
|
||||||
OpenSSL 1.0.1 rejects 512 bits RSA key for TLS1.2 with SHA512.
|
OpenSSL 1.0.1 rejects 512 bits RSA key for TLS1.2 with SHA512.
|
||||||
http://rt.openssl.org/Ticket/Display.html?id=2769&user=guest&pass=guest
|
http://rt.openssl.org/Ticket/Display.html?id=2769&user=guest&pass=guest
|
||||||
reported by Bohuslav Kabrda.
|
reported by Bohuslav Kabrda.
|
||||||
[ruby-core:43844] [ruby-trunk - Bug #6221]
|
[ruby-core:43844] [ruby-trunk - Bug #6221]
|
||||||
|
|
||||||
|
@ -13432,7 +13432,7 @@ Sun Apr 8 22:46:01 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/json/generator/generator.c (generate_json_bignum):
|
* ext/json/generator/generator.c (generate_json_bignum):
|
||||||
add RB_GC_GUARD.
|
add RB_GC_GUARD.
|
||||||
http://fb.rubyci.org/~chkbuild/ruby-trunk/log/20120407T210301Z.diff.html.gz
|
http://fb.rubyci.org/~chkbuild/ruby-trunk/log/20120407T210301Z.diff.html.gz
|
||||||
|
|
||||||
Sun Apr 8 07:26:40 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Sun Apr 8 07:26:40 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
@ -20175,7 +20175,7 @@ Wed Aug 31 17:28:23 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
* variable.c (rb_autoload_load): Move RB_GC_GUARD() to proper
|
* variable.c (rb_autoload_load): Move RB_GC_GUARD() to proper
|
||||||
position based on suggestion by CHIKANAGA Tomoyuki at
|
position based on suggestion by CHIKANAGA Tomoyuki at
|
||||||
http://d.hatena.ne.jp/nagachika/20110826/ruby_trunk_changes_33070_33078
|
http://d.hatena.ne.jp/nagachika/20110826/ruby_trunk_changes_33070_33078
|
||||||
|
|
||||||
* variable.c (autoload_defined_p): Fix incompatible autoload behavior
|
* variable.c (autoload_defined_p): Fix incompatible autoload behavior
|
||||||
that causes Rails crash. Class definition instruction defined in
|
that causes Rails crash. Class definition instruction defined in
|
||||||
|
@ -20378,8 +20378,8 @@ Sat Aug 27 11:18:12 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
* Revert r33078. It caused a Rails application NoMethodError.
|
* Revert r33078. It caused a Rails application NoMethodError.
|
||||||
|
|
||||||
/home/nahi/git/emptyApp/ruby/1.9.1/gems/rack-mount-0.6.14/lib/rack/mount/utils.rb:157: warning: toplevel constant ScanError referenced by Regin::Parser::ScanError
|
/home/nahi/git/emptyApp/ruby/1.9.1/gems/rack-mount-0.6.14/lib/rack/mount/utils.rb:157: warning: toplevel constant ScanError referenced by Regin::Parser::ScanError
|
||||||
/home/nahi/git/emptyApp/ruby/1.9.1/gems/rack-mount-0.6.14/lib/rack/mount/vendor/regin/regin/parser.rb:17:in `parse_regexp': undefined method `scan_str' for #<Regin::Parser:0x00000002344548> (NoMethodError)
|
/home/nahi/git/emptyApp/ruby/1.9.1/gems/rack-mount-0.6.14/lib/rack/mount/vendor/regin/regin/parser.rb:17:in `parse_regexp': undefined method `scan_str' for #<Regin::Parser:0x00000002344548> (NoMethodError)
|
||||||
|
|
||||||
Sat Aug 27 08:44:58 2011 Eric Hodel <drbrain@segment7.net>
|
Sat Aug 27 08:44:58 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
@ -20973,7 +20973,7 @@ Sun Aug 7 00:42:55 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/tk/lib/tk/wm.rb (Tk::Wm.command): Add the missing receiver
|
* ext/tk/lib/tk/wm.rb (Tk::Wm.command): Add the missing receiver
|
||||||
before calling epath. patched by flori
|
before calling epath. patched by flori
|
||||||
https://github.com/flori/ruby/commit/aa9474d32e5f2c57f8b0e2e0c528a03f06a4d433
|
https://github.com/flori/ruby/commit/aa9474d32e5f2c57f8b0e2e0c528a03f06a4d433
|
||||||
|
|
||||||
Sat Aug 6 07:06:34 2011 Eric Hodel <drbrain@segment7.net>
|
Sat Aug 6 07:06:34 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue