Skip to content

Commit

Permalink
Update runtime dependencies for greater compatibility
Browse files Browse the repository at this point in the history
The declared gem versions were too restrictive, preventing the use of the latest versions of these gems in projects that use this gem.

Closes #40
  • Loading branch information
lvitals committed Jun 21, 2024
1 parent e22054f commit 68bf995
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
keycloak (3.2.2)
json (= 2.6.2)
jwt (= 2.4.1)
rest-client (= 2.1.0)
keycloak (3.3.0)
json (~> 2.6)
jwt (~> 2.4)
rest-client (~> 2.1)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -51,4 +51,7 @@ DEPENDENCIES
bundler (~> 2.3)
keycloak!
rake (~> 13.0)
rspec (~> 3.7)
rspec (~> 3.7)

BUNDLED WITH
2.5.11
10 changes: 5 additions & 5 deletions keycloak.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require "keycloak/version"
Gem::Specification.new do |spec|
spec.name = "keycloak"
spec.version = Keycloak::VERSION
spec.authors = ["Guilherme Portugues"]
spec.email = ["g_portugues@hotmail.com"]
spec.authors = ["Guilherme Portugues", "Leandro Vital Catarin"]
spec.email = ["g_portugues@hotmail.com", "leavitals@gmail.com"]

spec.summary = %q{Add authentication to applications and secure services with Keycloak}
#spec.description = %q{TODO: Write a longer description or delete this line.}
Expand All @@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", "~> 2.3"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.7"
spec.add_runtime_dependency "rest-client", "~> 2.1.0"
spec.add_runtime_dependency "jwt", "~> 2.4.1"
spec.add_runtime_dependency "json", "~> 2.6.2"
spec.add_runtime_dependency "rest-client", "~> 2.1"
spec.add_runtime_dependency "jwt", "~> 2.4"
spec.add_runtime_dependency "json", "~> 2.6"
end
2 changes: 1 addition & 1 deletion lib/keycloak/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Keycloak
VERSION = '3.2.3'.freeze
VERSION = '3.3.0'.freeze
end

0 comments on commit 68bf995

Please sign in to comment.