Sha256: b57b62e95202ac1da1f97f6d112c588abb9b24d131369bfa54606471b7ae696b

Contents?: true

Size: 399 Bytes

Versions: 3

Compression:

Stored size: 399 Bytes

Contents

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
factor-0.0.6 lib/cli/credential_task.rb
factor-0.0.5 lib/cli/credential_task.rb
factor-0.0.4 lib/cli/credential_task.rb