Skip to content

Commit 60e7aba

Browse files
committed
fix: Sort Ruby 3.4 compatibility gems alphabetically
RuboCop Bundler/OrderedGems requires gems to be in alphabetical order. Changed from 'csv, abbrev' to 'abbrev, csv'. Authored by: Aaron Lippold<lippold@gmail.com>
1 parent 4f2495b commit 60e7aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ gem 'mitre-settingslogic', '~> 3.0'
5050
gem 'bootsnap', '>= 1.4.2', require: false
5151

5252
# Ruby 3.4 compatibility - these will be removed from stdlib
53-
gem 'csv'
5453
gem 'abbrev'
54+
gem 'csv'
5555

5656
gem 'audited', '~> 5.8.0'
5757

0 commit comments

Comments
 (0)