File tree Expand file tree Collapse file tree 6 files changed +17
-15
lines changed Expand file tree Collapse file tree 6 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,12 @@ jobs:
1212 runs-on : ubuntu-latest
1313 name : Ruby ${{ matrix.ruby }}
1414 strategy :
15+ fail-fast : false
1516 matrix :
1617 ruby :
17- - ' 3.1.2' # using 3.1.2 instead of latest patch as 3.1.2 is the minimum specified in the gemspec
18- - ' 3.2.2'
18+ - ' 3.2.0' # using 3.2.0 instead of latest patch as 3.2.0 is the minimum specified in the gemspec
1919 - ' 3.3.6'
20+ - ' 3.4.7'
2021
2122 steps :
2223 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 2020 - name : Set up Ruby
2121 uses : ruby/setup-ruby@v1
2222 with :
23- ruby-version : ' 3.2.2 '
23+ ruby-version : ' 3.4.7 '
2424 - name : Install gems
2525 run : bundle install
2626 - name : Set version
Original file line number Diff line number Diff line change 33 - rubocop-rspec
44
55AllCops :
6- TargetRubyVersion : 3.1.2
6+ TargetRubyVersion : 3.2.0
77 NewCops : enable
88
99Gemspec/DevelopmentDependencies :
Original file line number Diff line number Diff line change 1- ruby 3.2.2
1+ ruby 3.4.7
Original file line number Diff line number Diff line change 22 remote: .
33 specs:
44 code0-identities (0.0.0 )
5+ base64 (~> 0.3.0 )
56 httparty (~> 0.22 )
6- ruby-saml (~> 1.17.0 )
7+ ruby-saml (~> 1.18 )
78
89GEM
910 remote: https://rubygems.org/
1011 specs:
1112 addressable (2.8.7 )
1213 public_suffix (>= 2.0.2 , < 7.0 )
1314 ast (2.4.2 )
15+ base64 (0.3.0 )
1416 bigdecimal (3.1.8 )
1517 crack (1.0.0 )
1618 bigdecimal
2527 json (2.7.2 )
2628 language_server-protocol (3.17.0.3 )
2729 mini_mime (1.1.5 )
28- mini_portile2 (2.8.8 )
30+ mini_portile2 (2.8.9 )
2931 multi_xml (0.7.1 )
3032 bigdecimal (~> 3.1 )
31- nokogiri (1.16.7 )
33+ nokogiri (1.18.10 )
3234 mini_portile2 (~> 2.8.2 )
3335 racc (~> 1.4 )
34- nokogiri (1.16.7 -x86_64-linux )
36+ nokogiri (1.18.10 -x86_64-linux-gnu )
3537 racc (~> 1.4 )
3638 parallel (1.25.1 )
3739 parser (3.3.4.0 )
4244 rainbow (3.1.1 )
4345 rake (13.2.1 )
4446 regexp_parser (2.9.2 )
45- rexml (3.3.4 )
46- strscan
47+ rexml (3.4.4 )
4748 rspec (3.13.0 )
4849 rspec-core (~> 3.13.0 )
4950 rspec-expectations (~> 3.13.0 )
8485 rubocop-rspec_rails (2.28.3 )
8586 rubocop (~> 1.40 )
8687 ruby-progressbar (1.13.0 )
87- ruby-saml (1.17.0 )
88+ ruby-saml (1.18.1 )
8889 nokogiri (>= 1.13.10 )
8990 rexml
90- strscan (3.1.0 )
9191 unicode-display_width (2.5.0 )
9292 webmock (3.23.1 )
9393 addressable (>= 2.8.0 )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111 spec . summary = "Library to manage external identities"
1212 spec . homepage = "https://github.com/code0-tech/code0-identities"
1313 spec . license = "MIT"
14- spec . required_ruby_version = ">= 3.1.2 "
14+ spec . required_ruby_version = ">= 3.2.0 "
1515
1616 spec . metadata [ "homepage_uri" ] = spec . homepage
1717 spec . metadata [ "source_code_uri" ] = spec . homepage
@@ -30,8 +30,9 @@ Gem::Specification.new do |spec|
3030 spec . executables = spec . files . grep ( %r{\A exe/} ) { |f | File . basename ( f ) }
3131 spec . require_paths = [ "lib" ]
3232
33+ spec . add_dependency "base64" , "~> 0.3.0"
3334 spec . add_dependency "httparty" , "~> 0.22"
34- spec . add_dependency "ruby-saml" , "~> 1.17.0 "
35+ spec . add_dependency "ruby-saml" , "~> 1.18 "
3536
3637 spec . add_development_dependency "rake" , "~> 13.0"
3738 spec . add_development_dependency "rspec" , "~> 3.0"
You can’t perform that action at this time.
0 commit comments