class Intent::Review::Manager

Public Class Methods

print_help(output) click to toggle source
run(args, output=STDOUT) click to toggle source
# File lib/intent/review/manager.rb, line 4
def self.run(args, output=STDOUT)
  if args.empty?
    print_help(output)
  else
    puts args
  end
end