File tree Expand file tree Collapse file tree 3 files changed +3
-20
lines changed Expand file tree Collapse file tree 3 files changed +3
-20
lines changed Original file line number Diff line number Diff line change 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
-
7
1
Fri Apr 1 00:41:17 2016 NAKAMURA Usaku <usa@ruby-lang.org>
8
2
9
3
* test/rubygems/test_gem_commands_environment_command.rb (test_execute):
Original file line number Diff line number Diff line change @@ -247,17 +247,6 @@ def setup
247
247
@tempdir . untaint
248
248
end
249
249
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
-
261
250
@gemhome = File . join @tempdir , 'gemhome'
262
251
@userhome = File . join @tempdir , 'userhome'
263
252
ENV [ "GEM_SPEC_CACHE" ] = File . join @tempdir , 'spec_cache'
Original file line number Diff line number Diff line change 1
1
#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
4
4
5
5
#define RUBY_RELEASE_YEAR 2016
6
6
#define RUBY_RELEASE_MONTH 4
7
- #define RUBY_RELEASE_DAY 22
7
+ #define RUBY_RELEASE_DAY 1
8
8
9
9
#include "ruby/version.h"
10
10
You can’t perform that action at this time.
0 commit comments