Skip to content

Commit

Permalink
Merge pull request mklocker#2 from keithmattix/bump-sorcery-dependency
Browse files Browse the repository at this point in the history
Bump sorcery version and add compatibility for sorcery 0.13.0
  • Loading branch information
hayfever authored Aug 10, 2019
2 parents b188bd0 + 98e59f4 commit ad3426e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
PATH
remote: .
specs:
sorcery-jwt (0.1.6)
sorcery-jwt (0.1.7)
jwt (~> 1.0)
sorcery (~> 0.12.0)
sorcery (~> 0.13.0)

GEM
remote: https://rubygems.org/
specs:
bcrypt (3.1.12)
bcrypt (3.1.13)
coderay (1.1.2)
diff-lcs (1.3)
faraday (0.15.4)
Expand All @@ -17,7 +17,7 @@ GEM
method_source (0.8.2)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
multipart-post (2.1.1)
oauth (0.5.4)
oauth2 (1.4.1)
faraday (>= 0.8, < 0.16.0)
Expand All @@ -29,7 +29,7 @@ GEM
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rack (2.0.6)
rack (2.0.7)
rake (10.5.0)
rspec (3.8.0)
rspec-core (~> 3.8.0)
Expand All @@ -45,7 +45,7 @@ GEM
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
slop (3.6.0)
sorcery (0.12.0)
sorcery (0.13.0)
bcrypt (~> 3.1)
oauth (~> 0.4, >= 0.4.4)
oauth2 (~> 1.0, >= 0.8.0)
Expand Down
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.6".freeze
VERSION = "0.1.7".freeze
end
end
2 changes: 1 addition & 1 deletion sorcery-jwt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rspec", "~> 3.0"

spec.add_runtime_dependency "jwt", "~> 1.0"
spec.add_runtime_dependency "sorcery", "~> 0.12.0"
spec.add_runtime_dependency "sorcery", "~> 0.13.0"
end
4 changes: 0 additions & 4 deletions spec/sorcery/jwt_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,4 @@
it "has a version number" do
expect(Sorcery::Jwt::VERSION).not_to be nil
end

it "does something useful" do
expect(false).to eq(true)
end
end

0 comments on commit ad3426e

Please sign in to comment.