require 'rubygems' require 'cli/command' module Factor module CLI class CredentialTask < Command desc "list", "list all the credentials" def list end desc "add KEY VALUE", "add a key and value for the credential" def add end desc "remove KEY", "remove a value from the credentials bag" def remove end end end end