Project
Reverse Dependencies for rspec
The projects listed here declare rspec as a runtime or development dependency
0.0
A Responsibility is a class that provides a single piece of functionality,
as per the Single Responsibility Principle
[https://en.wikipedia.org/wiki/Single_responsibility_principle]. This class
provides a single method called "perform", with optional "before" and
"after" hooks.
2021
2022
2023
2024
2025
2026
0.0
JSON building library
2021
2022
2023
2024
2025
2026
0.0
A helper for creating the picture element in Ruby
2021
2022
2023
2024
2025
2026
0.0
resque-alive adds a Kubernetes Liveness probe to a Resque instance.
How?
resque-alive provides a small rack application which
exposes HTTP endpoint to return the "Aliveness" of the Resque
instance. Aliveness is determined by the presence of an
auto-expiring key. resque-alive schedules a "heart...
2021
2022
2023
2024
2025
2026
0.0
A Resque plugin allowing jobs to be sent to a temporary
queue to await approval. Once the job is approved, it
is placed on its normal queue.
2021
2022
2023
2024
2025
2026
0.0
Resque plugin to fail over to ActiveRecord backend for Resque job storage, when Redis is unavailable.
2021
2022
2023
2024
2025
2026
0.0
Collection of resque plugins that individually provide specific assurances about how resque workers will behave.
2021
2022
2023
2024
2025
2026
0.0
Simple way of invoking methods asynchronously using resque.
2021
2022
2023
2024
2025
2026
0.0
Moves method asynchronously in a simple and not degraded manner. Resque plugin resque-lock-timeout
allows one to avoid more work concurentiel. Simple to set up and implement this plug in is pretty amazing.
2021
2022
2023
2024
2025
2026
0.0
Adds methods for working with Batch Jobs
2021
2022
2023
2024
2025
2026
0.0
Allow resque to serialize consumption from queues based on a key.
2021
2022
2023
2024
2025
2026
0.0
Allows you to requeue jobs to another queue
This is useful in my situations :
- A large amount of jobs are queued in the critical queue, blocking the main queue for Several hours.
Select jobs based on criteria and requeue them to the low queue
2021
2022
2023
2024
2025
2026
0.0
Allows reporting failures of resque jobs to Amazon CloudWatch
2021
2022
2023
2024
2025
2026
0.0
A management tool for resque workers. Allows spinning up and managing resque workers across multiple machines sharing the same Redis server
2021
2022
2023
2024
2025
2026
0.0
Compress resque job payloads!
2021
2022
2023
2024
2025
2026
0.0
Gem that sends mail in case of resque job failure
2021
2022
2023
2024
2025
2026
0.0
Gem that sends mail in case of resque job failure. Extend to customize email summary, payload, exception.
2021
2022
2023
2024
2025
2026
0.0
Implements a federated fifo queue with consistent hashing on top of resque
2021
2022
2023
2024
2025
2026
0.0
A resque plugin that allows jobs to execute only if a filter is true, re-queueing otherwise. For example, one can author jobs that are filter-aware so that they can be scheduled with resque-scheduler to run on specific hosts.
2021
2022
2023
2024
2025
2026
0.0
Resque plugin that allows querying future jobs for it's result, for example:
job = Resque.enqueue_future(MixerWorker, "yeah")
# store job.uuid somewhere
# Later on
job = Resque.get_future_job(uuid)
job.ready?
job.result
job.finished_at
2021
2022
2023
2024
2025
2026