module Orly::OwlPrinter
Constants
- OWL
- OWL_LINES
Public Class Methods
print(lines = [])
click to toggle source
# File lib/orly/owl_printer.rb, line 13 def self.print(lines = []) lines.unshift("") if lines.length < OWL_LINES.length [lines.length, OWL_LINES.length].max.times do |i| owl_line = OWL_LINES[i] || "" print_line = lines[i] || "" puts "#{owl_line}\t#{print_line}" end end