Skip to content

Commit

Permalink
chore: drop support for Rails 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bibendi committed Jun 4, 2024
1 parent 33ababa commit 7f8f81e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AllCops:
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 2.7
TargetRailsVersion: 5.2
TargetRailsVersion: 6.0
Exclude:
- spec/internal/pkg/**/*

Expand Down
3 changes: 1 addition & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
# See compatibility table at https://www.fastruby.io/blog/ruby/rails/versions/compatibility-table.html

versions_map = {
"5.2" => %w[2.7],
"6.0" => %w[2.7],
"6.1" => %w[2.7 3.0],
"7.0" => %w[3.1],
"7.1" => %w[3.2]
"7.1" => %w[3.2, 3.3]
}

current_ruby_version = RUBY_VERSION.split(".").first(2).join(".")
Expand Down
2 changes: 1 addition & 1 deletion sbmt-kafka_consumer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "rails", ">= 5.2"
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "zeitwerk", "~> 2.3"
spec.add_dependency "karafka", "~> 2.2", "< 2.4" # [Breaking] Drop the concept of consumer group mapping.
spec.add_dependency "yabeda", ">= 0.11"
Expand Down

0 comments on commit 7f8f81e

Please sign in to comment.