Class: Sym::App::Commands::GenerateKey
- Inherits:
-
BaseCommand
- Object
- BaseCommand
- Sym::App::Commands::GenerateKey
- Defined in:
- lib/sym/app/commands/generate_key.rb
Constant Summary
Constants included from Sym
Instance Method Summary collapse
Methods included from Sym
config, default_key, default_key?, default_key_file
Constructor Details
This class inherits a constructor from Sym::App::Commands::BaseCommand
Instance Method Details
#execute ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/sym/app/commands/generate_key.rb', line 12 def execute retries ||= 0 the_key = create_key if opts[:password] encrypted_key, password = encrypt_with_password(the_key) add_password_to_the_cache(encrypted_key, password) the_key = encrypted_key end add_to_keychain_if_needed(the_key) the_key rescue Sym::Errors::PasswordsDontMatch, Sym::Errors::PasswordTooShort => e stderr.puts e..bold retry if (retries += 1) < 3 end |