inital idea for deleted files
This commit is contained in:
parent
b144514b06
commit
e795ab29f5
@ -54,4 +54,4 @@ module Guard
|
|||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -29,6 +29,7 @@ module Guard
|
|||||||
@directory = directory.to_s
|
@directory = directory.to_s
|
||||||
@sha1_checksums_hash = {}
|
@sha1_checksums_hash = {}
|
||||||
@relativize_paths = options.fetch(:relativize_paths, true)
|
@relativize_paths = options.fetch(:relativize_paths, true)
|
||||||
|
@cached_files = all_files
|
||||||
update_last_event
|
update_last_event
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -49,6 +50,9 @@ module Guard
|
|||||||
|
|
||||||
def modified_files(dirs, options={})
|
def modified_files(dirs, options={})
|
||||||
files = potentially_modified_files(dirs, options).select { |path| file_modified?(path) }
|
files = potentially_modified_files(dirs, options).select { |path| file_modified?(path) }
|
||||||
|
deleted_files = @cached_files.collect { |path| "!#{path}" unless File.exists?(path) }.compact
|
||||||
|
files.concat(deleted_files)
|
||||||
|
@cached_files = all_files
|
||||||
update_last_event
|
update_last_event
|
||||||
relativize_paths(files)
|
relativize_paths(files)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user