ruby-changes:42388
From: usa <ko1@a...>
Date: Fri, 1 Apr 2016 00:42:29 +0900 (JST)
Subject: [ruby-changes:42388] usa:r54462 (ruby_2_1): * test/rubygems/test_gem_commands_environment_command.rb (test_execute):
usa 2016-04-01 00:42:25 +0900 (Fri, 01 Apr 2016) New Revision: 54462 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54462 Log: * test/rubygems/test_gem_commands_environment_command.rb (test_execute): version number may be two-digit. Modified files: branches/ruby_2_1/ChangeLog branches/ruby_2_1/test/rubygems/test_gem_commands_environment_command.rb branches/ruby_2_1/version.h Index: ruby_2_1/version.h =================================================================== --- ruby_2_1/version.h (revision 54461) +++ ruby_2_1/version.h (revision 54462) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/version.h#L1 #define RUBY_VERSION "2.1.10" #define RUBY_RELEASE_DATE "2016-04-01" -#define RUBY_PATCHLEVEL 491 +#define RUBY_PATCHLEVEL 492 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 4 Index: ruby_2_1/ChangeLog =================================================================== --- ruby_2_1/ChangeLog (revision 54461) +++ ruby_2_1/ChangeLog (revision 54462) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ChangeLog#L1 +Fri Apr 1 00:41:17 2016 NAKAMURA Usaku <usa@r...> + + * test/rubygems/test_gem_commands_environment_command.rb (test_execute): + version number may be two-digit. + Fri Apr 1 00:00:31 2016 NAKAMURA Usaku <usa@r...> * version.h: bump to 2.1.10. welcome to two-digit version! Index: ruby_2_1/test/rubygems/test_gem_commands_environment_command.rb =================================================================== --- ruby_2_1/test/rubygems/test_gem_commands_environment_command.rb (revision 54461) +++ ruby_2_1/test/rubygems/test_gem_commands_environment_command.rb (revision 54462) @@ -22,7 +22,7 @@ class TestGemCommandsEnvironmentCommand https://github.com/ruby/ruby/blob/trunk/ruby_2_1/test/rubygems/test_gem_commands_environment_command.rb#L22 end assert_match %r|RUBYGEMS VERSION: (\d\.)+\d|, @ui.output - assert_match %r|RUBY VERSION: \d\.\d\.\d \(.*\) \[.*\]|, @ui.output + assert_match %r|RUBY VERSION: \d+\.\d+\.\d+ \(.*\) \[.*\]|, @ui.output assert_match %r|INSTALLATION DIRECTORY: #{Regexp.escape @gemhome}|, @ui.output assert_match %r|RUBYGEMS PREFIX: |, @ui.output -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/