klacointe-openpgp 0.0.1.3 → 0.0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/openpgp/engine/gnupg.rb +0 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.1.
|
1
|
+
0.0.1.4
|
data/lib/openpgp/engine/gnupg.rb
CHANGED
@@ -168,7 +168,6 @@ module OpenPGP class Engine
|
|
168
168
|
def exec4(command, options = {}, &block) #:yields: pid, stdin, stdout, stderr
|
169
169
|
require 'rubygems'
|
170
170
|
require 'open4'
|
171
|
-
p Open4.popen4(cmdline(command, options))
|
172
171
|
block.call(*Open4.popen4(cmdline(command, options)))
|
173
172
|
end
|
174
173
|
|