module GitFeats::Reporter

Constants

COLUMNS

Public Instance Methods

report(feat) click to toggle source
# File lib/git-feats/reporter.rb, line 8
def report(feat)
  puts "\n" + '*' * COLUMNS
  puts "Feat Completed!".center(COLUMNS)
  puts feat[:name].center(COLUMNS)
  puts feat[:desc].center(COLUMNS)
  puts '*' * COLUMNS + "\n\n"
end