module GRCommons

Module with common code for GR, GR3.

Constants

VERSION

Public Class Methods

gr_log(out = $stderr) click to toggle source

Create a new GRLogger @param out [String] @return [GRLogger] @example

require 'gr_commons/gr_logger'
GRCommons.gr_log("log.txt")
# File lib/gr_commons/gr_logger.rb, line 21
def gr_log(out = $stderr)
  GRCommons::GRLogger.new(out)
end
gr_logger() click to toggle source

Return the last created GRLogger @return [GRLogger]

# File lib/gr_commons/gr_logger.rb, line 28
def gr_logger
  GRCommons::GRLogger.logger
end