Skip to content
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- '3.1.2' # using 3.1.2 instead of latest patch as 3.1.2 is the minimum specified in the gemspec
- '3.2.2'
- '3.2.0' # using 3.2.0 instead of latest patch as 3.2.0 is the minimum specified in the gemspec
- '3.3.6'
- '3.4.7'

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
ruby-version: '3.4.7'
- name: Install gems
run: bundle install
- name: Set version
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.1.2
TargetRubyVersion: 3.2.0
NewCops: enable

Gemspec/DevelopmentDependencies:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.2.2
ruby 3.4.7
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@ PATH
remote: .
specs:
code0-identities (0.0.0)
base64 (~> 0.3.0)
httparty (~> 0.22)
ruby-saml (~> 1.17.0)
ruby-saml (~> 1.18)

GEM
remote: https://rubygems.org/
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
ast (2.4.2)
base64 (0.3.0)
bigdecimal (3.1.8)
crack (1.0.0)
bigdecimal
Expand All @@ -25,13 +27,13 @@ GEM
json (2.7.2)
language_server-protocol (3.17.0.3)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
mini_portile2 (2.8.9)
multi_xml (0.7.1)
bigdecimal (~> 3.1)
nokogiri (1.16.7)
nokogiri (1.18.10)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
nokogiri (1.18.10-x86_64-linux-gnu)
racc (~> 1.4)
parallel (1.25.1)
parser (3.3.4.0)
Expand All @@ -42,8 +44,7 @@ GEM
rainbow (3.1.1)
rake (13.2.1)
regexp_parser (2.9.2)
rexml (3.3.4)
strscan
rexml (3.4.4)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
Expand Down Expand Up @@ -84,10 +85,9 @@ GEM
rubocop-rspec_rails (2.28.3)
rubocop (~> 1.40)
ruby-progressbar (1.13.0)
ruby-saml (1.17.0)
ruby-saml (1.18.1)
nokogiri (>= 1.13.10)
rexml
strscan (3.1.0)
unicode-display_width (2.5.0)
webmock (3.23.1)
addressable (>= 2.8.0)
Expand Down
5 changes: 3 additions & 2 deletions code0-identities.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.summary = "Library to manage external identities"
spec.homepage = "https://github.com/code0-tech/code0-identities"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.2"
spec.required_ruby_version = ">= 3.2.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand All @@ -30,8 +30,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "base64", "~> 0.3.0"
spec.add_dependency "httparty", "~> 0.22"
spec.add_dependency "ruby-saml", "~> 1.17.0"
spec.add_dependency "ruby-saml", "~> 1.18"

spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
Expand Down