canvas-jobs 0.9.7 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc057ee6906ea7379cfb792230dafc66f213acad
4
- data.tar.gz: 77fe7aa819367091e923f105c9c06f914df3468e
3
+ metadata.gz: 22cdd34ac9d325bbfd08b069013079df62a323b3
4
+ data.tar.gz: c0d43f5fc8f085458d487a1eed0af5ba93e64f83
5
5
  SHA512:
6
- metadata.gz: e9db129cd415d8e054d17aee72e40a7a15cff7b79b81919ee72af8a1c681b09273f23076aa451891283533fa3fa1f6be0cb947a28dd57d000374386aef55a292
7
- data.tar.gz: 3959cbd432ec566d779f88a00dd7c2e777f8a3235b2ae0e7ee3f28a99fe2337590d0be8d2978b6cecd8a7e2abd645bd3a6f56d0fa94de872664bc0d16c78cd7a
6
+ metadata.gz: 9dbe192d28159639e96044f93202c24a85af870ab30b78832d41b740f4950f959c8ed7fee25aade961663ed88c27b40a864cfaef05ed89765c060ff3789bd8cd
7
+ data.tar.gz: 49c960c91b03c2daf7accb7f01d8438d74c82c00ece00691b78b22fb57fdfb5c313bb2db329f34a826ac275707757d83f0c3ca27cbfa0be3021a7173947375c8
@@ -234,7 +234,15 @@ module Delayed
234
234
  strand = options[:strand]
235
235
  transaction_for_singleton(strand) do
236
236
  job = self.where(:strand => strand, :locked_at => nil).order(:id).first
237
- job || self.create(options)
237
+ new_job = new(options)
238
+ if job
239
+ new_job.initialize_defaults
240
+ job.run_at = [job.run_at, new_job.run_at].min
241
+ job.save! if job.changed?
242
+ else
243
+ new_job.save!
244
+ end
245
+ job || new_job
238
246
  end
239
247
  end
240
248
 
@@ -419,6 +419,8 @@ class Job
419
419
  # replace this job with the other for returning.
420
420
  if job_id != self.id
421
421
  singleton = self.class.find(job_id)
422
+ singleton.run_at = [singleton.run_at, run_at].min
423
+ singleton.save! if singleton.changed?
422
424
  COLUMNS.each { |c| send("#{c}=", singleton.send(c)) }
423
425
  end
424
426
  else
@@ -1,3 +1,3 @@
1
1
  module Delayed
2
- VERSION = "0.9.7"
2
+ VERSION = "0.9.8"
3
3
  end
@@ -188,9 +188,12 @@ class Worker
188
188
  previous_tmpdir = ENV['TMPDIR']
189
189
  Thread.current[:running_delayed_job] = job
190
190
 
191
- Dir.mktmpdir("job-#{job.id}-#{self.name.gsub(/[^\w\.]/, '.')}-") do |dir|
191
+ dir = Dir.mktmpdir("job-#{job.id}-#{self.name.gsub(/[^\w\.]/, '.')}-")
192
+ begin
192
193
  ENV['TMPDIR'] = dir
193
194
  yield
195
+ ensure
196
+ FileUtils.remove_entry(dir, true)
194
197
  end
195
198
  ensure
196
199
  ENV['TMPDIR'] = previous_tmpdir
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- canvas-jobs (0.9.5)
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
@@ -315,6 +315,14 @@ shared_examples_for 'a backend' do
315
315
  @job3 = create_job(:singleton => 'myjobs')
316
316
  @job3.should == @job2
317
317
  end
318
+
319
+ it "should update existing job if new job is set to run sooner" do
320
+ job1 = create_job(singleton: 'myjobs', run_at: 1.hour.from_now)
321
+ job2 = create_job(singleton: 'myjobs')
322
+ job2.should == job1
323
+ # it should be scheduled to run immediately
324
+ Delayed::Job.get_and_lock_next_available('w1').should == job1
325
+ end
318
326
  end
319
327
 
320
328
  context 'n_strand' do
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.7
4
+ version: 0.9.8
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-11-03 00:00:00.000000000 Z
12
+ date: 2014-11-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: after_transaction_commit
@@ -265,11 +265,8 @@ files:
265
265
  - spec/gemfiles/32.gemfile
266
266
  - spec/gemfiles/32.gemfile.lock
267
267
  - spec/gemfiles/40.gemfile
268
- - spec/gemfiles/40.gemfile.lock
269
268
  - spec/gemfiles/41.gemfile
270
- - spec/gemfiles/41.gemfile.lock
271
269
  - spec/gemfiles/42.gemfile
272
- - spec/gemfiles/42.gemfile.lock
273
270
  - spec/migrate/20140924140513_add_story_table.rb
274
271
  - spec/redis_job_spec.rb
275
272
  - spec/sample_jobs.rb
@@ -309,11 +306,8 @@ test_files:
309
306
  - spec/gemfiles/32.gemfile
310
307
  - spec/gemfiles/32.gemfile.lock
311
308
  - spec/gemfiles/40.gemfile
312
- - spec/gemfiles/40.gemfile.lock
313
309
  - spec/gemfiles/41.gemfile
314
- - spec/gemfiles/41.gemfile.lock
315
310
  - spec/gemfiles/42.gemfile
316
- - spec/gemfiles/42.gemfile.lock
317
311
  - spec/migrate/20140924140513_add_story_table.rb
318
312
  - spec/redis_job_spec.rb
319
313
  - spec/sample_jobs.rb
@@ -325,3 +319,4 @@ test_files:
325
319
  - spec/shared/worker.rb
326
320
  - spec/shared_jobs_specs.rb
327
321
  - spec/spec_helper.rb
322
+ has_rdoc:
@@ -1,128 +0,0 @@
1
- PATH
2
- remote: ../../
3
- specs:
4
- canvas-jobs (0.9.5)
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.5)
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.5)
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