canvas-jobs 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/delayed/backend/active_record.rb +11 -1
- data/lib/delayed/settings.rb +14 -2
- data/lib/delayed/version.rb +1 -1
- data/spec/gemfiles/32.gemfile.lock +45 -62
- data/spec/gemfiles/40.gemfile.lock +126 -0
- data/spec/gemfiles/41.gemfile.lock +132 -0
- data/spec/gemfiles/42.gemfile.lock +159 -0
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5eeb8774ac009f2e6c53093cf82ad1ed3ac85bab
|
4
|
+
data.tar.gz: c2e16d6578393eb261547f0d1d9dc7fa41b70ba9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ece99cdf52b6ca126492578f7c097f7f9ad3aec06949dc705677c4cfa3839d0d9e8d0515cb8ab55b2c76c0a6ff66d49b700bfdef2ffa5e57525d03cd1d9484d
|
7
|
+
data.tar.gz: 6da19736ac6fe05214ddd4f23fad4c1d0ee6d4b6459e9858c281f8a8b6f08fa8d7cb48a29c904276c442eb707a7e04371e6628159edc54d2453333ef3073752a
|
@@ -190,6 +190,14 @@ module Delayed
|
|
190
190
|
scope.order("COUNT(tag) DESC").count.map { |t,c| { :tag => t, :count => c } }
|
191
191
|
end
|
192
192
|
|
193
|
+
def self.maybe_silence_periodic_log(&block)
|
194
|
+
if Settings.silence_periodic_log
|
195
|
+
::ActiveRecord::Base.logger.silence(&block)
|
196
|
+
else
|
197
|
+
block.call
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
193
201
|
def self.get_and_lock_next_available(worker_name,
|
194
202
|
queue = Delayed::Settings.queue,
|
195
203
|
min_priority = nil,
|
@@ -199,7 +207,9 @@ module Delayed
|
|
199
207
|
check_priorities(min_priority, max_priority)
|
200
208
|
|
201
209
|
loop do
|
202
|
-
jobs =
|
210
|
+
jobs = maybe_silence_periodic_log do
|
211
|
+
find_available(Settings.fetch_batch_size, queue, min_priority, max_priority)
|
212
|
+
end
|
203
213
|
return nil if jobs.empty?
|
204
214
|
if Settings.select_random_from_batch
|
205
215
|
jobs = jobs.sort_by { rand }
|
data/lib/delayed/settings.rb
CHANGED
@@ -1,6 +1,17 @@
|
|
1
1
|
module Delayed
|
2
2
|
module Settings
|
3
|
-
SETTINGS = [
|
3
|
+
SETTINGS = [
|
4
|
+
:queue,
|
5
|
+
:max_attempts,
|
6
|
+
:sleep_delay,
|
7
|
+
:sleep_delay_stagger,
|
8
|
+
:fetch_batch_size,
|
9
|
+
:select_random_from_batch,
|
10
|
+
:worker_procname_prefix,
|
11
|
+
:pool_procname_suffix,
|
12
|
+
:default_job_options,
|
13
|
+
:silence_periodic_log,
|
14
|
+
]
|
4
15
|
SETTINGS_WITH_ARGS = [ :num_strands ]
|
5
16
|
|
6
17
|
SETTINGS.each do |setting|
|
@@ -8,7 +19,7 @@ module Delayed
|
|
8
19
|
self.send("#{setting}=", nil)
|
9
20
|
define_singleton_method(setting) do
|
10
21
|
val = class_variable_get(:"@@#{setting}")
|
11
|
-
|
22
|
+
val.respond_to?(:call) ? val.call() : val
|
12
23
|
end
|
13
24
|
end
|
14
25
|
|
@@ -25,6 +36,7 @@ module Delayed
|
|
25
36
|
self.sleep_delay_stagger = 2.0
|
26
37
|
self.fetch_batch_size = 5
|
27
38
|
self.select_random_from_batch = false
|
39
|
+
self.silence_periodic_log = false
|
28
40
|
|
29
41
|
self.num_strands = ->(strand_name){ nil }
|
30
42
|
self.default_job_options = ->{ Hash.new }
|
data/lib/delayed/version.rb
CHANGED
@@ -1,22 +1,22 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../../
|
3
3
|
specs:
|
4
|
-
canvas-jobs (0.9.
|
4
|
+
canvas-jobs (0.9.11)
|
5
|
+
activerecord (>= 3.2)
|
5
6
|
after_transaction_commit (= 1.0.1)
|
6
|
-
rails (>= 3.2)
|
7
7
|
redis (> 3.0)
|
8
|
-
redis-scripting (
|
9
|
-
rufus-scheduler (
|
8
|
+
redis-scripting (= 1.0.1)
|
9
|
+
rufus-scheduler (= 2.0.6)
|
10
10
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actionmailer (3.2.
|
15
|
-
actionpack (= 3.2.
|
14
|
+
actionmailer (3.2.19)
|
15
|
+
actionpack (= 3.2.19)
|
16
16
|
mail (~> 2.5.4)
|
17
|
-
actionpack (3.2.
|
18
|
-
activemodel (= 3.2.
|
19
|
-
activesupport (= 3.2.
|
17
|
+
actionpack (3.2.19)
|
18
|
+
activemodel (= 3.2.19)
|
19
|
+
activesupport (= 3.2.19)
|
20
20
|
builder (~> 3.0.0)
|
21
21
|
erubis (~> 2.7.0)
|
22
22
|
journey (~> 1.0.4)
|
@@ -24,107 +24,93 @@ GEM
|
|
24
24
|
rack-cache (~> 1.2)
|
25
25
|
rack-test (~> 0.6.1)
|
26
26
|
sprockets (~> 2.2.1)
|
27
|
-
activemodel (3.2.
|
28
|
-
activesupport (= 3.2.
|
27
|
+
activemodel (3.2.19)
|
28
|
+
activesupport (= 3.2.19)
|
29
29
|
builder (~> 3.0.0)
|
30
|
-
activerecord (3.2.
|
31
|
-
activemodel (= 3.2.
|
32
|
-
activesupport (= 3.2.
|
30
|
+
activerecord (3.2.19)
|
31
|
+
activemodel (= 3.2.19)
|
32
|
+
activesupport (= 3.2.19)
|
33
33
|
arel (~> 3.0.2)
|
34
34
|
tzinfo (~> 0.3.29)
|
35
|
-
activeresource (3.2.
|
36
|
-
activemodel (= 3.2.
|
37
|
-
activesupport (= 3.2.
|
38
|
-
activesupport (3.2.
|
35
|
+
activeresource (3.2.19)
|
36
|
+
activemodel (= 3.2.19)
|
37
|
+
activesupport (= 3.2.19)
|
38
|
+
activesupport (3.2.19)
|
39
39
|
i18n (~> 0.6, >= 0.6.4)
|
40
40
|
multi_json (~> 1.0)
|
41
41
|
after_transaction_commit (1.0.1)
|
42
42
|
activerecord (>= 3.2)
|
43
43
|
arel (3.0.3)
|
44
|
-
backports (3.6.6)
|
45
44
|
builder (3.0.4)
|
46
|
-
bump (0.5.
|
45
|
+
bump (0.5.0)
|
47
46
|
coderay (1.1.0)
|
48
47
|
database_cleaner (1.3.0)
|
49
48
|
diff-lcs (1.2.5)
|
50
49
|
erubis (2.7.0)
|
51
50
|
hike (1.2.3)
|
52
|
-
i18n (0.
|
51
|
+
i18n (0.6.11)
|
53
52
|
journey (1.0.4)
|
54
|
-
json (1.8.
|
53
|
+
json (1.8.1)
|
55
54
|
mail (2.5.4)
|
56
55
|
mime-types (~> 1.16)
|
57
56
|
treetop (~> 1.4.8)
|
58
57
|
method_source (0.8.2)
|
59
58
|
mime-types (1.25.1)
|
60
|
-
multi_json (1.
|
61
|
-
pg (0.
|
59
|
+
multi_json (1.10.1)
|
60
|
+
pg (0.17.1)
|
62
61
|
polyglot (0.3.5)
|
63
62
|
pry (0.10.1)
|
64
63
|
coderay (~> 1.1.0)
|
65
64
|
method_source (~> 0.8.1)
|
66
65
|
slop (~> 3.4)
|
67
|
-
rack (1.4.
|
66
|
+
rack (1.4.5)
|
68
67
|
rack-cache (1.2)
|
69
68
|
rack (>= 0.4)
|
70
|
-
rack-protection (1.5.3)
|
71
|
-
rack
|
72
69
|
rack-ssl (1.3.4)
|
73
70
|
rack
|
74
|
-
rack-test (0.6.
|
71
|
+
rack-test (0.6.2)
|
75
72
|
rack (>= 1.0)
|
76
|
-
rails (3.2.
|
77
|
-
actionmailer (= 3.2.
|
78
|
-
actionpack (= 3.2.
|
79
|
-
activerecord (= 3.2.
|
80
|
-
activeresource (= 3.2.
|
81
|
-
activesupport (= 3.2.
|
73
|
+
rails (3.2.19)
|
74
|
+
actionmailer (= 3.2.19)
|
75
|
+
actionpack (= 3.2.19)
|
76
|
+
activerecord (= 3.2.19)
|
77
|
+
activeresource (= 3.2.19)
|
78
|
+
activesupport (= 3.2.19)
|
82
79
|
bundler (~> 1.0)
|
83
|
-
railties (= 3.2.
|
84
|
-
railties (3.2.
|
85
|
-
actionpack (= 3.2.
|
86
|
-
activesupport (= 3.2.
|
80
|
+
railties (= 3.2.19)
|
81
|
+
railties (3.2.19)
|
82
|
+
actionpack (= 3.2.19)
|
83
|
+
activesupport (= 3.2.19)
|
87
84
|
rack-ssl (~> 1.3.2)
|
88
85
|
rake (>= 0.8.7)
|
89
86
|
rdoc (~> 3.4)
|
90
87
|
thor (>= 0.14.6, < 2.0)
|
91
|
-
rake (10.
|
88
|
+
rake (10.3.2)
|
92
89
|
rdoc (3.12.2)
|
93
90
|
json (~> 1.4)
|
94
|
-
redis (3.
|
91
|
+
redis (3.1.0)
|
95
92
|
redis-scripting (1.0.1)
|
96
93
|
redis (>= 3.0)
|
97
94
|
rspec (3.1.0)
|
98
95
|
rspec-core (~> 3.1.0)
|
99
96
|
rspec-expectations (~> 3.1.0)
|
100
97
|
rspec-mocks (~> 3.1.0)
|
101
|
-
rspec-core (3.1.
|
98
|
+
rspec-core (3.1.5)
|
102
99
|
rspec-support (~> 3.1.0)
|
103
100
|
rspec-expectations (3.1.2)
|
104
101
|
diff-lcs (>= 1.2.0, < 2.0)
|
105
102
|
rspec-support (~> 3.1.0)
|
106
|
-
rspec-mocks (3.1.
|
103
|
+
rspec-mocks (3.1.2)
|
107
104
|
rspec-support (~> 3.1.0)
|
108
|
-
rspec-support (3.1.
|
109
|
-
rufus-scheduler (
|
110
|
-
sinatra (1.4.6)
|
111
|
-
rack (~> 1.4)
|
112
|
-
rack-protection (~> 1.4)
|
113
|
-
tilt (>= 1.3, < 3)
|
114
|
-
sinatra-contrib (1.4.6)
|
115
|
-
backports (>= 2.0)
|
116
|
-
multi_json
|
117
|
-
rack-protection
|
118
|
-
rack-test
|
119
|
-
sinatra (~> 1.4.0)
|
120
|
-
tilt (>= 1.3, < 3)
|
105
|
+
rspec-support (3.1.1)
|
106
|
+
rufus-scheduler (2.0.6)
|
121
107
|
slop (3.6.0)
|
122
|
-
sprockets (2.2.
|
108
|
+
sprockets (2.2.2)
|
123
109
|
hike (~> 1.2)
|
124
110
|
multi_json (~> 1.0)
|
125
111
|
rack (~> 1.0)
|
126
112
|
tilt (~> 1.1, != 1.3.0)
|
127
|
-
test_after_commit (0.4.
|
113
|
+
test_after_commit (0.4.0)
|
128
114
|
activerecord (>= 3.2)
|
129
115
|
thor (0.19.1)
|
130
116
|
tilt (1.4.1)
|
@@ -132,7 +118,7 @@ GEM
|
|
132
118
|
treetop (1.4.15)
|
133
119
|
polyglot
|
134
120
|
polyglot (>= 0.3.1)
|
135
|
-
tzinfo (0.3.
|
121
|
+
tzinfo (0.3.41)
|
136
122
|
wwtd (0.7.0)
|
137
123
|
|
138
124
|
PLATFORMS
|
@@ -144,12 +130,9 @@ DEPENDENCIES
|
|
144
130
|
database_cleaner (= 1.3.0)
|
145
131
|
pg
|
146
132
|
pry
|
147
|
-
rack-test
|
148
133
|
rails (~> 3.2.19)
|
149
134
|
rake
|
150
135
|
rspec (= 3.1.0)
|
151
|
-
|
152
|
-
sinatra-contrib
|
153
|
-
test_after_commit (= 0.4.1)
|
136
|
+
test_after_commit (= 0.4.0)
|
154
137
|
timecop (= 0.7.1)
|
155
138
|
wwtd (= 0.7.0)
|
@@ -0,0 +1,126 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.11)
|
5
|
+
activerecord (>= 3.2)
|
6
|
+
after_transaction_commit (= 1.0.1)
|
7
|
+
redis (> 3.0)
|
8
|
+
redis-scripting (= 1.0.1)
|
9
|
+
rufus-scheduler (= 2.0.6)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
actionmailer (4.0.10)
|
15
|
+
actionpack (= 4.0.10)
|
16
|
+
mail (~> 2.5, >= 2.5.4)
|
17
|
+
actionpack (4.0.10)
|
18
|
+
activesupport (= 4.0.10)
|
19
|
+
builder (~> 3.1.0)
|
20
|
+
erubis (~> 2.7.0)
|
21
|
+
rack (~> 1.5.2)
|
22
|
+
rack-test (~> 0.6.2)
|
23
|
+
activemodel (4.0.10)
|
24
|
+
activesupport (= 4.0.10)
|
25
|
+
builder (~> 3.1.0)
|
26
|
+
activerecord (4.0.10)
|
27
|
+
activemodel (= 4.0.10)
|
28
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
29
|
+
activesupport (= 4.0.10)
|
30
|
+
arel (~> 4.0.0)
|
31
|
+
activerecord-deprecated_finders (1.0.3)
|
32
|
+
activesupport (4.0.10)
|
33
|
+
i18n (~> 0.6, >= 0.6.9)
|
34
|
+
minitest (~> 4.2)
|
35
|
+
multi_json (~> 1.3)
|
36
|
+
thread_safe (~> 0.1)
|
37
|
+
tzinfo (~> 0.3.37)
|
38
|
+
after_transaction_commit (1.0.1)
|
39
|
+
activerecord (>= 3.2)
|
40
|
+
arel (4.0.2)
|
41
|
+
builder (3.1.4)
|
42
|
+
bump (0.5.0)
|
43
|
+
coderay (1.1.0)
|
44
|
+
database_cleaner (1.3.0)
|
45
|
+
diff-lcs (1.2.5)
|
46
|
+
erubis (2.7.0)
|
47
|
+
hike (1.2.3)
|
48
|
+
i18n (0.6.11)
|
49
|
+
mail (2.6.1)
|
50
|
+
mime-types (>= 1.16, < 3)
|
51
|
+
method_source (0.8.2)
|
52
|
+
mime-types (2.3)
|
53
|
+
minitest (4.7.5)
|
54
|
+
multi_json (1.10.1)
|
55
|
+
pg (0.17.1)
|
56
|
+
pry (0.10.1)
|
57
|
+
coderay (~> 1.1.0)
|
58
|
+
method_source (~> 0.8.1)
|
59
|
+
slop (~> 3.4)
|
60
|
+
rack (1.5.2)
|
61
|
+
rack-test (0.6.2)
|
62
|
+
rack (>= 1.0)
|
63
|
+
rails (4.0.10)
|
64
|
+
actionmailer (= 4.0.10)
|
65
|
+
actionpack (= 4.0.10)
|
66
|
+
activerecord (= 4.0.10)
|
67
|
+
activesupport (= 4.0.10)
|
68
|
+
bundler (>= 1.3.0, < 2.0)
|
69
|
+
railties (= 4.0.10)
|
70
|
+
sprockets-rails (~> 2.0)
|
71
|
+
railties (4.0.10)
|
72
|
+
actionpack (= 4.0.10)
|
73
|
+
activesupport (= 4.0.10)
|
74
|
+
rake (>= 0.8.7)
|
75
|
+
thor (>= 0.18.1, < 2.0)
|
76
|
+
rake (10.3.2)
|
77
|
+
redis (3.1.0)
|
78
|
+
redis-scripting (1.0.1)
|
79
|
+
redis (>= 3.0)
|
80
|
+
rspec (3.1.0)
|
81
|
+
rspec-core (~> 3.1.0)
|
82
|
+
rspec-expectations (~> 3.1.0)
|
83
|
+
rspec-mocks (~> 3.1.0)
|
84
|
+
rspec-core (3.1.5)
|
85
|
+
rspec-support (~> 3.1.0)
|
86
|
+
rspec-expectations (3.1.2)
|
87
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
88
|
+
rspec-support (~> 3.1.0)
|
89
|
+
rspec-mocks (3.1.2)
|
90
|
+
rspec-support (~> 3.1.0)
|
91
|
+
rspec-support (3.1.1)
|
92
|
+
rufus-scheduler (2.0.6)
|
93
|
+
slop (3.6.0)
|
94
|
+
sprockets (2.12.2)
|
95
|
+
hike (~> 1.2)
|
96
|
+
multi_json (~> 1.0)
|
97
|
+
rack (~> 1.0)
|
98
|
+
tilt (~> 1.1, != 1.3.0)
|
99
|
+
sprockets-rails (2.1.4)
|
100
|
+
actionpack (>= 3.0)
|
101
|
+
activesupport (>= 3.0)
|
102
|
+
sprockets (~> 2.8)
|
103
|
+
test_after_commit (0.4.0)
|
104
|
+
activerecord (>= 3.2)
|
105
|
+
thor (0.19.1)
|
106
|
+
thread_safe (0.3.4)
|
107
|
+
tilt (1.4.1)
|
108
|
+
timecop (0.7.1)
|
109
|
+
tzinfo (0.3.41)
|
110
|
+
wwtd (0.7.0)
|
111
|
+
|
112
|
+
PLATFORMS
|
113
|
+
ruby
|
114
|
+
|
115
|
+
DEPENDENCIES
|
116
|
+
bump
|
117
|
+
canvas-jobs!
|
118
|
+
database_cleaner (= 1.3.0)
|
119
|
+
pg
|
120
|
+
pry
|
121
|
+
rails (~> 4.0.10)
|
122
|
+
rake
|
123
|
+
rspec (= 3.1.0)
|
124
|
+
test_after_commit (= 0.4.0)
|
125
|
+
timecop (= 0.7.1)
|
126
|
+
wwtd (= 0.7.0)
|
@@ -0,0 +1,132 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.10)
|
5
|
+
after_transaction_commit (= 1.0.1)
|
6
|
+
rails (>= 3.2)
|
7
|
+
redis (> 3.0)
|
8
|
+
redis-scripting (= 1.0.1)
|
9
|
+
rufus-scheduler (= 2.0.6)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
actionmailer (4.1.6)
|
15
|
+
actionpack (= 4.1.6)
|
16
|
+
actionview (= 4.1.6)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
actionpack (4.1.6)
|
19
|
+
actionview (= 4.1.6)
|
20
|
+
activesupport (= 4.1.6)
|
21
|
+
rack (~> 1.5.2)
|
22
|
+
rack-test (~> 0.6.2)
|
23
|
+
actionview (4.1.6)
|
24
|
+
activesupport (= 4.1.6)
|
25
|
+
builder (~> 3.1)
|
26
|
+
erubis (~> 2.7.0)
|
27
|
+
activemodel (4.1.6)
|
28
|
+
activesupport (= 4.1.6)
|
29
|
+
builder (~> 3.1)
|
30
|
+
activerecord (4.1.6)
|
31
|
+
activemodel (= 4.1.6)
|
32
|
+
activesupport (= 4.1.6)
|
33
|
+
arel (~> 5.0.0)
|
34
|
+
activesupport (4.1.6)
|
35
|
+
i18n (~> 0.6, >= 0.6.9)
|
36
|
+
json (~> 1.7, >= 1.7.7)
|
37
|
+
minitest (~> 5.1)
|
38
|
+
thread_safe (~> 0.1)
|
39
|
+
tzinfo (~> 1.1)
|
40
|
+
after_transaction_commit (1.0.1)
|
41
|
+
activerecord (>= 3.2)
|
42
|
+
arel (5.0.1.20140414130214)
|
43
|
+
builder (3.2.2)
|
44
|
+
bump (0.5.0)
|
45
|
+
coderay (1.1.0)
|
46
|
+
database_cleaner (1.3.0)
|
47
|
+
diff-lcs (1.2.5)
|
48
|
+
erubis (2.7.0)
|
49
|
+
hike (1.2.3)
|
50
|
+
i18n (0.6.11)
|
51
|
+
json (1.8.1)
|
52
|
+
mail (2.6.1)
|
53
|
+
mime-types (>= 1.16, < 3)
|
54
|
+
method_source (0.8.2)
|
55
|
+
mime-types (2.3)
|
56
|
+
minitest (5.4.2)
|
57
|
+
multi_json (1.10.1)
|
58
|
+
pg (0.17.1)
|
59
|
+
pry (0.10.1)
|
60
|
+
coderay (~> 1.1.0)
|
61
|
+
method_source (~> 0.8.1)
|
62
|
+
slop (~> 3.4)
|
63
|
+
rack (1.5.2)
|
64
|
+
rack-test (0.6.2)
|
65
|
+
rack (>= 1.0)
|
66
|
+
rails (4.1.6)
|
67
|
+
actionmailer (= 4.1.6)
|
68
|
+
actionpack (= 4.1.6)
|
69
|
+
actionview (= 4.1.6)
|
70
|
+
activemodel (= 4.1.6)
|
71
|
+
activerecord (= 4.1.6)
|
72
|
+
activesupport (= 4.1.6)
|
73
|
+
bundler (>= 1.3.0, < 2.0)
|
74
|
+
railties (= 4.1.6)
|
75
|
+
sprockets-rails (~> 2.0)
|
76
|
+
railties (4.1.6)
|
77
|
+
actionpack (= 4.1.6)
|
78
|
+
activesupport (= 4.1.6)
|
79
|
+
rake (>= 0.8.7)
|
80
|
+
thor (>= 0.18.1, < 2.0)
|
81
|
+
rake (10.3.2)
|
82
|
+
redis (3.1.0)
|
83
|
+
redis-scripting (1.0.1)
|
84
|
+
redis (>= 3.0)
|
85
|
+
rspec (3.1.0)
|
86
|
+
rspec-core (~> 3.1.0)
|
87
|
+
rspec-expectations (~> 3.1.0)
|
88
|
+
rspec-mocks (~> 3.1.0)
|
89
|
+
rspec-core (3.1.5)
|
90
|
+
rspec-support (~> 3.1.0)
|
91
|
+
rspec-expectations (3.1.2)
|
92
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
93
|
+
rspec-support (~> 3.1.0)
|
94
|
+
rspec-mocks (3.1.2)
|
95
|
+
rspec-support (~> 3.1.0)
|
96
|
+
rspec-support (3.1.1)
|
97
|
+
rufus-scheduler (2.0.6)
|
98
|
+
slop (3.6.0)
|
99
|
+
sprockets (2.12.2)
|
100
|
+
hike (~> 1.2)
|
101
|
+
multi_json (~> 1.0)
|
102
|
+
rack (~> 1.0)
|
103
|
+
tilt (~> 1.1, != 1.3.0)
|
104
|
+
sprockets-rails (2.1.4)
|
105
|
+
actionpack (>= 3.0)
|
106
|
+
activesupport (>= 3.0)
|
107
|
+
sprockets (~> 2.8)
|
108
|
+
test_after_commit (0.3.0)
|
109
|
+
activerecord (>= 3.2)
|
110
|
+
thor (0.19.1)
|
111
|
+
thread_safe (0.3.4)
|
112
|
+
tilt (1.4.1)
|
113
|
+
timecop (0.7.1)
|
114
|
+
tzinfo (1.2.2)
|
115
|
+
thread_safe (~> 0.1)
|
116
|
+
wwtd (0.5.5)
|
117
|
+
|
118
|
+
PLATFORMS
|
119
|
+
ruby
|
120
|
+
|
121
|
+
DEPENDENCIES
|
122
|
+
bump
|
123
|
+
canvas-jobs!
|
124
|
+
database_cleaner
|
125
|
+
pg
|
126
|
+
pry
|
127
|
+
rails (~> 4.1.6)
|
128
|
+
rake
|
129
|
+
rspec
|
130
|
+
test_after_commit
|
131
|
+
timecop
|
132
|
+
wwtd
|
@@ -0,0 +1,159 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.10)
|
5
|
+
after_transaction_commit (= 1.0.1)
|
6
|
+
rails (>= 3.2)
|
7
|
+
redis (> 3.0)
|
8
|
+
redis-scripting (= 1.0.1)
|
9
|
+
rufus-scheduler (= 2.0.6)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
actionmailer (4.2.0.beta2)
|
15
|
+
actionpack (= 4.2.0.beta2)
|
16
|
+
actionview (= 4.2.0.beta2)
|
17
|
+
activejob (= 4.2.0.beta2)
|
18
|
+
mail (~> 2.5, >= 2.5.4)
|
19
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
20
|
+
actionpack (4.2.0.beta2)
|
21
|
+
actionview (= 4.2.0.beta2)
|
22
|
+
activesupport (= 4.2.0.beta2)
|
23
|
+
rack (~> 1.6.0.beta)
|
24
|
+
rack-test (~> 0.6.2)
|
25
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
26
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
27
|
+
actionview (4.2.0.beta2)
|
28
|
+
activesupport (= 4.2.0.beta2)
|
29
|
+
builder (~> 3.1)
|
30
|
+
erubis (~> 2.7.0)
|
31
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
33
|
+
activejob (4.2.0.beta2)
|
34
|
+
activesupport (= 4.2.0.beta2)
|
35
|
+
globalid (>= 0.3.0)
|
36
|
+
activemodel (4.2.0.beta2)
|
37
|
+
activesupport (= 4.2.0.beta2)
|
38
|
+
builder (~> 3.1)
|
39
|
+
activerecord (4.2.0.beta2)
|
40
|
+
activemodel (= 4.2.0.beta2)
|
41
|
+
activesupport (= 4.2.0.beta2)
|
42
|
+
arel (>= 6.0.0.beta1, < 6.1)
|
43
|
+
activesupport (4.2.0.beta2)
|
44
|
+
i18n (>= 0.7.0.beta1, < 0.8)
|
45
|
+
json (~> 1.7, >= 1.7.7)
|
46
|
+
minitest (~> 5.1)
|
47
|
+
thread_safe (~> 0.1)
|
48
|
+
tzinfo (~> 1.1)
|
49
|
+
after_transaction_commit (1.0.1)
|
50
|
+
activerecord (>= 3.2)
|
51
|
+
arel (6.0.0.beta1)
|
52
|
+
builder (3.2.2)
|
53
|
+
bump (0.5.0)
|
54
|
+
coderay (1.1.0)
|
55
|
+
database_cleaner (1.3.0)
|
56
|
+
diff-lcs (1.2.5)
|
57
|
+
erubis (2.7.0)
|
58
|
+
globalid (0.3.0)
|
59
|
+
activesupport (>= 4.1.0)
|
60
|
+
hike (1.2.3)
|
61
|
+
i18n (0.7.0.beta1)
|
62
|
+
json (1.8.1)
|
63
|
+
loofah (2.0.1)
|
64
|
+
nokogiri (>= 1.5.9)
|
65
|
+
mail (2.6.1)
|
66
|
+
mime-types (>= 1.16, < 3)
|
67
|
+
method_source (0.8.2)
|
68
|
+
mime-types (2.3)
|
69
|
+
mini_portile (0.6.0)
|
70
|
+
minitest (5.4.2)
|
71
|
+
multi_json (1.10.1)
|
72
|
+
nokogiri (1.6.3.1)
|
73
|
+
mini_portile (= 0.6.0)
|
74
|
+
pg (0.17.1)
|
75
|
+
pry (0.10.1)
|
76
|
+
coderay (~> 1.1.0)
|
77
|
+
method_source (~> 0.8.1)
|
78
|
+
slop (~> 3.4)
|
79
|
+
rack (1.6.0.beta)
|
80
|
+
rack-test (0.6.2)
|
81
|
+
rack (>= 1.0)
|
82
|
+
rails (4.2.0.beta2)
|
83
|
+
actionmailer (= 4.2.0.beta2)
|
84
|
+
actionpack (= 4.2.0.beta2)
|
85
|
+
actionview (= 4.2.0.beta2)
|
86
|
+
activejob (= 4.2.0.beta2)
|
87
|
+
activemodel (= 4.2.0.beta2)
|
88
|
+
activerecord (= 4.2.0.beta2)
|
89
|
+
activesupport (= 4.2.0.beta2)
|
90
|
+
bundler (>= 1.3.0, < 2.0)
|
91
|
+
railties (= 4.2.0.beta2)
|
92
|
+
sprockets-rails (~> 3.0.0.beta1)
|
93
|
+
rails-deprecated_sanitizer (1.0.3)
|
94
|
+
activesupport (>= 4.2.0.alpha)
|
95
|
+
rails-dom-testing (1.0.3)
|
96
|
+
activesupport
|
97
|
+
nokogiri (~> 1.6.0)
|
98
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
99
|
+
rails-html-sanitizer (1.0.1)
|
100
|
+
loofah (~> 2.0)
|
101
|
+
railties (4.2.0.beta2)
|
102
|
+
actionpack (= 4.2.0.beta2)
|
103
|
+
activesupport (= 4.2.0.beta2)
|
104
|
+
rake (>= 0.8.7)
|
105
|
+
thor (>= 0.18.1, < 2.0)
|
106
|
+
rake (10.3.2)
|
107
|
+
redis (3.1.0)
|
108
|
+
redis-scripting (1.0.1)
|
109
|
+
redis (>= 3.0)
|
110
|
+
rspec (3.1.0)
|
111
|
+
rspec-core (~> 3.1.0)
|
112
|
+
rspec-expectations (~> 3.1.0)
|
113
|
+
rspec-mocks (~> 3.1.0)
|
114
|
+
rspec-core (3.1.5)
|
115
|
+
rspec-support (~> 3.1.0)
|
116
|
+
rspec-expectations (3.1.2)
|
117
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
118
|
+
rspec-support (~> 3.1.0)
|
119
|
+
rspec-mocks (3.1.2)
|
120
|
+
rspec-support (~> 3.1.0)
|
121
|
+
rspec-support (3.1.1)
|
122
|
+
rufus-scheduler (2.0.6)
|
123
|
+
slop (3.6.0)
|
124
|
+
sprockets (2.12.2)
|
125
|
+
hike (~> 1.2)
|
126
|
+
multi_json (~> 1.0)
|
127
|
+
rack (~> 1.0)
|
128
|
+
tilt (~> 1.1, != 1.3.0)
|
129
|
+
sprockets-rails (3.0.0.beta1)
|
130
|
+
actionpack (>= 4.0)
|
131
|
+
activesupport (>= 4.0)
|
132
|
+
sprockets (~> 2.8)
|
133
|
+
syck (1.0.4)
|
134
|
+
test_after_commit (0.3.0)
|
135
|
+
activerecord (>= 3.2)
|
136
|
+
thor (0.19.1)
|
137
|
+
thread_safe (0.3.4)
|
138
|
+
tilt (1.4.1)
|
139
|
+
timecop (0.7.1)
|
140
|
+
tzinfo (1.2.2)
|
141
|
+
thread_safe (~> 0.1)
|
142
|
+
wwtd (0.5.5)
|
143
|
+
|
144
|
+
PLATFORMS
|
145
|
+
ruby
|
146
|
+
|
147
|
+
DEPENDENCIES
|
148
|
+
bump
|
149
|
+
canvas-jobs!
|
150
|
+
database_cleaner
|
151
|
+
pg
|
152
|
+
pry
|
153
|
+
rails (~> 4.2.0.beta2)
|
154
|
+
rake
|
155
|
+
rspec
|
156
|
+
syck
|
157
|
+
test_after_commit
|
158
|
+
timecop
|
159
|
+
wwtd
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canvas-jobs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Luetke
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: after_transaction_commit
|
@@ -318,8 +318,11 @@ files:
|
|
318
318
|
- spec/gemfiles/32.gemfile
|
319
319
|
- spec/gemfiles/32.gemfile.lock
|
320
320
|
- spec/gemfiles/40.gemfile
|
321
|
+
- spec/gemfiles/40.gemfile.lock
|
321
322
|
- spec/gemfiles/41.gemfile
|
323
|
+
- spec/gemfiles/41.gemfile.lock
|
322
324
|
- spec/gemfiles/42.gemfile
|
325
|
+
- spec/gemfiles/42.gemfile.lock
|
323
326
|
- spec/migrate/20140924140513_add_story_table.rb
|
324
327
|
- spec/redis_job_spec.rb
|
325
328
|
- spec/sample_jobs.rb
|
@@ -362,8 +365,11 @@ test_files:
|
|
362
365
|
- spec/gemfiles/32.gemfile
|
363
366
|
- spec/gemfiles/32.gemfile.lock
|
364
367
|
- spec/gemfiles/40.gemfile
|
368
|
+
- spec/gemfiles/40.gemfile.lock
|
365
369
|
- spec/gemfiles/41.gemfile
|
370
|
+
- spec/gemfiles/41.gemfile.lock
|
366
371
|
- spec/gemfiles/42.gemfile
|
372
|
+
- spec/gemfiles/42.gemfile.lock
|
367
373
|
- spec/migrate/20140924140513_add_story_table.rb
|
368
374
|
- spec/redis_job_spec.rb
|
369
375
|
- spec/sample_jobs.rb
|
@@ -375,4 +381,3 @@ test_files:
|
|
375
381
|
- spec/shared/worker.rb
|
376
382
|
- spec/shared_jobs_specs.rb
|
377
383
|
- spec/spec_helper.rb
|
378
|
-
has_rdoc:
|