Sha256: 31060dce6e657fce00c9ec703434b6b210e66f4dc883dc2202eb3c167821dc80

Contents?: true

Size: 1.18 KB

Versions: 11

Compression:

Stored size: 1.18 KB

Contents

require 'logger'

module Snapshot
  class Helper


    # Logging happens using this method
    def self.log
      if is_test?
        @@log ||= Logger.new(STDOUT) # don't show any logs when running tests
      else
        @@log ||= Logger.new(STDOUT)
      end

      @@log.formatter = proc do |severity, datetime, progname, msg|
        string = "#{severity} [#{datetime.strftime('%Y-%m-%d %H:%M:%S.%2N')}]: "
        second = "#{msg}\n"

        if severity == "DEBUG"
          string = string.magenta
        elsif severity == "INFO"
          string = string.white
        elsif severity == "WARN"
          string = string.yellow
        elsif severity == "ERROR"
          string = string.red
        elsif severity == "FATAL"
          string = string.red.bold
        end


        [string, second].join("")
      end

      @@log
    end

    # @return true if the currently running program is a unit test
    def self.is_test?
      defined?SpecHelper
    end

    # @return the full path to the Xcode developer tools of the currently
    #  running system
    def self.xcode_path
      return "" if self.is_test? and not OS.mac?
      `xcode-select -p`.gsub("\n", '') + "/"
    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
snapshot-0.3.3 lib/snapshot/helper.rb
snapshot-0.3.2 lib/snapshot/helper.rb
snapshot-0.3.1 lib/snapshot/helper.rb
snapshot-0.3.0 lib/snapshot/helper.rb
snapshot-0.2.4 lib/snapshot/helper.rb
snapshot-0.2.3 lib/snapshot/helper.rb
snapshot-0.2.2 lib/snapshot/helper.rb
snapshot-0.2.1 lib/snapshot/helper.rb
snapshot-0.2.1.beta1 lib/snapshot/helper.rb
snapshot-0.1.0 lib/snapshot/helper.rb
snapshot-0.0.2 lib/snapshot/helper.rb