Sha256: 5c2bddfdcc8aad3f7c4dc9b19186255999f93273c27a4be60503b8c455aa0df1
Contents?: true
Size: 265 Bytes
Versions: 8
Compression:
Stored size: 265 Bytes
Contents
class File def self.in_path(filename, search_path = Spread2RDF::SEARCH_PATH) return filename if File.exist? filename search_path.each do |path| file = File.join(path, filename) return file if File.exist? file end nil end end
Version data entries
8 entries across 8 versions & 1 rubygems