Skip to content

Commit c17a494

Browse files
authored
Merge pull request #121 from publify/update-supported-rubies
Support Ruby 3.2 through 3.4
2 parents 1597eb1 + 250f8a7 commit c17a494

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ruby.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
ruby: ["3.0", "3.1", "3.2", "3.3"]
28+
ruby: ["3.2", "3.3", "3.4"]
2929
gemfile:
3030
- rails_61
3131
- rails_70
3232
- rails_71
33+
exclude:
34+
- ruby: "3.4"
35+
gemfile: rails_61
36+
- ruby: "3.4"
37+
gemfile: rails_70
3338

3439
env:
3540
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ AllCops:
1515
- 'spec/dummy/bin/*'
1616
- 'spec/dummy/db/schema.rb'
1717
NewCops: enable
18-
TargetRubyVersion: 3.0
18+
TargetRubyVersion: 3.2
1919

2020
Rails:
2121
Enabled: true

publify_textfilter_code.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616

1717
s.files = File.open("Manifest.txt").readlines.map(&:chomp)
1818

19-
s.required_ruby_version = ">= 3.0.0"
19+
s.required_ruby_version = ">= 3.2.0"
2020

2121
s.add_dependency "coderay", "~> 1.1.0"
2222
s.add_dependency "htmlentities", "~> 4.3"

0 commit comments

Comments
 (0)