class Intent::Projects::Manager
Public Class Methods
print_help(output)
click to toggle source
# File lib/intent/projects/manager.rb, line 15 def self.print_help(output) output.puts "usage: review" end
run(args, output=STDOUT)
click to toggle source
# File lib/intent/projects/manager.rb, line 4 def self.run(args, output=STDOUT) if args.empty? print_help(output) else case args.first.to_sym when :status Status.run(File.expand_path('~/Projects').to_s) end end end