Skip to content

Commit e50dd04

Browse files
authored
Bundle update test dev (#744)
* upgrade ruby from 3.1.3 to 3.2.3, remove non herokuable platforms to make deploy easier * bundle lock --remove-platform x86-mingw32 * bundle update --group test development * unlock unclearly locked test dev gems * standardrb --generate-todo
1 parent ae10663 commit e50dd04

File tree

3 files changed

+101
-80
lines changed

3 files changed

+101
-80
lines changed

backend/.standard_todo.yml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,44 @@ ignore:
1010
- Style/SafeNavigation
1111
- app/jobs/group_top_posts_job.rb:
1212
- Style/SafeNavigation
13-
- app/models/search.rb:
14-
- Lint/Void
13+
- app/jobs/merge_trackables/checkin_trackables.rb:
14+
- Performance/StringIdentifierArgument
15+
- Lint/SymbolConversion
16+
- app/jobs/merge_trackables/dispatcher.rb:
17+
- Lint/SymbolConversion
18+
- app/jobs/merge_trackables/user_trackable_association.rb:
19+
- Lint/SymbolConversion
20+
- app/models/ability.rb:
21+
- Lint/SymbolConversion
22+
- app/models/concerns/topicable.rb:
23+
- Performance/StringIdentifierArgument
24+
- app/models/profile.rb:
25+
- Performance/StringIdentifierArgument
26+
- app/models/registration.rb:
27+
- Layout/MultilineMethodCallIndentation
1528
- app/services/charts_pattern.rb:
1629
- Lint/DuplicateMethods
17-
- Layout/SpaceInsideHashLiteralBraces
18-
- Style/QuotedSymbols
30+
- Performance/StringIdentifierArgument
31+
- app/services/checkin/updater.rb:
32+
- Lint/SymbolConversion
33+
- Style/RedundantParentheses
34+
- app/services/trackable_creator.rb:
35+
- Lint/SymbolConversion
1936
- lib/tasks/app.rake:
2037
- Lint/ConstantDefinitionInBlock
2138
- Style/GlobalStdStream
2239
- Lint/Loop
2340
- lib/tasks/hbi_completeness.rake:
2441
- Lint/ConstantDefinitionInBlock
42+
- lib/tasks/oneoff.rake:
43+
- Performance/StringIdentifierArgument
44+
- Layout/MultilineMethodCallIndentation
2545
- lib/tasks/trackables.rake:
2646
- Lint/ConstantDefinitionInBlock
2747
- Lint/UselessAssignment
2848
- lib/tasks/usda.rake:
2949
- Lint/ConstantDefinitionInBlock
50+
- lib/tasks/utils.rake:
51+
- Performance/StringIdentifierArgument
3052
- spec/models/food_spec.rb:
3153
- Lint/ConstantDefinitionInBlock
32-
- spec/spec_helper.rb:
33-
- Style/StringLiterals

backend/Gemfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gem "active_model_serializers", "0.9.8"
1414

1515
# Use postgresql and mongo as the database for Active Record
1616
gem "mongoid", "7.3.3"
17-
gem "pg", "1.5.6"
17+
gem "pg"
1818

1919
# Use Puma as the app server
2020
gem "puma", "5.6.8"
@@ -28,7 +28,7 @@ gem "omniauth", "1.8.1"
2828
gem "omniauth-facebook", "3.0.0"
2929

3030
# Colored output to console
31-
gem "colored", "~> 1.2"
31+
gem "colored"
3232

3333
# Background jobs
3434
gem "sidekiq", "~> 6.5"
@@ -82,9 +82,9 @@ end
8282

8383
group :development do
8484
gem "annotate"
85-
gem "awesome_print", "~>1.6"
86-
gem "better_errors", "~>2.1"
87-
gem "brakeman", "6.1.2"
85+
gem "awesome_print"
86+
gem "better_errors"
87+
gem "brakeman"
8888
gem "foreman", require: false
8989
gem "letter_opener"
9090
end
@@ -105,4 +105,4 @@ end
105105
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
106106
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
107107

108-
gem "bugsnag", "~> 6.22"
108+
gem "bugsnag"

0 commit comments

Comments
 (0)