class Intent::Review::Manager
Public Class Methods
print_help(output)
click to toggle source
# File lib/intent/review/manager.rb, line 12 def self.print_help(output) output.puts "usage: review" end
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