Sha256: 2ffb877d016630db820b67e5242641c71cb2fd8211e729f3a9b06517f4912056
Contents?: true
Size: 279 Bytes
Versions: 66
Compression:
Stored size: 279 Bytes
Contents
module CurationConcerns class LocalFileService # @param [String] file_name path to the file # @param [Hash] _options # @yield [File] opens the file and yields it to the block def self.call(file_name, _options) yield File.open(file_name) end end end
Version data entries
66 entries across 66 versions & 2 rubygems