class Rails::Paths::Path

def files_in(path)

Experimental RBS support (using type sampling data from the type_fusion project).

def files_in: (String path) -> untyped

This signature was generated using 1 sample from 1 application.

def files_in(path)
  files = Dir.glob(@glob, base: path)
  files -= @exclude if @exclude
  files.map! { |file| File.join(path, file) }
  files.sort
end