Method: LibGems::Specification#lib_files

Defined in:
lib/libgems/specification.rb

#lib_filesObject

Files in the LibGems under one of the require_paths



387
388
389
390
391
392
393
# File 'lib/libgems/specification.rb', line 387

def lib_files
  @files.select do |file|
    require_paths.any? do |path|
      file.index(path) == 0
    end
  end
end