commit ebf92bdfd43f9bbf8d33820c4eb5f3d8e930f057
parent c029e7f1406f9f1c2e296a018045a02acbdacf80
Author: Hamish Downer <dmishd@gmail.com>
Date: Sat, 7 Jan 2012 15:27:02 +0000
Merge branch 'next' of gitorious.org:sup/mainline into next
Diffstat:
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/bin/sup b/bin/sup
@@ -12,6 +12,8 @@ end
no_gpgme = false
begin
+ # gpgme broke its API in 2.0, so make sure we have the old version for now.
+ gem 'gpgme', '=1.0.8'
require 'gpgme'
rescue LoadError
no_gpgme = true
diff --git a/lib/sup/crypto.rb b/lib/sup/crypto.rb
@@ -1,4 +1,6 @@
begin
+ # gpgme broke its API in 2.0, so make sure we have the old version for now.
+ gem 'gpgme', '=1.0.8'
require 'gpgme'
rescue LoadError
end