Sha256: f98a05215efb3c41eb02a5aaeee9585d5b5dbf6c730dea25ba5ae3421cb71f8c
Contents?: true
Size: 247 Bytes
Versions: 295
Compression:
Stored size: 247 Bytes
Contents
class RailsDirectory def initialize(path) @path = path end def file_path(path) File.join(@path, path) end def has_file?(path) File.exist?(file_path(path)) end def [](path) File.open(file_path(path)).read end end
Version data entries
295 entries across 295 versions & 9 rubygems