зеркало из https://github.com/github/ruby.git
* ext/pathname/lib/pathname.rb: Remove condition of RUBY_VERSION <= 1.9.
[Feature #11082] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
f51a964d3f
Коммит
180293ac89
|
@ -1,3 +1,8 @@
|
|||
Thu May 14 15:54:13 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||
|
||||
* ext/pathname/lib/pathname.rb: Remove condition of RUBY_VERSION <= 1.9.
|
||||
[Feature #11082]
|
||||
|
||||
Wed May 13 17:10:37 2015 Masaki Matsushita <glass.saga@gmail.com>
|
||||
|
||||
* enum.c (enum_to_a): revert r50457.
|
||||
|
|
|
@ -13,13 +13,8 @@ require 'pathname.so'
|
|||
|
||||
class Pathname
|
||||
|
||||
# :stopdoc:
|
||||
if RUBY_VERSION < "1.9"
|
||||
TO_PATH = :to_str
|
||||
else
|
||||
# to_path is implemented so Pathname objects are usable with File.open, etc.
|
||||
TO_PATH = :to_path
|
||||
end
|
||||
# to_path is implemented so Pathname objects are usable with File.open, etc.
|
||||
TO_PATH = :to_path
|
||||
|
||||
SAME_PATHS = if File::FNM_SYSCASE.nonzero?
|
||||
# Avoid #zero? here because #casecmp can return nil.
|
||||
|
|
Загрузка…
Ссылка в новой задаче