class Pathname::EachFilenameEnumerable

Attributes

pathname[R]

Public Class Methods

new(pathname) click to toggle source
# File lib/chef/monkey_patches/pathname.rb, line 23
def initialize(pathname)
  @pathname = pathname
end

Public Instance Methods

each(&block) click to toggle source
# File lib/chef/monkey_patches/pathname.rb, line 27
def each(&block)
  @pathname.old_each_filename(&block)
end