diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 09:50:50 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 09:50:50 +0000 |
| commit | de3f0d104bbe96133cb442bb83438a7da5881fd1 (patch) | |
| tree | f0b9ccd71ad62c9fd52a44c73c082bb25c659cd9 /lib/rake.rb | |
| parent | 328281359dc5b55accece776a1988a1b5b45b3cf (diff) | |
merges r20907 from trunk into ruby_1_9_1.
* lib/rake.rb (Rake::FileList#egrep): change open mode to "rb",
i.e. default to binary. [ruby-dev:37385]
* lib/rake.rb (Rake::FileList#egrep): allow specifying reading
encoding, e.g. FileList['*.rb'].egrep(/require/, encoding:
"ascii-8bit")
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rake.rb')
| -rwxr-xr-x | lib/rake.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rake.rb b/lib/rake.rb index 480068be7..63412b153 100755 --- a/lib/rake.rb +++ b/lib/rake.rb @@ -1477,9 +1477,9 @@ module Rake # name, line number, and the matching line of text. If no block is given, # a standard emac style file:linenumber:line message will be printed to # standard out. - def egrep(pattern) + def egrep(pattern, *opt) each do |fn| - open(fn) do |inf| + open(fn, "rb", *opt) do |inf| count = 0 inf.each do |line| count += 1 |
