Skip to content

Commit c7ac7f2

Browse files
committed
Drop Ruby 3.0 support
1 parent bf63851 commit c7ac7f2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.0'
1312
- '3.1'
1413
- '3.2'
1514
- '3.3'
16-
15+
- '3.4'
1716
steps:
1817
- uses: actions/checkout@v3
1918
- name: Set up Ruby

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require:
33
- rubocop-rspec
44

55
AllCops:
6-
TargetRubyVersion: 3.0
6+
TargetRubyVersion: 3.1
77
NewCops: enable
88

99
Layout/LineLength:

capybara_mock.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'CapybaraMock'
1313
spec.homepage = 'https://github.com/railsware/capybara_mock'
1414
spec.license = 'MIT'
15-
spec.required_ruby_version = '>= 3.0.0'
15+
spec.required_ruby_version = '>= 3.1.0'
1616

1717
spec.metadata['homepage_uri'] = spec.homepage
1818
spec.metadata['source_code_uri'] = 'https://github.com/railsware/capybara_mock'

0 commit comments

Comments
 (0)