Skip to content

Commit

Permalink
Drop support for ruby 3.0 (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrcuns authored Jun 9, 2024
1 parent 013620b commit 8c8aa31
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3"]
oj: [false, true]
steps:
- name: Checkout
Expand Down
5 changes: 4 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require:
- rubocop-performance

AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
NewCops: enable
Exclude:
- bin/**/*
Expand Down Expand Up @@ -48,5 +48,8 @@ Style/FrozenStringLiteralComment:
Style/FetchEnvVar:
Enabled: false

Style/HashSyntax:
Enabled: false

Gemspec/RequireMFA:
Enabled: false
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.3.2
2 changes: 1 addition & 1 deletion allure-cucumber/allure-cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
"rubygems_mfa_required" => "false"
}

s.required_ruby_version = ">= 3.0.0"
s.required_ruby_version = ">= 3.1"

s.license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion allure-rspec/allure-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
"rubygems_mfa_required" => "false"
}

s.required_ruby_version = ">= 3.0.0"
s.required_ruby_version = ">= 3.1"

s.license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion allure-ruby-commons/allure-ruby-commons.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
"rubygems_mfa_required" => "false"
}

s.required_ruby_version = ">= 3.0.0"
s.required_ruby_version = ">= 3.1"

s.license = "Apache-2.0"

Expand Down

0 comments on commit 8c8aa31

Please sign in to comment.