From 9fda1ae4879dfb9467008ab01b18ddc2485d201b Mon Sep 17 00:00:00 2001 From: Frederic Jean Date: Wed, 23 Mar 2016 16:23:24 -0600 Subject: [PATCH] Upgrade oauth2 to current version. The 0.9.x version of oauth2 still rely on the default SSL settings. As a result, it attempts to connect to the authorization server using SSLv3. It appears that your authorization server no longer support that protocol (which is a good thing.). Your tests are still passing after upgrading oauth2 to 1.1.0. This should address #13 . --- bitballoon.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitballoon.gemspec b/bitballoon.gemspec index f04f830..c6067e8 100644 --- a/bitballoon.gemspec +++ b/bitballoon.gemspec @@ -17,9 +17,9 @@ Gem::Specification.new do |gem| gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] - gem.add_dependency "oauth2", "~> 0.9.2" + gem.add_dependency "oauth2", "~> 1.1.0" gem.add_dependency "slop", "~> 3.6.0" gem.add_dependency "highline", "~> 1.6.21" gem.add_development_dependency "minitest" gem.add_development_dependency "webmock" -end \ No newline at end of file +end