Checklist
Describe the problem you'd like to have solved
Currently the gemspec is locked to version 2 only
|
s.add_runtime_dependency 'jwt', '~> 2.7' |
Describe the ideal solution
Update the jwt dependency to also support version 3, maybe something like:
s.add_runtime_dependency 'jwt', '>= 2.7', '< 4.0'
Checklist
Describe the problem you'd like to have solved
Currently the gemspec is locked to version 2 only
ruby-auth0/auth0.gemspec
Line 20 in 45cef15
Describe the ideal solution
Update the
jwtdependency to also support version 3, maybe something like: