From a54ba77b64c4355f24c8311e7039d9e022177f30 Mon Sep 17 00:00:00 2001 From: Sean Collins Date: Wed, 3 Jul 2024 15:32:38 -0600 Subject: [PATCH] Drop support for Ruby 3.0, update README --- .github/workflows/ci.yml | 8 -------- README.md | 11 ++++------- hanami-rspec.gemspec | 2 +- 3 files changed, 5 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55fb642..8c0cf14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,15 +27,7 @@ jobs: - "3.3" - "3.2" - "3.1" - - "3.0" steps: - - uses: ravsamhq/notify-slack-action@v1 - if: always() - with: - status: ${{ job.status }} - notify_when: "failure" - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - uses: actions/checkout@v1 - name: Install package dependencies run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS" diff --git a/README.md b/README.md index 33fc08c..13ef613 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ RSpec and testing support for [Hanami applications](https://github.com/hanami/ha ## Status [![Gem Version](https://badge.fury.io/rb/hanami-rspec.svg)](https://badge.fury.io/rb/hanami-rspec) -[![CI](https://github.com/hanami/rspec/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/rspec/actions?query=workflow%3Aci+branch%3Amain) +[![CI](https://github.com/hanami/rspec/actions/workflows/ci.yml/badge.svgch=main)](https://github.com/hanami/rspec/actions?query=workflow%3Aci+branch%3Amain) [![Depfu](https://badges.depfu.com/badges/a8545fb67cf32a2c75b6227bc0821027/overview.svg)](https://depfu.com/github/hanami/rspec?project=Bundler) ## Contact @@ -13,15 +13,12 @@ RSpec and testing support for [Hanami applications](https://github.com/hanami/ha - Home page: http://hanamirb.org - Mailing List: http://hanamirb.org/mailing-list - Bugs/Issues: https://github.com/hanami/rspec/issues -- Support: http://stackoverflow.com/questions/tagged/hanami - Chat: http://chat.hanamirb.org -## Rubies - -**Hanami::RSpec** supports Ruby (MRI) 3.0+ - ## Installation +**Hanami::RSpec** supports Ruby (MRI) 3.1+ + Add this line to your application's Gemfile: ```ruby @@ -57,4 +54,4 @@ Everyone interacting in the `Hanami::RSpec` project's codebases, issue trackers, ## Copyright -Copyright © 2014 Hanami Team – Released under MIT License +Copyright © 2014–2024 Hanami Team – Released under MIT License diff --git a/hanami-rspec.gemspec b/hanami-rspec.gemspec index 2e2c4ce..01c7606 100644 --- a/hanami-rspec.gemspec +++ b/hanami-rspec.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = "Hanami RSpec generators and Rake tasks" spec.homepage = "https://hanamirb.org" spec.license = "MIT" - spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0") + spec.required_ruby_version = ">= 3.1" spec.metadata["allowed_push_host"] = "https://rubygems.org"