canvas-jobs 0.9.10 → 0.9.11

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: ad6300227d1380ed20717f92ebd1d628295685b4
4
- data.tar.gz: 6b18acd99fb06b30edcb80ed90fbf117f5f3eab6
3
+ metadata.gz: 64df58c18931c32c09ae1e120ff915e0d7643f77
4
+ data.tar.gz: 7048135401a9e919daa209ab0c3f2944950e1b28
5
5
  SHA512:
6
- metadata.gz: e902946c32dcb6ea0be687066837cc94254714df18e9e7a562e2308d563a24382b300990ef1f59d4c9d1c1b6145984a2c7d0d72d7e967ef4e72516a8bc78a0c6
7
- data.tar.gz: ebf19119b6be32e917de452611ca1f73b555cfb76616a4caa6c09f0db709afe7059ba2bb26e1beb2ac1819d966be41869f0d8a9bc75931a7910c1d69997b582b
6
+ metadata.gz: b64cbe915819f26c25b5127447f3d68bdb5d564719d6a2b4c869eb6269861ff8f1e3fbd7d2f23e2058102e5c9872c13d1b4f50c44fb104b89010f18eafaade39
7
+ data.tar.gz: e7b5c0e267fa4f5281c936f0a826a7795ea725ddf432b252ab14271ea07aa870b915d25dea5f88143474324c8bd9ab293322776120e8973390efa5779040e9b4
@@ -47,11 +47,11 @@ class Pool
47
47
  command = @args.shift
48
48
  case command
49
49
  when 'start'
50
- exit 1 if status(:alive) == :running
50
+ exit 1 if status(print: :alive) == :running
51
51
  daemonize
52
52
  start
53
53
  when 'stop'
54
- stop(options[:kill])
54
+ stop(kill: options[:kill])
55
55
  when 'run'
56
56
  start
57
57
  when 'status'
@@ -61,13 +61,14 @@ class Pool
61
61
  exit 1
62
62
  end
63
63
  when 'restart'
64
- alive = status(false)
64
+ pid = self.pid
65
+ alive = status(pid: pid, print: false)
65
66
  if alive == :running || (options[:kill] && alive == :draining)
66
- stop(options[:kill])
67
+ stop(pid: pid, kill: options[:kill])
67
68
  if options[:kill]
68
- sleep(0.5) while status(false)
69
+ sleep(0.5) while status(pid: pid, print: false)
69
70
  else
70
- sleep(0.5) while status(false) == :running
71
+ sleep(0.5) while status(pid: pid, print: false) == :running
71
72
  end
72
73
  end
73
74
  daemonize
@@ -243,7 +244,15 @@ class Pool
243
244
  Process.setpgrp
244
245
 
245
246
  @daemon = true
246
- File.open(pid_file, 'wb') { |f| f.write(Process.pid.to_s) }
247
+ lock_file = File.open(pid_file, 'wb')
248
+ # someone else is already running; just exit
249
+ unless lock_file.flock(File::LOCK_EX | File::LOCK_NB)
250
+ exit
251
+ end
252
+ at_exit { lock_file.flock(File::LOCK_UN) }
253
+ lock_file.puts(Process.pid.to_s)
254
+ lock_file.flush
255
+
247
256
  # if we blow up so badly that we can't syslog the error, try to send
248
257
  # it somewhere useful
249
258
  last_ditch_logfile = self.last_ditch_logfile || "log/delayed_job.log"
@@ -264,21 +273,14 @@ class Pool
264
273
  File.join(pid_folder, 'delayed_jobs_pool.pid')
265
274
  end
266
275
 
267
- def remove_pid_file
268
- return unless @daemon
269
- pid = File.read(pid_file) if File.file?(pid_file)
270
- if pid.to_i == Process.pid
271
- FileUtils.rm(pid_file)
272
- end
273
- end
274
-
275
276
  def last_ditch_logfile
276
277
  @config['last_ditch_logfile']
277
278
  end
278
279
 
279
- def stop(kill = false)
280
- pid = status(false) && File.read(pid_file).to_i if File.file?(pid_file)
281
- if pid && pid > 0
280
+ def stop(options = {})
281
+ kill = options[:kill]
282
+ pid = options[:pid] || self.pid
283
+ if pid && status(pid: pid, print: false)
282
284
  puts "Stopping pool #{pid}..."
283
285
  signal = 'INT'
284
286
  if kill
@@ -299,10 +301,19 @@ class Pool
299
301
  end
300
302
  end
301
303
 
302
- def status(print = true)
303
- pid = File.read(pid_file) if File.file?(pid_file)
304
- alive = pid && pid.to_i > 0 && (Process.kill(0, pid.to_i) rescue false) && :running
305
- alive ||= :draining if pid.to_i > 0 && Process.kill(0, -pid.to_i) rescue false
304
+ def pid
305
+ if File.file?(pid_file)
306
+ pid = File.read(pid_file).to_i
307
+ pid = nil unless pid > 0
308
+ end
309
+ pid
310
+ end
311
+
312
+ def status(options = { print: true })
313
+ print = options[:print]
314
+ pid = options[:pid] || self.pid
315
+ alive = pid && (Process.kill(0, pid) rescue false) && :running
316
+ alive ||= :draining if pid && Process.kill(0, -pid) rescue false
306
317
  if alive
307
318
  puts "Delayed jobs #{alive}, pool PID: #{pid}" if print
308
319
  else
@@ -1,3 +1,3 @@
1
1
  module Delayed
2
- VERSION = "0.9.10"
2
+ VERSION = "0.9.11"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- canvas-jobs (0.9.9)
4
+ canvas-jobs (0.9.7)
5
5
  after_transaction_commit (= 1.0.1)
6
6
  rails (>= 3.2)
7
7
  redis (> 3.0)
@@ -41,7 +41,7 @@ GEM
41
41
  after_transaction_commit (1.0.1)
42
42
  activerecord (>= 3.2)
43
43
  arel (3.0.3)
44
- builder (3.0.4)
44
+ builder (3.0.0)
45
45
  bump (0.5.0)
46
46
  coderay (1.1.0)
47
47
  database_cleaner (1.3.0)
@@ -86,7 +86,7 @@ GEM
86
86
  rdoc (~> 3.4)
87
87
  thor (>= 0.14.6, < 2.0)
88
88
  rake (10.3.2)
89
- rdoc (3.12.2)
89
+ rdoc (3.12)
90
90
  json (~> 1.4)
91
91
  redis (3.1.0)
92
92
  redis-scripting (1.0.1)
@@ -95,14 +95,14 @@ GEM
95
95
  rspec-core (~> 3.1.0)
96
96
  rspec-expectations (~> 3.1.0)
97
97
  rspec-mocks (~> 3.1.0)
98
- rspec-core (3.1.5)
98
+ rspec-core (3.1.7)
99
99
  rspec-support (~> 3.1.0)
100
100
  rspec-expectations (3.1.2)
101
101
  diff-lcs (>= 1.2.0, < 2.0)
102
102
  rspec-support (~> 3.1.0)
103
- rspec-mocks (3.1.2)
103
+ rspec-mocks (3.1.3)
104
104
  rspec-support (~> 3.1.0)
105
- rspec-support (3.1.1)
105
+ rspec-support (3.1.2)
106
106
  rufus-scheduler (2.0.6)
107
107
  slop (3.6.0)
108
108
  sprockets (2.2.2)
@@ -110,8 +110,8 @@ GEM
110
110
  multi_json (~> 1.0)
111
111
  rack (~> 1.0)
112
112
  tilt (~> 1.1, != 1.3.0)
113
- syck (1.0.4)
114
- test_after_commit (0.3.0)
113
+ syck (1.0.3)
114
+ test_after_commit (0.4.0)
115
115
  activerecord (>= 3.2)
116
116
  thor (0.19.1)
117
117
  tilt (1.4.1)
@@ -119,7 +119,7 @@ GEM
119
119
  treetop (1.4.15)
120
120
  polyglot
121
121
  polyglot (>= 0.3.1)
122
- tzinfo (0.3.41)
122
+ tzinfo (0.3.39)
123
123
  wwtd (0.5.5)
124
124
 
125
125
  PLATFORMS
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.10
4
+ version: 0.9.11
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: 2014-12-12 00:00:00.000000000 Z
12
+ date: 2015-01-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: after_transaction_commit
@@ -99,16 +99,16 @@ dependencies:
99
99
  name: database_cleaner
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - ">="
102
+ - - '='
103
103
  - !ruby/object:Gem::Version
104
- version: '0'
104
+ version: 1.3.0
105
105
  type: :development
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - ">="
109
+ - - '='
110
110
  - !ruby/object:Gem::Version
111
- version: '0'
111
+ version: 1.3.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: pg
114
114
  requirement: !ruby/object:Gem::Requirement
@@ -155,58 +155,58 @@ dependencies:
155
155
  name: rspec
156
156
  requirement: !ruby/object:Gem::Requirement
157
157
  requirements:
158
- - - ">="
158
+ - - '='
159
159
  - !ruby/object:Gem::Version
160
- version: '0'
160
+ version: 3.1.0
161
161
  type: :development
162
162
  prerelease: false
163
163
  version_requirements: !ruby/object:Gem::Requirement
164
164
  requirements:
165
- - - ">="
165
+ - - '='
166
166
  - !ruby/object:Gem::Version
167
- version: '0'
167
+ version: 3.1.0
168
168
  - !ruby/object:Gem::Dependency
169
169
  name: test_after_commit
170
170
  requirement: !ruby/object:Gem::Requirement
171
171
  requirements:
172
- - - ">="
172
+ - - '='
173
173
  - !ruby/object:Gem::Version
174
- version: '0'
174
+ version: 0.4.0
175
175
  type: :development
176
176
  prerelease: false
177
177
  version_requirements: !ruby/object:Gem::Requirement
178
178
  requirements:
179
- - - ">="
179
+ - - '='
180
180
  - !ruby/object:Gem::Version
181
- version: '0'
181
+ version: 0.4.0
182
182
  - !ruby/object:Gem::Dependency
183
183
  name: timecop
184
184
  requirement: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - ">="
186
+ - - '='
187
187
  - !ruby/object:Gem::Version
188
- version: '0'
188
+ version: 0.7.1
189
189
  type: :development
190
190
  prerelease: false
191
191
  version_requirements: !ruby/object:Gem::Requirement
192
192
  requirements:
193
- - - ">="
193
+ - - '='
194
194
  - !ruby/object:Gem::Version
195
- version: '0'
195
+ version: 0.7.1
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: wwtd
198
198
  requirement: !ruby/object:Gem::Requirement
199
199
  requirements:
200
- - - ">="
200
+ - - '='
201
201
  - !ruby/object:Gem::Version
202
- version: '0'
202
+ version: 0.7.0
203
203
  type: :development
204
204
  prerelease: false
205
205
  version_requirements: !ruby/object:Gem::Requirement
206
206
  requirements:
207
- - - ">="
207
+ - - '='
208
208
  - !ruby/object:Gem::Version
209
- version: '0'
209
+ version: 0.7.0
210
210
  description:
211
211
  email:
212
212
  - brianp@instructure.com
@@ -266,11 +266,8 @@ files:
266
266
  - spec/gemfiles/32.gemfile
267
267
  - spec/gemfiles/32.gemfile.lock
268
268
  - spec/gemfiles/40.gemfile
269
- - spec/gemfiles/40.gemfile.lock
270
269
  - spec/gemfiles/41.gemfile
271
- - spec/gemfiles/41.gemfile.lock
272
270
  - spec/gemfiles/42.gemfile
273
- - spec/gemfiles/42.gemfile.lock
274
271
  - spec/migrate/20140924140513_add_story_table.rb
275
272
  - spec/redis_job_spec.rb
276
273
  - spec/sample_jobs.rb
@@ -301,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
301
298
  version: '0'
302
299
  requirements: []
303
300
  rubyforge_project:
304
- rubygems_version: 2.4.4
301
+ rubygems_version: 2.4.5
305
302
  signing_key:
306
303
  specification_version: 4
307
304
  summary: Instructure-maintained fork of delayed_job
@@ -310,11 +307,8 @@ test_files:
310
307
  - spec/gemfiles/32.gemfile
311
308
  - spec/gemfiles/32.gemfile.lock
312
309
  - spec/gemfiles/40.gemfile
313
- - spec/gemfiles/40.gemfile.lock
314
310
  - spec/gemfiles/41.gemfile
315
- - spec/gemfiles/41.gemfile.lock
316
311
  - spec/gemfiles/42.gemfile
317
- - spec/gemfiles/42.gemfile.lock
318
312
  - spec/migrate/20140924140513_add_story_table.rb
319
313
  - spec/redis_job_spec.rb
320
314
  - spec/sample_jobs.rb
@@ -326,4 +320,3 @@ test_files:
326
320
  - spec/shared/worker.rb
327
321
  - spec/shared_jobs_specs.rb
328
322
  - spec/spec_helper.rb
329
- has_rdoc:
@@ -1,128 +0,0 @@
1
- PATH
2
- remote: ../../
3
- specs:
4
- canvas-jobs (0.9.9)
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.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
- syck (1.0.4)
104
- test_after_commit (0.3.0)
105
- activerecord (>= 3.2)
106
- thor (0.19.1)
107
- thread_safe (0.3.4)
108
- tilt (1.4.1)
109
- timecop (0.7.1)
110
- tzinfo (0.3.41)
111
- wwtd (0.5.5)
112
-
113
- PLATFORMS
114
- ruby
115
-
116
- DEPENDENCIES
117
- bump
118
- canvas-jobs!
119
- database_cleaner
120
- pg
121
- pry
122
- rails (~> 4.0.10)
123
- rake
124
- rspec
125
- syck
126
- test_after_commit
127
- timecop
128
- wwtd
@@ -1,134 +0,0 @@
1
- PATH
2
- remote: ../../
3
- specs:
4
- canvas-jobs (0.9.9)
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
- syck (1.0.4)
109
- test_after_commit (0.3.0)
110
- activerecord (>= 3.2)
111
- thor (0.19.1)
112
- thread_safe (0.3.4)
113
- tilt (1.4.1)
114
- timecop (0.7.1)
115
- tzinfo (1.2.2)
116
- thread_safe (~> 0.1)
117
- wwtd (0.5.5)
118
-
119
- PLATFORMS
120
- ruby
121
-
122
- DEPENDENCIES
123
- bump
124
- canvas-jobs!
125
- database_cleaner
126
- pg
127
- pry
128
- rails (~> 4.1.6)
129
- rake
130
- rspec
131
- syck
132
- test_after_commit
133
- timecop
134
- wwtd
@@ -1,159 +0,0 @@
1
- PATH
2
- remote: ../../
3
- specs:
4
- canvas-jobs (0.9.9)
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