Skip to content

Commit

Permalink
Drop Ruby 2.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ysakasin committed Dec 27, 2023
1 parent c1b4115 commit 62126bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7
NewCops: disable
Exclude:
- 'node_modules/**/*'
Expand Down
2 changes: 1 addition & 1 deletion bcdice.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.description = "BCDice is a rolling dice engine for TRPG"
spec.homepage = "https://bcdice.org"
spec.license = "BSD-3-Clause"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6")
spec.required_ruby_version = Gem::Requirement.new(">= 2.7")

spec.metadata["allowed_push_host"] = "https://rubygems.org/"

Expand Down

0 comments on commit 62126bb

Please sign in to comment.