Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sorcery requirement to >= 0.13, < 0.18 #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 53 additions & 34 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,64 +1,83 @@
PATH
remote: .
specs:
sorcery-jwt (0.1.11)
sorcery-jwt (0.1.13)
jwt (>= 1.0, < 3.0)
sorcery (>= 0.13, < 0.16)
sorcery (>= 0.13, < 0.18)

GEM
remote: https://rubygems.org/
specs:
bcrypt (3.1.16)
coderay (1.1.2)
diff-lcs (1.3)
faraday (1.0.1)
multipart-post (>= 1.2, < 3)
jwt (2.2.2)
base64 (0.2.0)
bcrypt (3.1.20)
bigdecimal (3.1.8)
coderay (1.1.3)
diff-lcs (1.5.1)
faraday (2.9.2)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
hashie (5.0.0)
jwt (2.8.2)
base64
method_source (0.8.2)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
oauth (0.5.6)
oauth2 (1.4.4)
faraday (>= 0.8, < 2.0)
multi_xml (0.7.1)
bigdecimal (~> 3.1)
net-http (0.4.1)
uri
oauth (1.1.0)
oauth-tty (~> 1.0, >= 1.0.1)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
oauth-tty (1.0.5)
version_gem (~> 1.1, >= 1.1.1)
oauth2 (2.0.9)
faraday (>= 0.17.3, < 3.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
rack (>= 1.2, < 4)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
pry (0.10.4)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rack (2.2.3)
rake (13.0.1)
rspec (3.8.0)
rspec-core (~> 3.8.0)
rspec-expectations (~> 3.8.0)
rspec-mocks (~> 3.8.0)
rspec-core (3.8.0)
rspec-support (~> 3.8.0)
rspec-expectations (3.8.2)
rack (3.1.6)
rake (13.2.1)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-mocks (3.8.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
slop (3.6.0)
sorcery (0.15.0)
snaky_hash (2.0.1)
hashie
version_gem (~> 1.1, >= 1.1.1)
sorcery (0.17.0)
bcrypt (~> 3.1)
oauth (~> 0.4, >= 0.4.4)
oauth2 (~> 1.0, >= 0.8.0)
oauth (>= 0.6)
oauth2 (~> 2.0)
uri (0.13.0)
version_gem (1.1.4)

PLATFORMS
arm64-darwin-23
ruby

DEPENDENCIES
bundler (~> 1.16)
bundler (>= 2.5.14)
pry (~> 0.10.0)
rake (~> 13.0)
rspec (~> 3.0)
sorcery-jwt!

BUNDLED WITH
1.17.2
2.5.14
2 changes: 1 addition & 1 deletion lib/sorcery/jwt/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Sorcery
module Jwt
VERSION = "0.1.13".freeze
VERSION = "0.1.14".freeze
end
end
4 changes: 2 additions & 2 deletions sorcery-jwt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", ">= 2.1.0"
spec.add_development_dependency "bundler", ">= 2.5.14"
spec.add_development_dependency "pry", "~> 0.10.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"

spec.add_runtime_dependency "jwt", ">= 1.0", "< 3.0"
spec.add_runtime_dependency "sorcery", ">= 0.13", "< 0.17"
spec.add_runtime_dependency "sorcery", ">= 0.13", "< 0.18"
end