Skip to content

Commit 02552d1

Browse files
committed
Drop support for Ruby 3.0, update README
1 parent 97f75b8 commit 02552d1

File tree

3 files changed

+8
-24
lines changed

3 files changed

+8
-24
lines changed

.github/workflows/ci.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ci
22

3-
"on":
3+
on:
44
push:
55
paths:
66
- ".github/workflows/ci.yml"
@@ -28,15 +28,7 @@ jobs:
2828
- "3.3"
2929
- "3.2"
3030
- "3.1"
31-
- "3.0"
3231
steps:
33-
- uses: ravsamhq/notify-slack-action@v1
34-
if: always()
35-
with:
36-
status: ${{ job.status }}
37-
notify_when: "failure"
38-
env:
39-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4032
- uses: actions/checkout@v4
4133
- name: Install package dependencies
4234
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"

README.md

+6-14
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,27 @@
11
# Hanami::Router
22

3-
Rack compatible, lightweight and fast HTTP Router for Ruby and [Hanami](http://hanamirb.org).
4-
5-
## Version
6-
7-
**This branch contains the code for `hanami-router` 2.x.**
3+
Rack compatible, lightweight, and fast HTTP Router for Ruby and [Hanami](http://hanamirb.org).
84

95
## Status
106

117
[![Gem Version](https://badge.fury.io/rb/hanami-router.svg)](https://badge.fury.io/rb/hanami-router)
12-
[![CI](https://github.com/hanami/router/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/router/actions?query=workflow%3Aci+branch%3Amain)
8+
[![CI](https://github.com/hanami/router/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/router/actions?query=workflow%3Aci+branch%3Amain)
139
[![Test Coverage](https://codecov.io/gh/hanami/router/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/router)
1410
[![Depfu](https://badges.depfu.com/badges/5f6b8e8fa3b0d082539f0b0f84d55960/overview.svg)](https://depfu.com/github/hanami/router?project=Bundler)
15-
[![Inline Docs](http://inch-ci.org/github/hanami/router.svg)](http://inch-ci.org/github/hanami/router)
1611

1712
## Contact
1813

1914
* Home page: http://hanamirb.org
2015
* Mailing List: http://hanamirb.org/mailing-list
21-
* API Doc: http://rdoc.info/gems/hanami-router
16+
* API Doc: http://rubydoc.info/gems/hanami-router
2217
* Bugs/Issues: https://github.com/hanami/router/issues
23-
* Support: http://stackoverflow.com/questions/tagged/hanami
2418
* Chat: http://chat.hanamirb.org
2519

26-
## Rubies
27-
28-
__Hanami::Router__ supports Ruby (MRI) 3.0+
29-
3020

3121
## Installation
3222

23+
__Hanami::Router__ supports Ruby (MRI) 3.1.+
24+
3325
Add this line to your application's Gemfile:
3426

3527
```ruby
@@ -365,4 +357,4 @@ __Hanami::Router__ uses [Semantic Versioning 2.0.0](http://semver.org)
365357

366358
## Copyright
367359

368-
Copyright © 2014 Hanami Team – Released under MIT License
360+
Copyright © 2014–2024 Hanami Team – Released under MIT License

hanami-router.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818
spec.executables = []
1919
spec.require_paths = ["lib"]
2020
spec.metadata["rubygems_mfa_required"] = "true"
21-
spec.required_ruby_version = ">= 3.0"
21+
spec.required_ruby_version = ">= 3.1"
2222

2323
spec.add_dependency "rack", "~> 2.0"
2424
spec.add_dependency "mustermann", "~> 3.0"

0 commit comments

Comments
 (0)