Skip to content

Instantly share code, notes, and snippets.

View jschee's full-sized avatar

Jason jschee

  • New Brunswick, New Jersey
View GitHub Profile
@jschee
jschee / clear_queue.rb
Created November 13, 2020 18:23
clear_queue.rb
## i stash this in rails root folder and run it when i need to clear my sidekiq queues in development.
require 'sidekiq/api'
Sidekiq::Queue.all.each(&:clear)
Sidekiq::RetrySet.new.clear
Sidekiq::ScheduledSet.new.clear
Sidekiq::DeadSet.new.clear
@jschee
jschee / gist:c81aea565bcc1b75a92823b99cec7a7d
Last active March 12, 2024 20:22
How to add Vue.js in your Ruby on Rails project with importmaps