Type:
Class
Constants:
ARRAY_METHODS : (Array.instance_methods - Object.instance_methods).map { |n| n.to_s }

List of array methods (that are not in Object) that need to be delegated.

MUST_DEFINE : %w[to_a inspect <=>]

List of additional methods that must be delegated.

MUST_NOT_DEFINE : %w[to_a to_ary partition *]

List of methods that should not be delegated here (we define special versions of them explicitly below).

SPECIAL_RETURN : %w[ map collect sort sort_by select find_all reject grep compact flatten uniq values_at + - & | ]

List of delegated methods that return new array values which need wrapping.

DELEGATING_METHODS : (ARRAY_METHODS + MUST_DEFINE - MUST_NOT_DEFINE).collect{ |s| s.to_s }.sort.uniq

######################################################################### A FileList is essentially an array with a few helper methods defined to make file manipulation a bit easier.

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.

to_a
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

to_a() Instance Public methods Return the internal array object.

2025-01-10 15:47:30
resolve_add
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

resolve_add(fn) Instance Public methods

2025-01-10 15:47:30
exclude
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

exclude(*patterns, &block) Instance Public methods Register a list of file

2025-01-10 15:47:30
resolve
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

resolve() Instance Public methods Resolve all the pending adds now.

2025-01-10 15:47:30
kind_of?
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

kind_of?(klass) Instance Public methods Alias for:

2025-01-10 15:47:30
to_ary
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

to_ary() Instance Public methods Return the internal array object.

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

new(*patterns) Class Public methods Create a file list from the globbable patterns

2025-01-10 15:47:30
clear_exclude
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

clear_exclude() Instance Public methods Clear all the exclude patterns so that

2025-01-10 15:47:30
add
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

add(*filenames) Instance Public methods Alias for:

2025-01-10 15:47:30
*
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::FileList

*(other) Instance Public methods Redefine * to return either a string or a new

2025-01-10 15:47:30