module CI::Reporter

Constants

VERSION

Public Class Methods

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