Skip to content

Commit

Permalink
fix rubocop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandr.kol committed Mar 22, 2024
1 parent cdba886 commit 0f9a1d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ inherit_gem:
rubocop-config-umbrellio: lib/rubocop.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
Include:
- bin/*
- lib/**/*.rb
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
### Changed
- Add expiration time for cache used in debouncing sync
- Update dependencies
- Fix rubocop issue
- Drop ruby 2.7 support

### Removed
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
require "rabbit/test_helpers" # NOTE: from rabbit_messaging
require "table_sync"

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |file| require file }
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |file| require file }

TableSync::TestEnv.setup!

Expand Down

0 comments on commit 0f9a1d1

Please sign in to comment.