1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/pathname.rb: version information is added in document.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2003-10-05 14:31:35 +00:00
parent 92abdcefe4
commit 4fca6e91dc
2 changed files with 43 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Sun Oct 5 23:27:09 2003 Tanaka Akira <akr@m17n.org>
* lib/pathname.rb: version information is added in document.
Sun Oct 5 23:07:03 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_f_END): block should be given. [ruby-dev:21497]

View file

@ -6,12 +6,15 @@
#
# Pathname is immutable. It has no method for destructive update.
#
# pathname.rb is distributed with Ruby since 1.8.0.
class Pathname
def initialize(path)
@path = path.to_str.dup
@path.freeze
raise ArgumentError, "pathname contains \\0: #{@path.inspect}" if /\0/ =~ @path
if /\0/ =~ @path
raise ArgumentError, "pathname contains \\0: #{@path.inspect}"
end
end
def ==(other)
@ -33,6 +36,8 @@ class Pathname
def to_s
@path.dup
end
# to_str is implemented for Pathname object usable with File.open, etc.
alias to_str to_s
def inspect
@ -226,6 +231,8 @@ class Pathname
# Pathname#children returns the children of the directory as an array of
# pathnames. I.e. it is similar to Pathname#entries except '.' and '..'
# is not returned.
#
# This method is exist since 1.8.1.
def children
Dir.entries(@path).map {|f|
f == '.' || f == '..' ? nil : Pathname.new(f)
@ -242,9 +249,11 @@ class Pathname
#
# ArgumentError is raised when it cannot find a relative path.
#
# This method is exist since 1.8.1.
def relative_path_from(base_directory)
if self.absolute? != base_directory.absolute?
raise ArgumentError, "relative path between absolute and relative path: #{self.inspect}, #{base_directory.inspect}"
raise ArgumentError,
"relative path between absolute and relative path: #{self.inspect}, #{base_directory.inspect}"
end
dest = []
@ -281,7 +290,14 @@ end
# IO
class Pathname
# Pathname#each_line iterates over lines of the file.
# It's yields String objects for each line.
#
# This method is exist since 1.8.1.
def each_line(*args, &block) IO.foreach(@path, *args, &block) end
# This method is obsoleted at 1.8.1.
#
alias foreachline each_line # compatibility to 1.8.0. obsoleted.
def read(*args) IO.read(@path, *args) end
@ -357,6 +373,8 @@ class Pathname
def Pathname.getwd() Pathname.new(Dir.getwd) end
class << self; alias pwd getwd end
# This method is obsoleted at 1.8.1.
#
def chdir(&block) # compatibility to 1.8.0.
warn "Pathname#chdir is obsoleted. Use Dir.chdir."
Dir.chdir(@path, &block)
@ -366,7 +384,14 @@ class Pathname
def rmdir() Dir.rmdir(@path) end
def entries() Dir.entries(@path).map {|f| Pathname.new(f) } end
# Pathname#each_entry iterates over entries of the directory.
# It's yields Pathname objects for each entry.
#
# This method is exist since 1.8.1.
def each_entry(&block) Dir.foreach(@path) {|f| yield Pathname.new(f) } end
# This method is obsoleted at 1.8.1.
#
alias dir_foreach each_entry # compatibility to 1.8.0. obsoleted.
def mkdir(*args) Dir.mkdir(@path, *args) end
@ -409,6 +434,8 @@ class Pathname
end
alias delete unlink
# This method is obsoleted at 1.8.1.
#
def foreach(*args, &block) # compatibility to 1.8.0. obsoleted.
warn "Pathname#foreach is obsoleted. Use each_line or each_entry."
if FileTest.directory? @path
@ -535,7 +562,8 @@ if $0 == __FILE__
assert_equal('a/..', Pathname.new('a/../.').cleanpath(true).to_s)
assert_equal('/a', Pathname.new('/../.././../a').cleanpath(true).to_s)
assert_equal('a/b/../../../../c/../d', Pathname.new('a/b/../../../../c/../d').cleanpath(true).to_s)
assert_equal('a/b/../../../../c/../d',
Pathname.new('a/b/../../../../c/../d').cleanpath(true).to_s)
end
def test_cleanpath_no_symlink
@ -600,7 +628,13 @@ if $0 == __FILE__
def test_relative_path_from
assert_relpath("../a", "a", "b")
assert_relpath("../a", "a", "b/")
assert_relpath("../a", "a/", "b")
assert_relpath("../a", "a/", "b/")
assert_relpath("../a", "/a", "/b")
assert_relpath("../a", "/a", "/b/")
assert_relpath("../a", "/a/", "/b")
assert_relpath("../a", "/a/", "/b/")
assert_relpath("../b", "a/b", "a/c")
assert_relpath("../a", "../a", "../b")
@ -620,6 +654,8 @@ if $0 == __FILE__
assert_relpath("../a", "/../a", "/b")
assert_relpath("../../a", "../a", "b")
assert_relpath(".", "/a/../../b", "/b")
assert_relpath("..", "a/..", "a")
assert_relpath(".", "a/../b", "b")
assert_relpath("a", "a", "b/..")
assert_relpath("b/c", "b/c", "b/..")