Skip to content

Commit 66c9a3e

Browse files
committed
Drop support for Ruby 3.0, update README
1 parent 5e62e3a commit 66c9a3e

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
- "3.3"
2828
- "3.2"
2929
- "3.1"
30-
- "3.0"
3130
env:
3231
POSTGRES_BASE_URL: postgres://postgres:password@localhost:5432/hanami_cli_test
3332
steps:

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Hanami::CLI
22

3-
CLI commands for [full-stack Hanami applications](`https://github.com/hanami/hanami`).
3+
This library contains all of the CLI commands for [full-stack Hanami applications](`https://github.com/hanami/hanami`).
44

5-
**NOTE**: For versions 0.4 and below, there was a general purpose CLI utility library with this same name. That library has since been renamed to [dry-rb/dry-cli](https://github.com/dry-rb/dry-cli). Please update your Gemfiles accordingly.
5+
**NOTE**: For versions 0.4 and below, there was a general purpose CLI utility library with this name.
6+
That library has since been renamed to [dry-rb/dry-cli](https://github.com/dry-rb/dry-cli).
7+
Please update your Gemfiles accordingly.
68

79
## Status
810

@@ -15,12 +17,14 @@ CLI commands for [full-stack Hanami applications](`https://github.com/hanami/han
1517
- Home page: http://hanamirb.org
1618
- Mailing List: http://hanamirb.org/mailing-list
1719
- Bugs/Issues: https://github.com/hanami/cli/issues
18-
- Support: http://stackoverflow.com/questions/tagged/hanami
20+
* API Doc: http://rubydoc.info/gems/hanami-cli
1921
- Chat: http://chat.hanamirb.org
2022

21-
## Rubies
23+
## Installation
2224

23-
**Hanami::CLI** supports Ruby (MRI) 3.0+
25+
**Hanami::CLI** supports Ruby (MRI) 3.1+
26+
27+
This library is a dependency of the main `hanami` gem, so installing that is the best way to get and use this gem.
2428

2529
## Usage
2630

@@ -44,4 +48,4 @@ Everyone interacting in the `Hanami::CLI` project's codebases, issue trackers, c
4448

4549
## Copyright
4650

47-
Copyright © 2014 Hanami Team – Released under MIT License
51+
Copyright © 2014–2024 Hanami Team – Released under MIT License

hanami-cli.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
2828
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
2929
spec.require_paths = ["lib"]
3030
spec.metadata["rubygems_mfa_required"] = "true"
31-
spec.required_ruby_version = ">= 3.0"
31+
spec.required_ruby_version = ">= 3.1"
3232

3333
spec.add_dependency "bundler", "~> 2.1"
3434
spec.add_dependency "dry-cli", "~> 1.0", "< 2"

0 commit comments

Comments
 (0)