class SdocAll::FileList

Public Instance Methods

resolve() click to toggle source
Calls superclass method
# File lib/sdoc_all/file_list.rb, line 3
def resolve
  if @pending
    super
    @items.replace(@items.uniq.reject{ |path| !File.exist?(path) })
  end
  self
end