allora 0.1.7 → 0.1.8

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: 1eacbacaec66296ab84d3bfc4e0cc5923a1e2498
4
- data.tar.gz: 3ea1d12abb16a7ac44cf4351b962a841ef9ff02e
3
+ metadata.gz: 5e9d1fd2f7a039af598e1f54b1ffcaf1fc5ccd4f
4
+ data.tar.gz: 7097d18700b29ea793bde0482b2c73d9828139c4
5
5
  SHA512:
6
- metadata.gz: 1fb32dedc278e182b9b3b9734d9b23ca1bef12d35aecea339b32597021cf1740490672350003aadc8a492b84976883ee97289a6be52713470434cc771141ab43
7
- data.tar.gz: 35903bda8120eab4fe1c23461e6af665a35116d681339b2c69388a518e72ba2d91a937c5dbea6f684d30336b7ce57c5e32f6cdba0b905d54a17898d19e053fa2
6
+ metadata.gz: 41742cfa147dfb24f00ec14153a837a6b6c05beffafb160658aa23af64b8dc07ddacf66d9b320a308642847b41a17354832d020ca6e65b38dcebbcbb6181141e
7
+ data.tar.gz: 8db9cba926aa1c9b32f85f3c75a7ff560f6c3cd30da62184e95b68c0e41551ed7a6c4018152ffa27698670233837fccec52ea2d4db1a085a71d41b0709ce5662
@@ -1,3 +1,7 @@
1
+ ### 0.1.8
2
+
3
+ * Fix issue with redis backend not deleting all job keys on reset [chenkirk]
4
+
1
5
  ### 0.1.7
2
6
 
3
7
  * Allow passing more connection options to Redis. [lsimoneau]
@@ -77,7 +77,7 @@ module Allora
77
77
 
78
78
  # Forces all job data to be re-entered into Redis at the next poll
79
79
  def reset!
80
- redis.keys(job_info_key("*")).each { |k| redis.del(job_info_key(k)) }
80
+ redis.keys(job_info_key("*")).each { |k| redis.del(k) }
81
81
  end
82
82
 
83
83
  # Returns a Boolean specifying if the job can be run and no race condition occurred updating its info
@@ -22,5 +22,5 @@
22
22
  ##
23
23
 
24
24
  module Allora
25
- VERSION = "0.1.7"
25
+ VERSION = "0.1.8"
26
26
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - d11wtq
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-18 00:00:00.000000000 Z
11
+ date: 2015-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description: |-
@@ -37,7 +37,7 @@ executables: []
37
37
  extensions: []
38
38
  extra_rdoc_files: []
39
39
  files:
40
- - .gitignore
40
+ - ".gitignore"
41
41
  - CHANGELOG.md
42
42
  - Gemfile
43
43
  - LICENSE
@@ -63,17 +63,17 @@ require_paths:
63
63
  - lib
64
64
  required_ruby_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
- - - '>='
71
+ - - ">="
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubyforge_project: allora
76
- rubygems_version: 2.0.14
76
+ rubygems_version: 2.4.5.1
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: A ruby scheduler that keeps it simple, with support for distributed schedules