Skip to content

Commit

Permalink
Drop support for Ruby 2.7
Browse files Browse the repository at this point in the history
Drop support for [End of Life version 2.7][eol]. Exclude `[email protected]` and
`rails@main`.

Drop development depdendency on `webdrivers` in favor of
`[email protected]`'s support for installing drivers.

[eol]: https://www.ruby-lang.org/en/downloads/branches/
  • Loading branch information
seanpdoyle committed Feb 29, 2024
1 parent 658752f commit afeb225
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
rails-version:
- "7.1"
- "7.0"
- "6.1"
- "main"
exclude:
- ruby-version: "3.0"
rails-version: "main"

env:
RAILS_VERSION: ${{ matrix.rails-version }}
Expand All @@ -32,6 +35,7 @@ jobs:
bundler-cache: true

- run: bin/rails standard
if: ${{ ruby-version }} != "3.2"
- run: bin/rails test:all
- run: bundle exec rspec
- run: RSPEC_TYPE=feature bundle exec rspec
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Drop support for [End of Life version 2.7](https://www.ruby-lang.org/en/downloads/branches/)

*Sean Doyle*

## 0.1.1 (September 26, 2023)

- Support Capybara's modal block helpers like [accept_alert][]
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ gem "rspec-rails"
gem "puma"
gem "standard", "~> 1.12"
gem "selenium-webdriver"
gem "webdrivers"

0 comments on commit afeb225

Please sign in to comment.