Skip to content

Commit

Permalink
Merge pull request #138 from stanhu/sh-loosen-oauth2-dep
Browse files Browse the repository at this point in the history
Relax oauth2 dependency
  • Loading branch information
jv-asana committed Jun 22, 2022
2 parents b00de46 + 50ebb3f commit fe3b26f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PATH
faraday (~> 1.0)
faraday_middleware (~> 1.0)
faraday_middleware-multi_json (~> 0.0)
oauth2 (~> 1.4)
oauth2 (>= 1.4, < 3)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -69,6 +69,7 @@ GEM
guard-yard (2.2.1)
guard (>= 1.1.0)
yard (>= 0.7.0)
hashie (5.0.0)
jwt (2.4.1)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
Expand All @@ -82,12 +83,13 @@ GEM
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
oauth2 (1.4.9)
oauth2 (2.0.0)
faraday (>= 0.17.3, < 3.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
rash_alt (>= 0.4, < 1)
version_gem (~> 1.0)
parallel (1.22.1)
parser (2.7.2.0)
ast (~> 2.4.1)
Expand All @@ -100,6 +102,8 @@ GEM
rack
rainbow (3.1.1)
rake (13.0.6)
rash_alt (0.4.12)
hashie (>= 3.4)
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
Expand Down Expand Up @@ -137,6 +141,7 @@ GEM
thor (1.2.1)
tomparse (0.4.2)
unicode-display_width (1.8.0)
version_gem (1.0.0)
webrick (1.7.0)
yard (0.9.28)
webrick (~> 1.7.0)
Expand Down
2 changes: 1 addition & 1 deletion asana.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.5'

spec.add_dependency "oauth2", "~> 1.4"
spec.add_dependency "oauth2", ">= 1.4", '< 3'
spec.add_dependency "faraday", "~> 1.0"
spec.add_dependency "faraday_middleware", "~> 1.0"
spec.add_dependency "faraday_middleware-multi_json", "~> 0.0"
Expand Down

0 comments on commit fe3b26f

Please sign in to comment.