que 0.11.4 → 0.11.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c8edda3268fc15d7edeb7429c1724cbf292988f7
4
- data.tar.gz: 16f4cecf5a05189b134d99fa76f87bb26ac47107
3
+ metadata.gz: f0c2982677c2d3e3149550edd34a8c0740784f87
4
+ data.tar.gz: 8a7c53ddf56279a7f5eb520af3e8b36492503181
5
5
  SHA512:
6
- metadata.gz: 34ebad571f0ec5e008fe19fcab01ce3fbc6b8e76879acd890a03c014d10ee92766b3f9d42a70d2b8b218d0f32e30055025d65cee330fc4f0a9986dd50688a999
7
- data.tar.gz: a72f28c2fe5f10e9897ddb9d97c7dfc123d085efdbfc653b76c543093a3aec2d930482f7859dd2decde784715f9dda6be6c5b38adf7ee83570c18a22dbda3598
6
+ metadata.gz: 736ef950176ef1ae58317be47d28ce1dda34d7cd8599f517de2b67efcfb7f6987aa5ba0ea680eeeebcc3cf51591763fc5ad39c774500abdc58079f049b88de67
7
+ data.tar.gz: da960c013f059e71aa1f96c7b1e485002a27719cfcb06966c62a6eeaf8d2837b25a09b02251003ef2c133707a8ef4413a96029b1acfb34ac69cb6e22d37f189a
@@ -1,3 +1,7 @@
1
+ ### 0.11.5 (2016-05-13)
2
+
3
+ * Fix error when running `que -v`. (#154) (hardbap)
4
+
1
5
  ### 0.11.4 (2016-03-03)
2
6
 
3
7
  * Fix incompatibility with ActiveRecord 5.0.0.beta3. (#143, #144) (joevandyk)
data/bin/que CHANGED
@@ -28,6 +28,7 @@ OptionParser.new do |opts|
28
28
  end
29
29
 
30
30
  opts.on('-v', '--version', "Show Que version") do
31
+ require 'que'
31
32
  $stdout.puts "Que version #{Que::Version}"
32
33
  exit 0
33
34
  end
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Que
4
- Version = '0.11.4'
4
+ Version = '0.11.5'
5
5
  end
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
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-03-03 00:00:00.000000000 Z
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