aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/decrypt.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-01-29 18:50:09 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-01-29 18:50:09 -0200
commit2c26d9e2130bb5751205963cb8ff8ca459226f0f (patch)
tree37b1ab748de8307dd43810457f3fa524f45d4969 /lib/keyringer/decrypt.rb
parent27478872a1f88971208813e09795a532c73a7ae2 (diff)
downloadkeyringer-2c26d9e2130bb5751205963cb8ff8ca459226f0f.tar.gz
keyringer-2c26d9e2130bb5751205963cb8ff8ca459226f0f.tar.bz2
Moving parser to keyringer module; actions should be in a submodule
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 a36d6d9..0000000
--- a/lib/keyringer/decrypt.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-module Keyringer
- class Decrypt
- def execute
- filename = $args[0]
- crypt = Keyring::Crypt.new
- output = crypt.decrypt(filename)
- return output
- end
- end
-end