class Intent::Projects::Manager

Public Class Methods

print_help(output) click to toggle source
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