Class: Gleis::CLI::AuthKey
- Inherits:
-
Thor
- Object
- Thor
- Gleis::CLI::AuthKey
- Defined in:
- lib/gleis/cli/auth_key.rb
Overview
Git authentication key related CLI commands
Instance Method Summary collapse
Instance Method Details
#add(key_file, key_name = nil) ⇒ Object
6 7 8 |
# File 'lib/gleis/cli/auth_key.rb', line 6 def add(key_file, key_name = nil) Gleis::AuthKey.add(key_file, key_name) end |
#list ⇒ Object
11 12 13 |
# File 'lib/gleis/cli/auth_key.rb', line 11 def list Gleis::AuthKey.list end |
#remove(key_name) ⇒ Object
16 17 18 |
# File 'lib/gleis/cli/auth_key.rb', line 16 def remove(key_name) Gleis::AuthKey.remove(key_name) end |