python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Create a "Building Queue" with rails associated to a user
I am currently learning Ruby on Rails and to do so I am developing a web game.
This game is in the same genre as Travian, the players can build buildings etc...
I'm a bit stuck on this feature to impl...

user12033743
Votes: 0
Answers: 1
Rails Delayed Job, add image upload to delayed job task
I've got a simple rails app that uploads photos to an object with ActiveStorage.
class ProjectAsset < ApplicationRecord
belongs_to :project
belongs_to :user
has_one_attached :asset
has_m...
Alex
Votes: 0
Answers: 1
How to stop a Delayed Job from running
Can I use the hooks of a delayed job to stop it before running?
If so how?
class Jobs::SomeJob < Struct.new
def before(job)
if should_not_run_job
# Do I raise an exception?
# ...

taz mazia
Votes: 0
Answers: 1