Sha256: 683c619ffdaeb98dd42f058a3624e4c6fb50a4fe4829e99d8e244ed12f3f1adf

Contents?: true

Size: 744 Bytes

Versions: 1

Compression:

Stored size: 744 Bytes

Contents

module Wukong
  class Source

    # A FileListSource is a collection of files
    #
    # FileLists are lazy. When given a list of glob patterns for possible files to be included in the file list, instead of searching the file structures to find the files, a FileList holds the pattern for latter use.
    #
    # This allows us to define a number of FileList to match any number of files, but only search out the actual files when then FileList itself is actually used. The key is that the first time an element of the FileList/Array is requested, the pending patterns are resolved into a real list of file names.
    #
    # @see_also http://rdoc.info/gems/rake/Rake/FileList
    #
    class FileListSource < Wukong::Source
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wukong-3.0.0.pre lib/away/source/file_list_source.rb