File tree Expand file tree Collapse file tree 5 files changed +11
-7
lines changed Expand file tree Collapse file tree 5 files changed +11
-7
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 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 )
67 ruby-saml (~> 1.17.0 )
78
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
2830 mini_portile2 (2.8.8 )
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 )
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,6 +30,7 @@ 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"
3435 spec . add_dependency "ruby-saml" , "~> 1.17.0"
3536
You can’t perform that action at this time.
0 commit comments