Method: Liquid::Logging::ImprovedIO#print
- Defined in:
- lib/liquid/logging/improved_io.rb
#print(*arguments) ⇒ Object
55 56 57 58 59 60 61 62 63 64 |
# File 'lib/liquid/logging/improved_io.rb', line 55 def print(*arguments) args = if arguments.empty? [$_] else arguments end write(args.join($,)) return nil end |