files_in(path)private
No documentation available.
# File railties/lib/rails/paths.rb, line 238
def files_in(path)
files = Dir.glob(@glob, base: path)
files -= @exclude if @exclude
files.map! { |file| File.join(path, file) }
files.sort
end