Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
contents: read
packages: read
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_6.1.gemfile
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_7.0.gemfile
steps:
- uses: actions/checkout@v4

Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# Rails 8.0 depends on Ruby >= 3.2
ruby-version: ['3.1', '3.2', '3.3']
gemfile: [ rails_6.1, rails_7.0, rails_7.1, rails_7.2, rails_8.0 ]
exclude:
- ruby-version: '3.1'
gemfile: rails_8.0
ruby-version: ['3.2', '3.3', '3.4']
gemfile: [rails_7.0, rails_7.1, rails_7.2, rails_8.0 ]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand All @@ -32,10 +28,6 @@ jobs:
rubygems: 3.4.10
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Run linter
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'rails_7.2'
run: bundle exec rubocop

- name: Run tests
run: bundle exec rspec

Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inherit_mode:

AllCops:
NewCops: enable
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
Exclude:
- 'spec/dummy/config/**/*'
- 'spec/dummy/app/**/*'
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.3.6
ruby 3.2.7
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed
- Ruby 3.1 and Rails 6.1 support (#96)

## [v4.4.0]

### Added
Expand Down
8 changes: 0 additions & 8 deletions gemfiles/rails_6.1.gemfile

This file was deleted.

Loading