Skip to content

Commit

Permalink
Merge pull request #2424 from MushroomObserver/solid-queue-0.9
Browse files Browse the repository at this point in the history
Bump `solid_queue` to 1.0
  • Loading branch information
nimmolo authored Sep 26, 2024
2 parents 4ae4b81 + 2d0b84c commit 7798836
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 42 deletions.
46 changes: 4 additions & 42 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,7 @@ GEM
concurrent-ruby (~> 1.1)
webrick (~> 1.7)
websocket-driver (~> 0.7)
ffi (1.17.0-aarch64-linux-gnu)
ffi (1.17.0-aarch64-linux-musl)
ffi (1.17.0-arm-linux-gnu)
ffi (1.17.0-arm-linux-musl)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86-linux-gnu)
ffi (1.17.0-x86-linux-musl)
ffi (1.17.0-x86_64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
ffi (1.17.0-x86_64-linux-musl)
Expand All @@ -176,14 +170,14 @@ GEM
csv
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
importmap-rails (2.0.1)
actionpack (>= 6.0.0)
activesupport (>= 6.0.0)
railties (>= 6.0.0)
io-console (0.7.2)
irb (1.14.0)
irb (1.14.1)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
jbuilder (2.12.0)
Expand All @@ -193,9 +187,6 @@ GEM
jwt (2.8.2)
base64
language_server-protocol (3.17.0.3)
libv8-node (18.19.0.0)
libv8-node (18.19.0.0-aarch64-linux)
libv8-node (18.19.0.0-aarch64-linux-musl)
libv8-node (18.19.0.0-arm64-darwin)
libv8-node (18.19.0.0-x86_64-darwin)
libv8-node (18.19.0.0-x86_64-linux)
Expand Down Expand Up @@ -242,14 +233,8 @@ GEM
netrc (0.11.0)
newrelic_rpm (9.13.0)
nio4r (2.7.3)
nokogiri (1.16.7-aarch64-linux)
racc (~> 1.4)
nokogiri (1.16.7-arm-linux)
racc (~> 1.4)
nokogiri (1.16.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86-linux)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
Expand Down Expand Up @@ -358,20 +343,8 @@ GEM
rubocop (>= 0.90.0)
ruby-progressbar (1.13.0)
rubyzip (2.3.2)
sass-embedded (1.78.0-aarch64-linux-gnu)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-aarch64-linux-musl)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-arm-linux-gnueabihf)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-arm-linux-musleabihf)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-arm64-darwin)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-x86-linux-gnu)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-x86-linux-musl)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-x86_64-darwin)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-x86_64-linux-gnu)
Expand All @@ -397,7 +370,7 @@ GEM
activejob (>= 7)
activerecord (>= 7)
railties (>= 7)
solid_queue (0.8.2)
solid_queue (1.0.0)
activejob (>= 7.1)
activerecord (>= 7.1)
concurrent-ruby (>= 1.3.1)
Expand Down Expand Up @@ -444,7 +417,7 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.8.1)
webrick (1.8.2)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -455,18 +428,7 @@ GEM
zeitwerk (2.6.18)

PLATFORMS
aarch64-linux
aarch64-linux-gnu
aarch64-linux-musl
arm-linux
arm-linux-gnu
arm-linux-gnueabihf
arm-linux-musl
arm-linux-musleabihf
arm64-darwin
x86-linux
x86-linux-gnu
x86-linux-musl
x86_64-darwin
x86_64-linux
x86_64-linux-gnu
Expand Down
File renamed without changes.
13 changes: 13 additions & 0 deletions config/recurring.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Solid Queue supports defining recurring tasks that run at specific times in
# the future, on a regular basis like cron jobs. These are managed by the
# scheduler process and are defined in their own configuration file.
# https://github.com/rails/solid_queue/tree/main#recurring-tasks

# production:
# a_periodic_job:
# class: MyJob
# args: [ 42, { status: "custom_status" } ]
# schedule: every second
# a_cleanup_task:
# command: "DeletedStuff.clear_all"
# schedule: every day at 9am

0 comments on commit 7798836

Please sign in to comment.