# File lib/gpgr.rb, line 79 def initialize(path, output_path) @file = File.expand_path(path) if output_path == path + '.pgp' @file_output = @file + '.pgp' else @file_output = File.expand_path(output_path) end @email_addresses = [] end