ruby-changes:34199
From: zzak <ko1@a...>
Date: Mon, 2 Jun 2014 09:01:53 +0900 (JST)
Subject: [ruby-changes:34199] zzak:r46288 (trunk): * lib/English.rb: [DOC] $LOADED_FEATURES moved to load.c [Fixes GH-620]
zzak 2014-06-01 04:54:55 +0900 (Sun, 01 Jun 2014) New Revision: 46288 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=46288&view=revision Log: * lib/English.rb: [DOC] $LOADED_FEATURES moved to load.c [Fixes GH-620] Patch submitted by @leafac in https://github.com/ruby/ruby/pull/620 * doc/globals.rdoc: Added $LOADED_FEATURES to list Modified files: trunk/ChangeLog trunk/doc/globals.rdoc trunk/lib/English.rb Index: doc/globals.rdoc =================================================================== --- doc/globals.rdoc (revision 46287) +++ doc/globals.rdoc (revision 46288) @@ -31,6 +31,7 @@ $DEBUG:: The debug flag, which is se https://github.com/ruby/ruby/blob/trunk/doc/globals.rdoc#L31 backtrace). Setting this to a true value enables debug output as if -d were given on the command line. Setting this to a false value disables debug output. +$LOADED_FEATURES:: The alias to the $". $FILENAME:: Current input file from $<. Same as $<.filename. $LOAD_PATH:: The alias to the $:. $stderr:: The current standard error output. Index: ChangeLog =================================================================== --- ChangeLog (revision 46287) +++ ChangeLog (revision 46288) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Jun 1 04:52:47 2014 Zachary Scott <e@z...> + + * lib/English.rb: [DOC] $LOADED_FEATURES moved to load.c [Fixes GH-620] + Patch submitted by @leafac in https://github.com/ruby/ruby/pull/620 + * doc/globals.rdoc: Added $LOADED_FEATURES to list + Sat May 31 22:30:14 2014 Tanaka Akira <akr@f...> * test/lib/leakchecker.rb: Leak checker extracted from Index: lib/English.rb =================================================================== --- lib/English.rb (revision 46287) +++ lib/English.rb (revision 46288) @@ -6,7 +6,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/English.rb#L6 # # $\ = ' -- ' # "waterbuffalo" =~ /buff/ -# print $", $', $$, "\n" +# print $', $$, "\n" # # With English: # @@ -14,7 +14,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/English.rb#L14 # # $OUTPUT_FIELD_SEPARATOR = ' -- ' # "waterbuffalo" =~ /buff/ -# print $LOADED_FEATURES, $POSTMATCH, $PID, "\n" +# print $POSTMATCH, $PID, "\n" # # Below is a full list of descriptive aliases and their associated global # variable: -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/