Skip to content

Commit

Permalink
Added resque gem. Confirmed queue is working properly by running resq…
Browse files Browse the repository at this point in the history
…ue-web in terminal
  • Loading branch information
nwalker2398 committed Mar 11, 2024
1 parent 450a014 commit bf2d363
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ gem 'rails', '~> 7.1.3', '>= 7.1.3.2'
gem 'rainbow', '~> 3.0'
# Use Redis adapter to run Action Cable in production
gem 'redis', '>= 4.0.1'
# Resque for queued jobs
gem 'resque', '~> 2.6'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
Expand Down
34 changes: 28 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ GEM
matrix (0.4.2)
mini_mime (1.1.5)
minitest (5.22.2)
mono_logger (1.1.2)
msgpack (1.7.2)
multi_json (1.15.0)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
mutex_m (0.2.0)
mysql2 (0.5.6)
net-imap (0.4.10)
Expand Down Expand Up @@ -222,14 +226,17 @@ GEM
puma (6.4.2)
nio4r (~> 2.0)
racc (1.7.3)
rack (3.0.9)
rack-session (2.0.0)
rack (>= 3.0.0)
rack (2.2.8)
rack-protection (3.2.0)
base64 (>= 0.1.0)
rack (~> 2.2, >= 2.2.4)
rack-session (1.0.2)
rack (< 3)
rack-test (2.1.0)
rack (>= 1.3)
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rackup (1.0.0)
rack (< 3)
webrick
rails (7.1.3.2)
actioncable (= 7.1.3.2)
actionmailbox (= 7.1.3.2)
Expand Down Expand Up @@ -267,9 +274,16 @@ GEM
redis-client (>= 0.17.0)
redis-client (0.20.0)
connection_pool
redis-namespace (1.11.0)
redis (>= 4)
regexp_parser (2.9.0)
reline (0.4.2)
io-console (~> 0.5)
resque (2.6.0)
mono_logger (~> 1.0)
multi_json (~> 1.0)
redis-namespace (~> 1.6)
sinatra (>= 0.9.2)
rexml (3.2.6)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
Expand Down Expand Up @@ -335,6 +349,11 @@ GEM
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
sinatra (3.2.0)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.2.0)
tilt (~> 2.0)
sprockets (4.2.1)
concurrent-ruby (~> 1.0)
rack (>= 2.2.4, < 4)
Expand All @@ -354,6 +373,7 @@ GEM
railties (>= 6.0.0)
stringio (3.1.0)
thor (1.3.0)
tilt (2.3.0)
timeout (0.4.1)
turbo-rails (2.0.3)
actionpack (>= 6.0.0)
Expand All @@ -379,6 +399,7 @@ GEM
PLATFORMS
aarch64-linux
arm64-darwin-21
arm64-darwin-22
x86_64-linux

DEPENDENCIES
Expand All @@ -400,6 +421,7 @@ DEPENDENCIES
rails (~> 7.1.3, >= 7.1.3.2)
rainbow (~> 3.0)
redis (>= 4.0.1)
resque (~> 2.6)
rspec-rails
rubocul (~> 4.0.9)
selenium-webdriver
Expand Down

0 comments on commit bf2d363

Please sign in to comment.