Skip to content

Commit

Permalink
Drop support for Ruby 3.0 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed May 4, 2024
1 parent 8c063d7 commit 64e480a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3", "head"]
ruby: ["3.1", "3.2", "3.3", "head"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
NewCops: enable
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
Exclude:
- "tmp/**/*"
- "vendor/**/*"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RAILS_ENV=test bin/rake pgcli
## Requirements

* Rails 4.2+ using PostgreSQL
* Ruby 3.0+
* Ruby 3.1+
* [pgcli][] (`brew install pgcli` to install on macOS)

## How it works
Expand Down
2 changes: 1 addition & 1 deletion pgcli-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.summary = "Replaces the Rails PostgreSQL dbconsole with the much nicer pgcli"
spec.homepage = "https://github.com/mattbrictson/pgcli-rails"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.required_ruby_version = ">= 3.1"

spec.metadata = {
"bug_tracker_uri" => "https://github.com/mattbrictson/pgcli-rails/issues",
Expand Down

0 comments on commit 64e480a

Please sign in to comment.