Class: Gly::NonemptyPrinter

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/gly/gly_convertor.rb

Instance Method Summary collapse

Instance Method Details

#puts(what) ⇒ Object



47
48
49
50
# File 'lib/gly/gly_convertor.rb', line 47

def puts(what)
  return if what.nil? || what.empty?
  super(what)
end