Sha256: f4ee69fc1833c2de673ac61024e49abdc1b54e08370d09976c8d7cb2133c4df0

Contents?: true

Size: 1.12 KB

Versions: 9

Compression:

Stored size: 1.12 KB

Contents

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
        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)}" if !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
        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)
        path
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
cucumber-2.99.0 lib/cucumber/formatter/io.rb
mobiusloop-0.1.5 lib/cucumber/formatter/io.rb
cucumber-2.4.0 lib/cucumber/formatter/io.rb
mobiusloop-0.1.3 lib/cucumber/formatter/io.rb
mobiusloop-0.1.2 lib/cucumber/formatter/io.rb
cucumber-2.3.3 lib/cucumber/formatter/io.rb
cucumber-2.3.2 lib/cucumber/formatter/io.rb
cucumber-2.3.1 lib/cucumber/formatter/io.rb
cucumber-2.3.0 lib/cucumber/formatter/io.rb