From 526d246f715a1a0046942f942173c2d9447e78a5 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 23 Aug 2010 14:16:06 +0000 Subject: * ext/pathname/pathname.c (path_each_line): Pathname#each_line translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pathname/lib/pathname.rb | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'ext/pathname/lib/pathname.rb') diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 4d19aa737c..3099b2b8f4 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -484,16 +484,6 @@ class Pathname end class Pathname # * IO * - # - # #each_line iterates over the line in the file. It yields a String object - # for each line. - # - # This method has existed since 1.8.1. - # - def each_line(*args, &block) # :yield: line - IO.foreach(@path, *args, &block) - end - # See IO.read. Returns all data from the file, or the first +N+ bytes # if specified. def read(*args) IO.read(@path, *args) end -- cgit v1.2.3