sidekiq-later 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -7
- data/lib/sidekiq/later/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1365cebfc34c734cbd5d7c0693a035341f7c055e
|
|
4
|
+
data.tar.gz: 0c9b723082d7a809869c82a58573824048216ee6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5003296534d6ba68c6e8c4960fb54b87a5934f183d93d694628889b14db9cc6b2c10392b5d477cd2a1b0ef3533ccdab7f99fad317b562e35c9e0578a52cab49c
|
|
7
|
+
data.tar.gz: 4cc53a439e8a018867dd906e903505cf5fcf6df1285827c1d65d77021b5ee030d4c4e4a4a74ce206a51b01fbaa3ed934b07c753dbf7880ff5954c3d62e834d1f
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Sidekiq::Later
|
|
2
2
|
|
|
3
|
-
Informal asynchronous method dispatching backed by sidekiq. Like the `.delay` method, but instead of serializing an instance this is strictly class name and primary key dispatching
|
|
3
|
+
Informal asynchronous method dispatching backed by sidekiq. Like the `.delay` method, but instead of serializing an instance to YAML in Redis, this is strictly class name and primary key dispatching and only supports simple simple positional args.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -20,12 +20,6 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
In `config/initializers/sidekiq_later.rb`
|
|
24
|
-
|
|
25
|
-
```ruby
|
|
26
|
-
require 'sidekiq_later'
|
|
27
|
-
```
|
|
28
|
-
|
|
29
23
|
In your application:
|
|
30
24
|
|
|
31
25
|
```ruby
|