Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bundle update test dev #744

Merged
merged 5 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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