Skip to content

Commit

Permalink
Bundle update test dev (#744)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
compwron authored Mar 28, 2024
1 parent ae10663 commit e50dd04
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 80 deletions.
32 changes: 26 additions & 6 deletions backend/.standard_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,44 @@ ignore:
- Style/SafeNavigation
- app/jobs/group_top_posts_job.rb:
- Style/SafeNavigation
- app/models/search.rb:
- Lint/Void
- app/jobs/merge_trackables/checkin_trackables.rb:
- Performance/StringIdentifierArgument
- Lint/SymbolConversion
- app/jobs/merge_trackables/dispatcher.rb:
- Lint/SymbolConversion
- app/jobs/merge_trackables/user_trackable_association.rb:
- Lint/SymbolConversion
- app/models/ability.rb:
- Lint/SymbolConversion
- app/models/concerns/topicable.rb:
- Performance/StringIdentifierArgument
- app/models/profile.rb:
- Performance/StringIdentifierArgument
- app/models/registration.rb:
- Layout/MultilineMethodCallIndentation
- app/services/charts_pattern.rb:
- Lint/DuplicateMethods
- Layout/SpaceInsideHashLiteralBraces
- Style/QuotedSymbols
- Performance/StringIdentifierArgument
- app/services/checkin/updater.rb:
- Lint/SymbolConversion
- Style/RedundantParentheses
- app/services/trackable_creator.rb:
- Lint/SymbolConversion
- lib/tasks/app.rake:
- Lint/ConstantDefinitionInBlock
- Style/GlobalStdStream
- Lint/Loop
- lib/tasks/hbi_completeness.rake:
- Lint/ConstantDefinitionInBlock
- lib/tasks/oneoff.rake:
- Performance/StringIdentifierArgument
- Layout/MultilineMethodCallIndentation
- lib/tasks/trackables.rake:
- Lint/ConstantDefinitionInBlock
- Lint/UselessAssignment
- lib/tasks/usda.rake:
- Lint/ConstantDefinitionInBlock
- lib/tasks/utils.rake:
- Performance/StringIdentifierArgument
- spec/models/food_spec.rb:
- Lint/ConstantDefinitionInBlock
- spec/spec_helper.rb:
- Style/StringLiterals
12 changes: 6 additions & 6 deletions backend/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gem "active_model_serializers", "0.9.8"

# Use postgresql and mongo as the database for Active Record
gem "mongoid", "7.3.3"
gem "pg", "1.5.6"
gem "pg"

# Use Puma as the app server
gem "puma", "5.6.8"
Expand All @@ -28,7 +28,7 @@ gem "omniauth", "1.8.1"
gem "omniauth-facebook", "3.0.0"

# Colored output to console
gem "colored", "~> 1.2"
gem "colored"

# Background jobs
gem "sidekiq", "~> 6.5"
Expand Down Expand Up @@ -82,9 +82,9 @@ end

group :development do
gem "annotate"
gem "awesome_print", "~>1.6"
gem "better_errors", "~>2.1"
gem "brakeman", "6.1.2"
gem "awesome_print"
gem "better_errors"
gem "brakeman"
gem "foreman", require: false
gem "letter_opener"
end
Expand All @@ -105,4 +105,4 @@ end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]

gem "bugsnag", "~> 6.22"
gem "bugsnag"
Loading

0 comments on commit e50dd04

Please sign in to comment.