module CI::Reporter

Constants

VERSION

Public Class Methods

maybe_quote_filename(fn) click to toggle source
# File lib/ci/reporter/rake/utils.rb, line 7
def self.maybe_quote_filename(fn)
  if fn =~ %r\s/
    fn = %Q{"#{fn}"}
  end
  fn
end