From 412f4f3123e784babdd18432652114560264bc56 Mon Sep 17 00:00:00 2001 From: Douglas Sherk Date: Tue, 22 Mar 2016 12:54:58 +0800 Subject: [PATCH] Monkey patching dependencies and crossing my fingers. --- Gemfile | 2 +- Gemfile.lock | 20 ++++++++++---------- omniauth-paypal.gemspec | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index bb91cc4..fe857c1 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,5 @@ source "https://rubygems.org" gemspec -gem 'omniauth-oauth2', "~> 1.3.1" +gem 'omniauth-oauth2', "~> 1.4" gem 'json' diff --git a/Gemfile.lock b/Gemfile.lock index 4e2ed29..be6f770 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,30 +2,30 @@ PATH remote: . specs: omniauth-paypal (1.3) - omniauth-oauth2 (~> 1.3.1) + omniauth-oauth2 (~> 1.4) GEM remote: https://rubygems.org/ specs: diff-lcs (1.2.4) - faraday (0.9.1) + faraday (0.9.2) multipart-post (>= 1.2, < 3) - hashie (3.4.2) + hashie (3.4.3) json (1.8.3) jwt (1.5.1) multi_json (1.11.2) multi_xml (0.5.5) multipart-post (2.0.0) - oauth2 (1.0.0) + oauth2 (1.1.0) faraday (>= 0.8, < 0.10) - jwt (~> 1.0) + jwt (~> 1.0, < 1.5.2) multi_json (~> 1.3) multi_xml (~> 0.5) - rack (~> 1.2) - omniauth (1.2.2) + rack (>= 1.2, < 3) + omniauth (1.3.1) hashie (>= 1.2, < 4) - rack (~> 1.0) - omniauth-oauth2 (1.3.1) + rack (>= 1.0, < 3) + omniauth-oauth2 (1.4.0) oauth2 (~> 1.0) omniauth (~> 1.2) rack (1.6.4) @@ -44,7 +44,7 @@ PLATFORMS DEPENDENCIES json - omniauth-oauth2 (~> 1.3.1) + omniauth-oauth2 (~> 1.4) omniauth-paypal! rake rspec (~> 2.14) diff --git a/omniauth-paypal.gemspec b/omniauth-paypal.gemspec index 94131b2..d76d36d 100644 --- a/omniauth-paypal.gemspec +++ b/omniauth-paypal.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |s| s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = ['lib'] - s.add_runtime_dependency 'omniauth-oauth2', '~> 1.3.1' + s.add_runtime_dependency 'omniauth-oauth2', '~> 1.4' s.add_development_dependency 'rspec', '~> 2.14' s.add_development_dependency 'rake'