diff options
| author | mo khan <mo@mokhan.ca> | 2024-12-05 18:06:47 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2024-12-05 18:06:47 -0700 |
| commit | c8706c1d94f43a78348b6fb51147f4d01e7143ff (patch) | |
| tree | c0212bf74a4ab91f51f45719aa1d2e6bc2f5726c | |
| parent | 41247b2685f8e01db14880147006f25465c4e95f (diff) | |
chore: upgrade to min ruby of 3.2main
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | .rubocop.yml | 2 | ||||
| -rw-r--r-- | scim-kit.gemspec | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0ba17e..f5e8556 100644 --- a/.github/workflows/ci.yml +++ b/.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 diff --git a/.rubocop.yml b/.rubocop.yml index 3bb991a..50d0734 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,7 +7,7 @@ AllCops: - 'pkg/**/*' - 'tmp/**/*' - 'vendor/**/*' - TargetRubyVersion: 3.1 + TargetRubyVersion: 3.2 Layout/ArgumentAlignment: EnforcedStyle: with_fixed_indentation diff --git a/scim-kit.gemspec b/scim-kit.gemspec index dec252e..bc3d717 100644 --- a/scim-kit.gemspec +++ b/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' |
