2005-04-03 23:13:16 +00:00
|
|
|
#!/usr/bin/ruby
|
|
|
|
|
|
|
|
module Rex
|
|
|
|
module Post
|
|
|
|
|
|
|
|
class Dir
|
|
|
|
|
|
|
|
def Dir.entries(name)
|
2005-04-04 01:33:26 +00:00
|
|
|
raise NotImplementedError
|
2005-04-03 23:13:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def Dir.foreach(name, &block)
|
|
|
|
entries(name).each(&block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end; end # Post/Rex
|
|
|
|
|