Skip to content

Commit 6968f3a

Browse files
committed
Revert previous commit because it was a mistake.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@54690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 54c011a commit 6968f3a

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

ChangeLog

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
Fri Apr 22 17:49:34 2016 Hiroshi Shirosaki <h.shirosaki@gmail.com>
2-
3-
* lib/rubygems/test_case.rb: Fix test on Windows for inconsistent temp path.
4-
https://github.com/rubygems/rubygems/pull/1554
5-
[Bug #12193][ruby-core:74431]
6-
71
Fri Apr 1 00:41:17 2016 NAKAMURA Usaku <usa@ruby-lang.org>
82

93
* test/rubygems/test_gem_commands_environment_command.rb (test_execute):

lib/rubygems/test_case.rb

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -247,17 +247,6 @@ def setup
247247
@tempdir.untaint
248248
end
249249

250-
# This makes the tempdir consistent on Windows.
251-
# Dir.tmpdir may return short path name, but Dir[Dir.tmpdir] returns long
252-
# path name. https://bugs.ruby-lang.org/issues/10819
253-
# File.expand_path or File.realpath doesn't convert path name to long path
254-
# name. Only Dir[] (= Dir.glob) works.
255-
# Short and long path name is specific to Windows filesystem.
256-
if win_platform?
257-
@tempdir = Dir[@tempdir][0]
258-
@tempdir.untaint
259-
end
260-
261250
@gemhome = File.join @tempdir, 'gemhome'
262251
@userhome = File.join @tempdir, 'userhome'
263252
ENV["GEM_SPEC_CACHE"] = File.join @tempdir, 'spec_cache'

version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.1.10"
2-
#define RUBY_RELEASE_DATE "2016-04-22"
3-
#define RUBY_PATCHLEVEL 493
2+
#define RUBY_RELEASE_DATE "2016-04-01"
3+
#define RUBY_PATCHLEVEL 492
44

55
#define RUBY_RELEASE_YEAR 2016
66
#define RUBY_RELEASE_MONTH 4
7-
#define RUBY_RELEASE_DAY 22
7+
#define RUBY_RELEASE_DAY 1
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)