Compare commits
No commits in common. "74a52a43e0d3af5b0da4bcfccd4d04bcc03305bb" and "b60f03082448898e0be14ca7c0c908d9ce7aa905" have entirely different histories.
74a52a43e0
...
b60f030824
4 changed files with 3 additions and 13 deletions
|
@ -1,7 +0,0 @@
|
||||||
Please focus on «@@ FILE ...» and analyze the content of «@@ FILE "{{FIXME: name of the file you want ot analyze}}"».
|
|
||||||
|
|
||||||
Provide your analysis as an appreciative feedback, stating:
|
|
||||||
- what you appreciate in current version
|
|
||||||
- what you would amplify / augment
|
|
||||||
- what you would adjust / change / remplace
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
Focus on the existing «@@ FILE "README.md"». and concentrate on your analysis and appreciative feedback too.
|
|
||||||
|
|
||||||
Please take in account each change you propose and write a fixed/improved version of the «@@ FILE "README.md"»
|
|
|
@ -127,7 +127,7 @@ module CodePreloader
|
||||||
|
|
||||||
STDERR.puts "Processing source directories: #{source_list}".colorize(:yellow)
|
STDERR.puts "Processing source directories: #{source_list}".colorize(:yellow)
|
||||||
processed_files = [] of ProcessedFile
|
processed_files = [] of ProcessedFile
|
||||||
filelist.to_a.sort.each do |file_path|
|
filelist.each do |file_path|
|
||||||
STDERR.puts "Processing file: #{file_path}".colorize(:yellow)
|
STDERR.puts "Processing file: #{file_path}".colorize(:yellow)
|
||||||
file_result = process_file(file_path, output_file)
|
file_result = process_file(file_path, output_file)
|
||||||
processed_files << file_result
|
processed_files << file_result
|
||||||
|
|
|
@ -46,7 +46,7 @@ module CodePreloader
|
||||||
seen = Set(String).new
|
seen = Set(String).new
|
||||||
|
|
||||||
# walk each source
|
# walk each source
|
||||||
@sources.sort.each do |dir|
|
@sources.each do |dir|
|
||||||
walker = Walk::Down.new(dir)
|
walker = Walk::Down.new(dir)
|
||||||
|
|
||||||
walker = walker.filter do |path|
|
walker = walker.filter do |path|
|
||||||
|
@ -88,7 +88,7 @@ module CodePreloader
|
||||||
self.each do |path|
|
self.each do |path|
|
||||||
files << path.to_s
|
files << path.to_s
|
||||||
end
|
end
|
||||||
files.sort
|
files
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue