Method: FuzzyNotes::Notes#decrypt
- Defined in:
- lib/fuzzy_notes/notes.rb
#decrypt ⇒ Object
decrypt matching notes
109 110 111 112 113 114 115 |
# File 'lib/fuzzy_notes/notes.rb', line 109 def decrypt return if encrypted_notes.empty? print_notes(:encrypted => true) log.indent do @cipher.decrypt_files(encrypted_notes, :replace => true) end end |