class Array

Public Instance Methods

to_debug() click to toggle source
# File lib/eric_tools/array.rb, line 8
def to_debug
  self.each { |item|
    ((item||'').to_s).to_debug
  }
end
to_info()
Alias for: to_logger
to_logger() click to toggle source
# File lib/eric_tools/array.rb, line 2
def to_logger
  self.each { |item|
    ((item||'').to_s).to_logger
  }
end
Also aliased as: to_info