1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Upgrade omniauth dependency to 2.0
This patch updates the omniauth dependency to make it compatible with version 2.0.
This can be removed when the upstream updates the gem.
Author: Mohammed Bilal <mdbilal@disroot.org>
Forwarded: https://github.com/realdoug/omniauth-salesforce/pull/32
Last-Update: 2022-05-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/omniauth-salesforce.gemspec
+++ b/omniauth-salesforce.gemspec
@@ -16,8 +16,8 @@
gem.version = OmniAuth::Salesforce::VERSION
gem.license = "MIT"
- gem.add_dependency 'omniauth', '~> 1.0'
- gem.add_dependency 'omniauth-oauth2', '~> 1.0'
+ gem.add_dependency 'omniauth', '~> 2.0'
+ gem.add_dependency 'omniauth-oauth2', '~> 1.7.1'
gem.add_development_dependency 'rspec', '~> 2.7'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'simplecov'
|