canvas-jobs 0.9.0 → 0.9.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/redis/job.rb +18 -8
- data/lib/delayed/version.rb +1 -1
- data/spec/gemfiles/32.gemfile.lock +140 -0
- data/spec/gemfiles/40.gemfile.lock +128 -0
- data/spec/gemfiles/41.gemfile.lock +134 -0
- data/spec/gemfiles/42.gemfile.lock +159 -0
- metadata +9 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b83b3426204ac003d16e3f28fda7d59644549b18
|
4
|
+
data.tar.gz: 87f1c08aeb6ec5730842efff4e095224efb014db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc00a4782247282a5745332bab5bf51d1f4d913e388465eb256184d7a4dfa8583effc5b7e30920d04c255c575cac6dc3ad060d8c27dd989650cd89a181923caf
|
7
|
+
data.tar.gz: a5c682c5f0568c27ad1db54a61716a34b3e559f0340688a99179ca6bc0a1d67c3f8aefdc196adb72fa96041a91d06bc80954c0a716ed63cf842d20e93e9952ba
|
@@ -108,21 +108,31 @@ class Job
|
|
108
108
|
|
109
109
|
# We store time attributes in redis as floats so we don't have to do
|
110
110
|
# timestamp parsing in lua.
|
111
|
-
TIMESTAMP_COLUMNS = [:run_at, :locked_at, :failed_at, :created_at, :updated_at]
|
112
|
-
INTEGER_COLUMNS = [:priority, :attempts, :max_attempts]
|
111
|
+
TIMESTAMP_COLUMNS = Set.new([:run_at, :locked_at, :failed_at, :created_at, :updated_at])
|
112
|
+
INTEGER_COLUMNS = Set.new([:priority, :attempts, :max_attempts])
|
113
|
+
|
114
|
+
def self.column(name, type)
|
115
|
+
if type == :timestamp
|
116
|
+
TIMESTAMP_COLUMNS << name
|
117
|
+
elsif type == :integer
|
118
|
+
INTEGER_COLUMNS << name
|
119
|
+
end
|
113
120
|
|
114
|
-
|
115
|
-
|
116
|
-
COLUMNS.each do |c|
|
121
|
+
attr_reader(name)
|
122
|
+
define_attribute_methods([name])
|
117
123
|
# Custom attr_writer that updates the dirty status.
|
118
124
|
class_eval(<<-EOS, __FILE__, __LINE__ + 1)
|
119
|
-
def #{
|
120
|
-
#{
|
121
|
-
@#{
|
125
|
+
def #{name}=(new_value)
|
126
|
+
#{name}_will_change! unless new_value == self.#{name}
|
127
|
+
@#{name} = new_value
|
122
128
|
end
|
123
129
|
EOS
|
124
130
|
end
|
125
131
|
|
132
|
+
COLUMNS.each do |c|
|
133
|
+
self.column(c, nil)
|
134
|
+
end
|
135
|
+
|
126
136
|
def initialize(attrs = {})
|
127
137
|
attrs.each { |k, v| self.send("#{k}=", v) }
|
128
138
|
self.priority ||= 0
|
data/lib/delayed/version.rb
CHANGED
@@ -0,0 +1,140 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.0)
|
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
|
+
syck
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
actionmailer (3.2.19)
|
16
|
+
actionpack (= 3.2.19)
|
17
|
+
mail (~> 2.5.4)
|
18
|
+
actionpack (3.2.19)
|
19
|
+
activemodel (= 3.2.19)
|
20
|
+
activesupport (= 3.2.19)
|
21
|
+
builder (~> 3.0.0)
|
22
|
+
erubis (~> 2.7.0)
|
23
|
+
journey (~> 1.0.4)
|
24
|
+
rack (~> 1.4.5)
|
25
|
+
rack-cache (~> 1.2)
|
26
|
+
rack-test (~> 0.6.1)
|
27
|
+
sprockets (~> 2.2.1)
|
28
|
+
activemodel (3.2.19)
|
29
|
+
activesupport (= 3.2.19)
|
30
|
+
builder (~> 3.0.0)
|
31
|
+
activerecord (3.2.19)
|
32
|
+
activemodel (= 3.2.19)
|
33
|
+
activesupport (= 3.2.19)
|
34
|
+
arel (~> 3.0.2)
|
35
|
+
tzinfo (~> 0.3.29)
|
36
|
+
activeresource (3.2.19)
|
37
|
+
activemodel (= 3.2.19)
|
38
|
+
activesupport (= 3.2.19)
|
39
|
+
activesupport (3.2.19)
|
40
|
+
i18n (~> 0.6, >= 0.6.4)
|
41
|
+
multi_json (~> 1.0)
|
42
|
+
after_transaction_commit (1.0.1)
|
43
|
+
activerecord (>= 3.2)
|
44
|
+
arel (3.0.3)
|
45
|
+
builder (3.0.4)
|
46
|
+
bump (0.5.0)
|
47
|
+
coderay (1.1.0)
|
48
|
+
database_cleaner (1.3.0)
|
49
|
+
diff-lcs (1.2.5)
|
50
|
+
erubis (2.7.0)
|
51
|
+
hike (1.2.3)
|
52
|
+
i18n (0.6.11)
|
53
|
+
journey (1.0.4)
|
54
|
+
json (1.8.1)
|
55
|
+
mail (2.5.4)
|
56
|
+
mime-types (~> 1.16)
|
57
|
+
treetop (~> 1.4.8)
|
58
|
+
method_source (0.8.2)
|
59
|
+
mime-types (1.25.1)
|
60
|
+
multi_json (1.10.1)
|
61
|
+
pg (0.17.1)
|
62
|
+
polyglot (0.3.5)
|
63
|
+
pry (0.10.1)
|
64
|
+
coderay (~> 1.1.0)
|
65
|
+
method_source (~> 0.8.1)
|
66
|
+
slop (~> 3.4)
|
67
|
+
rack (1.4.5)
|
68
|
+
rack-cache (1.2)
|
69
|
+
rack (>= 0.4)
|
70
|
+
rack-ssl (1.3.4)
|
71
|
+
rack
|
72
|
+
rack-test (0.6.2)
|
73
|
+
rack (>= 1.0)
|
74
|
+
rails (3.2.19)
|
75
|
+
actionmailer (= 3.2.19)
|
76
|
+
actionpack (= 3.2.19)
|
77
|
+
activerecord (= 3.2.19)
|
78
|
+
activeresource (= 3.2.19)
|
79
|
+
activesupport (= 3.2.19)
|
80
|
+
bundler (~> 1.0)
|
81
|
+
railties (= 3.2.19)
|
82
|
+
railties (3.2.19)
|
83
|
+
actionpack (= 3.2.19)
|
84
|
+
activesupport (= 3.2.19)
|
85
|
+
rack-ssl (~> 1.3.2)
|
86
|
+
rake (>= 0.8.7)
|
87
|
+
rdoc (~> 3.4)
|
88
|
+
thor (>= 0.14.6, < 2.0)
|
89
|
+
rake (10.3.2)
|
90
|
+
rdoc (3.12.2)
|
91
|
+
json (~> 1.4)
|
92
|
+
redis (3.1.0)
|
93
|
+
redis-scripting (1.0.1)
|
94
|
+
redis (>= 3.0)
|
95
|
+
rspec (3.1.0)
|
96
|
+
rspec-core (~> 3.1.0)
|
97
|
+
rspec-expectations (~> 3.1.0)
|
98
|
+
rspec-mocks (~> 3.1.0)
|
99
|
+
rspec-core (3.1.5)
|
100
|
+
rspec-support (~> 3.1.0)
|
101
|
+
rspec-expectations (3.1.2)
|
102
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
103
|
+
rspec-support (~> 3.1.0)
|
104
|
+
rspec-mocks (3.1.2)
|
105
|
+
rspec-support (~> 3.1.0)
|
106
|
+
rspec-support (3.1.1)
|
107
|
+
rufus-scheduler (2.0.6)
|
108
|
+
slop (3.6.0)
|
109
|
+
sprockets (2.2.2)
|
110
|
+
hike (~> 1.2)
|
111
|
+
multi_json (~> 1.0)
|
112
|
+
rack (~> 1.0)
|
113
|
+
tilt (~> 1.1, != 1.3.0)
|
114
|
+
syck (1.0.4)
|
115
|
+
test_after_commit (0.3.0)
|
116
|
+
activerecord (>= 3.2)
|
117
|
+
thor (0.19.1)
|
118
|
+
tilt (1.4.1)
|
119
|
+
timecop (0.7.1)
|
120
|
+
treetop (1.4.15)
|
121
|
+
polyglot
|
122
|
+
polyglot (>= 0.3.1)
|
123
|
+
tzinfo (0.3.41)
|
124
|
+
wwtd (0.5.5)
|
125
|
+
|
126
|
+
PLATFORMS
|
127
|
+
ruby
|
128
|
+
|
129
|
+
DEPENDENCIES
|
130
|
+
bump
|
131
|
+
canvas-jobs!
|
132
|
+
database_cleaner
|
133
|
+
pg
|
134
|
+
pry
|
135
|
+
rails (~> 3.2.19)
|
136
|
+
rake
|
137
|
+
rspec
|
138
|
+
test_after_commit
|
139
|
+
timecop
|
140
|
+
wwtd
|
@@ -0,0 +1,128 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.0)
|
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
|
+
syck
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
actionmailer (4.0.10)
|
16
|
+
actionpack (= 4.0.10)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
actionpack (4.0.10)
|
19
|
+
activesupport (= 4.0.10)
|
20
|
+
builder (~> 3.1.0)
|
21
|
+
erubis (~> 2.7.0)
|
22
|
+
rack (~> 1.5.2)
|
23
|
+
rack-test (~> 0.6.2)
|
24
|
+
activemodel (4.0.10)
|
25
|
+
activesupport (= 4.0.10)
|
26
|
+
builder (~> 3.1.0)
|
27
|
+
activerecord (4.0.10)
|
28
|
+
activemodel (= 4.0.10)
|
29
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
30
|
+
activesupport (= 4.0.10)
|
31
|
+
arel (~> 4.0.0)
|
32
|
+
activerecord-deprecated_finders (1.0.3)
|
33
|
+
activesupport (4.0.10)
|
34
|
+
i18n (~> 0.6, >= 0.6.9)
|
35
|
+
minitest (~> 4.2)
|
36
|
+
multi_json (~> 1.3)
|
37
|
+
thread_safe (~> 0.1)
|
38
|
+
tzinfo (~> 0.3.37)
|
39
|
+
after_transaction_commit (1.0.1)
|
40
|
+
activerecord (>= 3.2)
|
41
|
+
arel (4.0.2)
|
42
|
+
builder (3.1.4)
|
43
|
+
bump (0.5.0)
|
44
|
+
coderay (1.1.0)
|
45
|
+
database_cleaner (1.3.0)
|
46
|
+
diff-lcs (1.2.5)
|
47
|
+
erubis (2.7.0)
|
48
|
+
hike (1.2.3)
|
49
|
+
i18n (0.6.11)
|
50
|
+
mail (2.6.1)
|
51
|
+
mime-types (>= 1.16, < 3)
|
52
|
+
method_source (0.8.2)
|
53
|
+
mime-types (2.3)
|
54
|
+
minitest (4.7.5)
|
55
|
+
multi_json (1.10.1)
|
56
|
+
pg (0.17.1)
|
57
|
+
pry (0.10.1)
|
58
|
+
coderay (~> 1.1.0)
|
59
|
+
method_source (~> 0.8.1)
|
60
|
+
slop (~> 3.4)
|
61
|
+
rack (1.5.2)
|
62
|
+
rack-test (0.6.2)
|
63
|
+
rack (>= 1.0)
|
64
|
+
rails (4.0.10)
|
65
|
+
actionmailer (= 4.0.10)
|
66
|
+
actionpack (= 4.0.10)
|
67
|
+
activerecord (= 4.0.10)
|
68
|
+
activesupport (= 4.0.10)
|
69
|
+
bundler (>= 1.3.0, < 2.0)
|
70
|
+
railties (= 4.0.10)
|
71
|
+
sprockets-rails (~> 2.0)
|
72
|
+
railties (4.0.10)
|
73
|
+
actionpack (= 4.0.10)
|
74
|
+
activesupport (= 4.0.10)
|
75
|
+
rake (>= 0.8.7)
|
76
|
+
thor (>= 0.18.1, < 2.0)
|
77
|
+
rake (10.3.2)
|
78
|
+
redis (3.1.0)
|
79
|
+
redis-scripting (1.0.1)
|
80
|
+
redis (>= 3.0)
|
81
|
+
rspec (3.1.0)
|
82
|
+
rspec-core (~> 3.1.0)
|
83
|
+
rspec-expectations (~> 3.1.0)
|
84
|
+
rspec-mocks (~> 3.1.0)
|
85
|
+
rspec-core (3.1.5)
|
86
|
+
rspec-support (~> 3.1.0)
|
87
|
+
rspec-expectations (3.1.2)
|
88
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
89
|
+
rspec-support (~> 3.1.0)
|
90
|
+
rspec-mocks (3.1.2)
|
91
|
+
rspec-support (~> 3.1.0)
|
92
|
+
rspec-support (3.1.1)
|
93
|
+
rufus-scheduler (2.0.6)
|
94
|
+
slop (3.6.0)
|
95
|
+
sprockets (2.12.2)
|
96
|
+
hike (~> 1.2)
|
97
|
+
multi_json (~> 1.0)
|
98
|
+
rack (~> 1.0)
|
99
|
+
tilt (~> 1.1, != 1.3.0)
|
100
|
+
sprockets-rails (2.1.4)
|
101
|
+
actionpack (>= 3.0)
|
102
|
+
activesupport (>= 3.0)
|
103
|
+
sprockets (~> 2.8)
|
104
|
+
syck (1.0.4)
|
105
|
+
test_after_commit (0.3.0)
|
106
|
+
activerecord (>= 3.2)
|
107
|
+
thor (0.19.1)
|
108
|
+
thread_safe (0.3.4)
|
109
|
+
tilt (1.4.1)
|
110
|
+
timecop (0.7.1)
|
111
|
+
tzinfo (0.3.41)
|
112
|
+
wwtd (0.5.5)
|
113
|
+
|
114
|
+
PLATFORMS
|
115
|
+
ruby
|
116
|
+
|
117
|
+
DEPENDENCIES
|
118
|
+
bump
|
119
|
+
canvas-jobs!
|
120
|
+
database_cleaner
|
121
|
+
pg
|
122
|
+
pry
|
123
|
+
rails (~> 4.0.10)
|
124
|
+
rake
|
125
|
+
rspec
|
126
|
+
test_after_commit
|
127
|
+
timecop
|
128
|
+
wwtd
|
@@ -0,0 +1,134 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.0)
|
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
|
+
syck
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
actionmailer (4.1.6)
|
16
|
+
actionpack (= 4.1.6)
|
17
|
+
actionview (= 4.1.6)
|
18
|
+
mail (~> 2.5, >= 2.5.4)
|
19
|
+
actionpack (4.1.6)
|
20
|
+
actionview (= 4.1.6)
|
21
|
+
activesupport (= 4.1.6)
|
22
|
+
rack (~> 1.5.2)
|
23
|
+
rack-test (~> 0.6.2)
|
24
|
+
actionview (4.1.6)
|
25
|
+
activesupport (= 4.1.6)
|
26
|
+
builder (~> 3.1)
|
27
|
+
erubis (~> 2.7.0)
|
28
|
+
activemodel (4.1.6)
|
29
|
+
activesupport (= 4.1.6)
|
30
|
+
builder (~> 3.1)
|
31
|
+
activerecord (4.1.6)
|
32
|
+
activemodel (= 4.1.6)
|
33
|
+
activesupport (= 4.1.6)
|
34
|
+
arel (~> 5.0.0)
|
35
|
+
activesupport (4.1.6)
|
36
|
+
i18n (~> 0.6, >= 0.6.9)
|
37
|
+
json (~> 1.7, >= 1.7.7)
|
38
|
+
minitest (~> 5.1)
|
39
|
+
thread_safe (~> 0.1)
|
40
|
+
tzinfo (~> 1.1)
|
41
|
+
after_transaction_commit (1.0.1)
|
42
|
+
activerecord (>= 3.2)
|
43
|
+
arel (5.0.1.20140414130214)
|
44
|
+
builder (3.2.2)
|
45
|
+
bump (0.5.0)
|
46
|
+
coderay (1.1.0)
|
47
|
+
database_cleaner (1.3.0)
|
48
|
+
diff-lcs (1.2.5)
|
49
|
+
erubis (2.7.0)
|
50
|
+
hike (1.2.3)
|
51
|
+
i18n (0.6.11)
|
52
|
+
json (1.8.1)
|
53
|
+
mail (2.6.1)
|
54
|
+
mime-types (>= 1.16, < 3)
|
55
|
+
method_source (0.8.2)
|
56
|
+
mime-types (2.3)
|
57
|
+
minitest (5.4.2)
|
58
|
+
multi_json (1.10.1)
|
59
|
+
pg (0.17.1)
|
60
|
+
pry (0.10.1)
|
61
|
+
coderay (~> 1.1.0)
|
62
|
+
method_source (~> 0.8.1)
|
63
|
+
slop (~> 3.4)
|
64
|
+
rack (1.5.2)
|
65
|
+
rack-test (0.6.2)
|
66
|
+
rack (>= 1.0)
|
67
|
+
rails (4.1.6)
|
68
|
+
actionmailer (= 4.1.6)
|
69
|
+
actionpack (= 4.1.6)
|
70
|
+
actionview (= 4.1.6)
|
71
|
+
activemodel (= 4.1.6)
|
72
|
+
activerecord (= 4.1.6)
|
73
|
+
activesupport (= 4.1.6)
|
74
|
+
bundler (>= 1.3.0, < 2.0)
|
75
|
+
railties (= 4.1.6)
|
76
|
+
sprockets-rails (~> 2.0)
|
77
|
+
railties (4.1.6)
|
78
|
+
actionpack (= 4.1.6)
|
79
|
+
activesupport (= 4.1.6)
|
80
|
+
rake (>= 0.8.7)
|
81
|
+
thor (>= 0.18.1, < 2.0)
|
82
|
+
rake (10.3.2)
|
83
|
+
redis (3.1.0)
|
84
|
+
redis-scripting (1.0.1)
|
85
|
+
redis (>= 3.0)
|
86
|
+
rspec (3.1.0)
|
87
|
+
rspec-core (~> 3.1.0)
|
88
|
+
rspec-expectations (~> 3.1.0)
|
89
|
+
rspec-mocks (~> 3.1.0)
|
90
|
+
rspec-core (3.1.5)
|
91
|
+
rspec-support (~> 3.1.0)
|
92
|
+
rspec-expectations (3.1.2)
|
93
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
94
|
+
rspec-support (~> 3.1.0)
|
95
|
+
rspec-mocks (3.1.2)
|
96
|
+
rspec-support (~> 3.1.0)
|
97
|
+
rspec-support (3.1.1)
|
98
|
+
rufus-scheduler (2.0.6)
|
99
|
+
slop (3.6.0)
|
100
|
+
sprockets (2.12.2)
|
101
|
+
hike (~> 1.2)
|
102
|
+
multi_json (~> 1.0)
|
103
|
+
rack (~> 1.0)
|
104
|
+
tilt (~> 1.1, != 1.3.0)
|
105
|
+
sprockets-rails (2.1.4)
|
106
|
+
actionpack (>= 3.0)
|
107
|
+
activesupport (>= 3.0)
|
108
|
+
sprockets (~> 2.8)
|
109
|
+
syck (1.0.4)
|
110
|
+
test_after_commit (0.3.0)
|
111
|
+
activerecord (>= 3.2)
|
112
|
+
thor (0.19.1)
|
113
|
+
thread_safe (0.3.4)
|
114
|
+
tilt (1.4.1)
|
115
|
+
timecop (0.7.1)
|
116
|
+
tzinfo (1.2.2)
|
117
|
+
thread_safe (~> 0.1)
|
118
|
+
wwtd (0.5.5)
|
119
|
+
|
120
|
+
PLATFORMS
|
121
|
+
ruby
|
122
|
+
|
123
|
+
DEPENDENCIES
|
124
|
+
bump
|
125
|
+
canvas-jobs!
|
126
|
+
database_cleaner
|
127
|
+
pg
|
128
|
+
pry
|
129
|
+
rails (~> 4.1.6)
|
130
|
+
rake
|
131
|
+
rspec
|
132
|
+
test_after_commit
|
133
|
+
timecop
|
134
|
+
wwtd
|
@@ -0,0 +1,159 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
canvas-jobs (0.9.0)
|
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
|
+
syck
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
actionmailer (4.2.0.beta2)
|
16
|
+
actionpack (= 4.2.0.beta2)
|
17
|
+
actionview (= 4.2.0.beta2)
|
18
|
+
activejob (= 4.2.0.beta2)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
21
|
+
actionpack (4.2.0.beta2)
|
22
|
+
actionview (= 4.2.0.beta2)
|
23
|
+
activesupport (= 4.2.0.beta2)
|
24
|
+
rack (~> 1.6.0.beta)
|
25
|
+
rack-test (~> 0.6.2)
|
26
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
28
|
+
actionview (4.2.0.beta2)
|
29
|
+
activesupport (= 4.2.0.beta2)
|
30
|
+
builder (~> 3.1)
|
31
|
+
erubis (~> 2.7.0)
|
32
|
+
rails-dom-testing (~> 1.0, >= 1.0.3)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
34
|
+
activejob (4.2.0.beta2)
|
35
|
+
activesupport (= 4.2.0.beta2)
|
36
|
+
globalid (>= 0.3.0)
|
37
|
+
activemodel (4.2.0.beta2)
|
38
|
+
activesupport (= 4.2.0.beta2)
|
39
|
+
builder (~> 3.1)
|
40
|
+
activerecord (4.2.0.beta2)
|
41
|
+
activemodel (= 4.2.0.beta2)
|
42
|
+
activesupport (= 4.2.0.beta2)
|
43
|
+
arel (>= 6.0.0.beta1, < 6.1)
|
44
|
+
activesupport (4.2.0.beta2)
|
45
|
+
i18n (>= 0.7.0.beta1, < 0.8)
|
46
|
+
json (~> 1.7, >= 1.7.7)
|
47
|
+
minitest (~> 5.1)
|
48
|
+
thread_safe (~> 0.1)
|
49
|
+
tzinfo (~> 1.1)
|
50
|
+
after_transaction_commit (1.0.1)
|
51
|
+
activerecord (>= 3.2)
|
52
|
+
arel (6.0.0.beta1)
|
53
|
+
builder (3.2.2)
|
54
|
+
bump (0.5.0)
|
55
|
+
coderay (1.1.0)
|
56
|
+
database_cleaner (1.3.0)
|
57
|
+
diff-lcs (1.2.5)
|
58
|
+
erubis (2.7.0)
|
59
|
+
globalid (0.3.0)
|
60
|
+
activesupport (>= 4.1.0)
|
61
|
+
hike (1.2.3)
|
62
|
+
i18n (0.7.0.beta1)
|
63
|
+
json (1.8.1)
|
64
|
+
loofah (2.0.1)
|
65
|
+
nokogiri (>= 1.5.9)
|
66
|
+
mail (2.6.1)
|
67
|
+
mime-types (>= 1.16, < 3)
|
68
|
+
method_source (0.8.2)
|
69
|
+
mime-types (2.3)
|
70
|
+
mini_portile (0.6.0)
|
71
|
+
minitest (5.4.2)
|
72
|
+
multi_json (1.10.1)
|
73
|
+
nokogiri (1.6.3.1)
|
74
|
+
mini_portile (= 0.6.0)
|
75
|
+
pg (0.17.1)
|
76
|
+
pry (0.10.1)
|
77
|
+
coderay (~> 1.1.0)
|
78
|
+
method_source (~> 0.8.1)
|
79
|
+
slop (~> 3.4)
|
80
|
+
rack (1.6.0.beta)
|
81
|
+
rack-test (0.6.2)
|
82
|
+
rack (>= 1.0)
|
83
|
+
rails (4.2.0.beta2)
|
84
|
+
actionmailer (= 4.2.0.beta2)
|
85
|
+
actionpack (= 4.2.0.beta2)
|
86
|
+
actionview (= 4.2.0.beta2)
|
87
|
+
activejob (= 4.2.0.beta2)
|
88
|
+
activemodel (= 4.2.0.beta2)
|
89
|
+
activerecord (= 4.2.0.beta2)
|
90
|
+
activesupport (= 4.2.0.beta2)
|
91
|
+
bundler (>= 1.3.0, < 2.0)
|
92
|
+
railties (= 4.2.0.beta2)
|
93
|
+
sprockets-rails (~> 3.0.0.beta1)
|
94
|
+
rails-deprecated_sanitizer (1.0.3)
|
95
|
+
activesupport (>= 4.2.0.alpha)
|
96
|
+
rails-dom-testing (1.0.3)
|
97
|
+
activesupport
|
98
|
+
nokogiri (~> 1.6.0)
|
99
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
100
|
+
rails-html-sanitizer (1.0.1)
|
101
|
+
loofah (~> 2.0)
|
102
|
+
railties (4.2.0.beta2)
|
103
|
+
actionpack (= 4.2.0.beta2)
|
104
|
+
activesupport (= 4.2.0.beta2)
|
105
|
+
rake (>= 0.8.7)
|
106
|
+
thor (>= 0.18.1, < 2.0)
|
107
|
+
rake (10.3.2)
|
108
|
+
redis (3.1.0)
|
109
|
+
redis-scripting (1.0.1)
|
110
|
+
redis (>= 3.0)
|
111
|
+
rspec (3.1.0)
|
112
|
+
rspec-core (~> 3.1.0)
|
113
|
+
rspec-expectations (~> 3.1.0)
|
114
|
+
rspec-mocks (~> 3.1.0)
|
115
|
+
rspec-core (3.1.5)
|
116
|
+
rspec-support (~> 3.1.0)
|
117
|
+
rspec-expectations (3.1.2)
|
118
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
119
|
+
rspec-support (~> 3.1.0)
|
120
|
+
rspec-mocks (3.1.2)
|
121
|
+
rspec-support (~> 3.1.0)
|
122
|
+
rspec-support (3.1.1)
|
123
|
+
rufus-scheduler (2.0.6)
|
124
|
+
slop (3.6.0)
|
125
|
+
sprockets (2.12.2)
|
126
|
+
hike (~> 1.2)
|
127
|
+
multi_json (~> 1.0)
|
128
|
+
rack (~> 1.0)
|
129
|
+
tilt (~> 1.1, != 1.3.0)
|
130
|
+
sprockets-rails (3.0.0.beta1)
|
131
|
+
actionpack (>= 4.0)
|
132
|
+
activesupport (>= 4.0)
|
133
|
+
sprockets (~> 2.8)
|
134
|
+
syck (1.0.4)
|
135
|
+
test_after_commit (0.3.0)
|
136
|
+
activerecord (>= 3.2)
|
137
|
+
thor (0.19.1)
|
138
|
+
thread_safe (0.3.4)
|
139
|
+
tilt (1.4.1)
|
140
|
+
timecop (0.7.1)
|
141
|
+
tzinfo (1.2.2)
|
142
|
+
thread_safe (~> 0.1)
|
143
|
+
wwtd (0.5.5)
|
144
|
+
|
145
|
+
PLATFORMS
|
146
|
+
ruby
|
147
|
+
|
148
|
+
DEPENDENCIES
|
149
|
+
bump
|
150
|
+
canvas-jobs!
|
151
|
+
database_cleaner
|
152
|
+
pg
|
153
|
+
pry
|
154
|
+
rails (~> 4.2.0.beta2)
|
155
|
+
rake
|
156
|
+
rspec
|
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.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Luetke
|
@@ -274,9 +274,13 @@ files:
|
|
274
274
|
- lib/delayed_job.rb
|
275
275
|
- spec/active_record_job_spec.rb
|
276
276
|
- spec/gemfiles/32.gemfile
|
277
|
+
- spec/gemfiles/32.gemfile.lock
|
277
278
|
- spec/gemfiles/40.gemfile
|
279
|
+
- spec/gemfiles/40.gemfile.lock
|
278
280
|
- spec/gemfiles/41.gemfile
|
281
|
+
- spec/gemfiles/41.gemfile.lock
|
279
282
|
- spec/gemfiles/42.gemfile
|
283
|
+
- spec/gemfiles/42.gemfile.lock
|
280
284
|
- spec/migrate/20140924140513_add_story_table.rb
|
281
285
|
- spec/redis_job_spec.rb
|
282
286
|
- spec/sample_jobs.rb
|
@@ -313,9 +317,13 @@ summary: Instructure-maintained fork of delayed_job
|
|
313
317
|
test_files:
|
314
318
|
- spec/active_record_job_spec.rb
|
315
319
|
- spec/gemfiles/32.gemfile
|
320
|
+
- spec/gemfiles/32.gemfile.lock
|
316
321
|
- spec/gemfiles/40.gemfile
|
322
|
+
- spec/gemfiles/40.gemfile.lock
|
317
323
|
- spec/gemfiles/41.gemfile
|
324
|
+
- spec/gemfiles/41.gemfile.lock
|
318
325
|
- spec/gemfiles/42.gemfile
|
326
|
+
- spec/gemfiles/42.gemfile.lock
|
319
327
|
- spec/migrate/20140924140513_add_story_table.rb
|
320
328
|
- spec/redis_job_spec.rb
|
321
329
|
- spec/sample_jobs.rb
|