abhishekkr/rubygem_xml_motor

View on GitHub
lib/xml-motor/xml-stdout.rb

Summary

Maintainability
A
0 mins
Test Coverage
module XMLStdout

  def self._err(mesag)
    puts "ERROR:: #{mesag}" unless ENV['VERBOSE'].nil?
  end

  def self._nfo(mesag)
    puts "INFO:: #{mesag}" unless ENV['VERBOSE'].nil?
  end
end