Commit c8706c1
Changed files (3)
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- ruby-version: ['3.1', '3.2', '3.3', '3.4']
+ ruby-version: ['3.2', '3.3', '3.4']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
@@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
- ruby-version: '3.1'
+ ruby-version: '3.2'
bundler-cache: true
- name: Running style checks…
run: sh bin/style
@@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
- ruby-version: '3.1'
+ ruby-version: '3.2'
bundler-cache: true
- name: Running audit…
run: sh bin/audit
.rubocop.yml
@@ -7,7 +7,7 @@ AllCops:
- 'pkg/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
- TargetRubyVersion: 3.1
+ TargetRubyVersion: 3.2
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
scim-kit.gemspec
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
File.basename(file)
end
spec.require_paths = ['lib']
- spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.2.0')
spec.metadata['yard.run'] = 'yri'
spec.add_dependency 'activemodel', '>= 6.1'