aboutsummaryrefslogtreecommitdiffstats
path: root/ext/pathname/lib
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-26 12:50:13 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-26 12:50:13 +0000
commitbafaff1f43cf44430fed590dda00928b61821b6e (patch)
treec3e9a9560064f06da7c892e3d90834eb1c3675f3 /ext/pathname/lib
parent0eb31be6818ee400b30899f77f6bcbe0722ea35f (diff)
downloadruby-bafaff1f43cf44430fed590dda00928b61821b6e.tar.gz
* ext/pathname/pathname.c (path_readlines): Pathname#readlines
translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pathname/lib')
-rw-r--r--ext/pathname/lib/pathname.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb
index 0bc8e3bfa5..b4c701a084 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -485,9 +485,6 @@ end
class Pathname # * IO *
- # See <tt>IO.readlines</tt>. Returns all the lines from the file.
- def readlines(*args) IO.readlines(@path, *args) end
-
# See <tt>IO.sysopen</tt>.
def sysopen(*args) IO.sysopen(@path, *args) end
end