Class: EYAML::CLI
- Inherits:
-
Thor
- Object
- Thor
- EYAML::CLI
- Defined in:
- lib/eyaml/cli.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.exit_on_failure? ⇒ Boolean
63 64 65 |
# File 'lib/eyaml/cli.rb', line 63 def self.exit_on_failure? true end |
Instance Method Details
#decrypt(file) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/eyaml/cli.rb', line 21 def decrypt(file) file_path = Pathname.new(file) unless file_path.exist? puts "#{file} doesn't exist" return end = if .fetch(:"key-from-stdin") # Read key from STDIN {private_key: $stdin.gets} else {keydir: .fetch(:keydir, nil)} end eyaml = EYAML.decrypt_file(file, **) if .has_key?("output") output_file = Pathname.new(.fetch(:output)) File.write(output_file, eyaml) return end puts eyaml end |
#encrypt(*files) ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/eyaml/cli.rb', line 6 def encrypt(*files) files.each do |file| file_path = Pathname.new(file) next unless file_path.exist? bytes_written = EYAML.encrypt_file_in_place(file_path) puts "Wrote #{bytes_written} bytes to #{file_path}." end end |
#keygen ⇒ Object
49 50 51 52 53 54 55 56 57 |
# File 'lib/eyaml/cli.rb', line 49 def keygen public_key, private_key = EYAML.generate_keypair( save: .fetch(:write), keydir: .fetch(:keydir, nil) ) puts "Public Key: #{public_key}" puts "Private Key: #{private_key}" unless .fetch(:write) end |