class Travis::CLI::Whatsup

def recent

def recent
  return repos unless my_repos
  repos(:member => user.login)
end

def run

def run
  recent.each do |repo|
    say [
      color(repo.slug, [:bold, repo.color]),
      color("#{repo.last_build.state}: ##{repo.last_build.number}", repo.color)
    ].join(" ")
  end
end