que 0.11.4 → 0.11.5
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/CHANGELOG.md +4 -0
- data/bin/que +1 -0
- data/docs/README.md +33 -0
- data/lib/que/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0c2982677c2d3e3149550edd34a8c0740784f87
|
4
|
+
data.tar.gz: 8a7c53ddf56279a7f5eb520af3e8b36492503181
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 736ef950176ef1ae58317be47d28ce1dda34d7cd8599f517de2b67efcfb7f6987aa5ba0ea680eeeebcc3cf51591763fc5ad39c774500abdc58079f049b88de67
|
7
|
+
data.tar.gz: da960c013f059e71aa1f96c7b1e485002a27719cfcb06966c62a6eeaf8d2837b25a09b02251003ef2c133707a8ef4413a96029b1acfb34ac69cb6e22d37f189a
|
data/CHANGELOG.md
CHANGED
data/bin/que
CHANGED
data/docs/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
Docs Index
|
2
|
+
==============
|
3
|
+
|
4
|
+
- [Advanced Setup](docs/advanced_setup.md)
|
5
|
+
- Using ActiveRecord Without Rails
|
6
|
+
- Forking Servers
|
7
|
+
- Managing the Jobs Table
|
8
|
+
- Other Setup
|
9
|
+
- [Customizing Que](docs/customizing_que.md)
|
10
|
+
- Recurring Jobs
|
11
|
+
- DelayedJob-style Jobs
|
12
|
+
- QueueClassic-style Jobs
|
13
|
+
- Retaining Finished Jobs
|
14
|
+
- Not Retrying Certain Failed Jobs
|
15
|
+
- [Error Handling](docs/error_handling.md)
|
16
|
+
- [Inspecting the Queue](docs/inspecting_the_queue.md)
|
17
|
+
- Job Stats
|
18
|
+
- Worker States
|
19
|
+
- Custom Queries
|
20
|
+
- [Logging](docs/logging.md)
|
21
|
+
- [Managing Workers](docs/managing_workers.md)
|
22
|
+
- Working Jobs Via Executable
|
23
|
+
- Thread-Unsafe Application Code
|
24
|
+
- The Wake Interval
|
25
|
+
- Manually Waking Workers
|
26
|
+
- Connection Pool Size
|
27
|
+
- [Migrating](docs/migrating.md)
|
28
|
+
- [Multiple Queues](docs/multiple_queues.md)
|
29
|
+
- [Shutting Down Safely](docs/shutting_down_safely.md)
|
30
|
+
- [Using Plain Postgres Connections](docs/using_plain_connections.md)
|
31
|
+
- [Using Sequel](docs/using_sequel.md)
|
32
|
+
- [Writing Reliable Jobs](docs/writing_reliable_jobs.md)
|
33
|
+
- Timeouts
|
data/lib/que/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: que
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Hanks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -41,6 +41,7 @@ files:
|
|
41
41
|
- README.md
|
42
42
|
- Rakefile
|
43
43
|
- bin/que
|
44
|
+
- docs/README.md
|
44
45
|
- docs/advanced_setup.md
|
45
46
|
- docs/customizing_que.md
|
46
47
|
- docs/error_handling.md
|