aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/decrypt.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/keyringer/decrypt.rb')
-rw-r--r--lib/keyringer/decrypt.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/keyringer/decrypt.rb b/lib/keyringer/decrypt.rb
deleted file mode 100644
index 9f872aa..0000000
--- a/lib/keyringer/decrypt.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-module Keyringer
- class Decrypt
- def execute
- filename = ARGV[2]
- crypt = Keyring::Crypt.new
- output = crypt.decrypt(filename)
- return output
- end
- end
-end