Sha256: 68d236aa90eddcd31fecc3c6deb6ccb1ec5b371e665e62d80531f658230ddc0e
Contents?: true
Size: 1.18 KB
Versions: 4
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true module Cucumber module Formatter module Io module_function def ensure_io(path_or_io) return nil if path_or_io.nil? return path_or_io if path_or_io.respond_to?(:write) file = File.open(path_or_io, Cucumber.file_mode('w')) at_exit do unless file.closed? file.flush file.close end end file end def ensure_file(path, name) raise "You *must* specify --out FILE for the #{name} formatter" unless String == path.class raise "I can't write #{name} to a directory - it has to be a file" if File.directory?(path) raise "I can't write #{name} to a file in the non-existing directory #{File.dirname(path)}" unless File.directory?(File.dirname(path)) ensure_io(path) end def ensure_dir(path, name) raise "You *must* specify --out DIR for the #{name} formatter" unless String == path.class raise "I can't write #{name} reports to a file - it has to be a directory" if File.file?(path) FileUtils.mkdir_p(path) unless File.directory?(path) File.absolute_path path end end end end
Version data entries
4 entries across 4 versions & 1 rubygems