ruby-changes:43542
From: nobu <ko1@a...>
Date: Sat, 9 Jul 2016 11:44:44 +0900 (JST)
Subject: [ruby-changes:43542] nobu:r55615 (trunk): Use keyword
nobu 2016-07-09 11:44:39 +0900 (Sat, 09 Jul 2016) New Revision: 55615 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55615 Log: Use keyword * tool/mkconfig.rb: use keyword true, instead of the toplevel constant. Modified files: trunk/tool/mkconfig.rb Index: tool/mkconfig.rb =================================================================== --- tool/mkconfig.rb (revision 55614) +++ tool/mkconfig.rb (revision 55615) @@ -20,7 +20,7 @@ $:.unshift(".") https://github.com/ruby/ruby/blob/trunk/tool/mkconfig.rb#L20 require "fileutils" mkconfig = File.basename($0) -fast = {'prefix'=>TRUE, 'ruby_install_name'=>TRUE, 'INSTALL'=>TRUE, 'EXEEXT'=>TRUE} +fast = {'prefix'=>true, 'ruby_install_name'=>true, 'INSTALL'=>true, 'EXEEXT'=>true} win32 = /mswin/ =~ arch universal = /universal.*darwin/ =~ arch -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/