#!/usr/bin/env ruby require 'bundler/setup' require 'pick' def main(args) raise NotImplementedError.new('TODO') end if $0 == __FILE__ main(ARGV) end