Skip to content

Commit

Permalink
Hoist sidekiq into the Gemfile of the starter repo (#1953)
Browse files Browse the repository at this point in the history
Previously we had listed `sidekiq` as a hard dependency of the `core`
gems. This (and the joint PR) make it so that we list `sidekiq` directly
in the `Gemfile` of the starter repo instead of as a gem dependency of
the `core` gems. That will allow people to remove sidekiq if they want
to use something else for background processing.
  • Loading branch information
jagthedrummer authored Feb 19, 2025
1 parent 17f6898 commit f835727
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ gem "rqrcode"
# Admin panel
gem "avo", ">= 3.1.7"

# Background processing
gem "sidekiq"

group :development do
# Open any sent emails in your browser instead of having to setup an SMTP trap.
gem "letter_opener"
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@ DEPENDENCIES
rqrcode
ruby-vips
selenium-webdriver
sidekiq
simplecov
simplecov-json
sprockets-rails
Expand Down

0 comments on commit f835727

Please sign in to comment.