Class: Passr::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/passr/cli.rb

Instance Method Summary collapse

Instance Method Details

#installObject



8
9
10
11
12
13
14
15
# File 'lib/passr/cli.rb', line 8

def install
  begin
    Passr::Encryptor.install
    puts "./config/encryptor.yml successfully created.\nDo NOT remove this file or all encrypted passwords will be lost."
  rescue => e
    puts e
  end
end