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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9435b3ca9ccd2743ce8bcd993374be8f7d390b89
4
- data.tar.gz: 5802db3ed7c60b3e1657e2a4c18a09bd8a0ca5c7
3
+ metadata.gz: 1365cebfc34c734cbd5d7c0693a035341f7c055e
4
+ data.tar.gz: 0c9b723082d7a809869c82a58573824048216ee6
5
5
  SHA512:
6
- metadata.gz: 48afcb2811c4624fdd512572259e9c849c1170cd4d9232427ec74555965efffd34c5b3ecae2ec9f8d9cebbadbe9fc9777861416df6dc76dd5a303348e18f5bf3
7
- data.tar.gz: 2d9c16f29a393af936f627ddc0a474f3f7902c8e0eed6cded51de2ee46529c89dc3ef3891708c978e1610835601291fd1df837489612e5ea7c42711985ec4474
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 with support for simple simple positional args.
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
@@ -1,5 +1,5 @@
1
1
  module Sidekiq
2
2
  module Later
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-later
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig McNamara