canvas-jobs 0.9.8 → 0.9.9

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: 22cdd34ac9d325bbfd08b069013079df62a323b3
4
- data.tar.gz: c0d43f5fc8f085458d487a1eed0af5ba93e64f83
3
+ metadata.gz: ad93c34959f9fd5742ab07582c6708cb6701febe
4
+ data.tar.gz: e10385f439aa7f34293c545b6bb3a094a645b0ba
5
5
  SHA512:
6
- metadata.gz: 9dbe192d28159639e96044f93202c24a85af870ab30b78832d41b740f4950f959c8ed7fee25aade961663ed88c27b40a864cfaef05ed89765c060ff3789bd8cd
7
- data.tar.gz: 49c960c91b03c2daf7accb7f01d8438d74c82c00ece00691b78b22fb57fdfb5c313bb2db329f34a826ac275707757d83f0c3ca27cbfa0be3021a7173947375c8
6
+ metadata.gz: b02c7e200b1e9b4e337cdecee326cc49652299bea939fa74fba97ac62c010b2a97d3289a5db048349a4ad09d992070f368a9785203bf15755565394e81d7d579
7
+ data.tar.gz: d24c55eef5e03eed2398062c9e16fb850b8cec4344011aeeebc64ffc8bca400b4f444b8a7b3fc7477591f8a97fd01596dffd7072671f3e054d4c9e04bc746df7
@@ -1,9 +1,9 @@
1
1
  class CreateDelayedJobs < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  raise("#{connection.adapter_name} is not supported for delayed jobs queue") unless connection.adapter_name == 'PostgreSQL'
8
8
 
9
9
  create_table :delayed_jobs do |table|
@@ -34,7 +34,7 @@ class CreateDelayedJobs < ActiveRecord::Migration
34
34
  add_index :delayed_jobs, [:queue], :name => 'delayed_jobs_queue'
35
35
  end
36
36
 
37
- def self.down
37
+ def down
38
38
  drop_table :delayed_jobs
39
39
  end
40
40
  end
@@ -1,14 +1,14 @@
1
1
  class AddDelayedJobsTag < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  add_column :delayed_jobs, :tag, :string
8
8
  add_index :delayed_jobs, [:tag]
9
9
  end
10
10
 
11
- def self.down
11
+ def down
12
12
  remove_column :delayed_jobs, :tag
13
13
  end
14
14
  end
@@ -1,13 +1,13 @@
1
1
  class AddDelayedJobsMaxAttempts < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  add_column :delayed_jobs, :max_attempts, :integer
8
8
  end
9
9
 
10
- def self.down
10
+ def down
11
11
  remove_column :delayed_jobs, :max_attempts
12
12
  end
13
13
  end
@@ -1,14 +1,14 @@
1
1
  class AddDelayedJobsStrand < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  add_column :delayed_jobs, :strand, :string
8
8
  add_index :delayed_jobs, :strand
9
9
  end
10
10
 
11
- def self.down
11
+ def down
12
12
  remove_column :delayed_jobs, :strand
13
13
  end
14
14
  end
@@ -1,9 +1,9 @@
1
1
  class CleanupDelayedJobsIndexes < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  case connection.adapter_name
8
8
  when 'PostgreSQL'
9
9
  # "nulls first" syntax is postgresql specific, and allows for more
@@ -18,7 +18,7 @@ class CleanupDelayedJobsIndexes < ActiveRecord::Migration
18
18
  remove_index :delayed_jobs, :name => 'delayed_jobs_priority'
19
19
  end
20
20
 
21
- def self.down
21
+ def down
22
22
  remove_index :delayed_jobs, :name => 'get_delayed_jobs_index'
23
23
  add_index :delayed_jobs, [:priority, :run_at], :name => 'delayed_jobs_priority'
24
24
  add_index :delayed_jobs, [:queue], :name => 'delayed_jobs_queue'
@@ -1,9 +1,9 @@
1
1
  class OptimizeDelayedJobs < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  create_table :failed_jobs do |t|
8
8
  t.integer "priority", :default => 0
9
9
  t.integer "attempts", :default => 0
@@ -34,7 +34,7 @@ class OptimizeDelayedJobs < ActiveRecord::Migration
34
34
  end
35
35
  end
36
36
 
37
- def self.down
37
+ def down
38
38
  raise ActiveRecord::IrreversibleMigration
39
39
  end
40
40
  end
@@ -1,9 +1,9 @@
1
1
  class AddDelayedJobsNextInStrand < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  remove_index :delayed_jobs, :name => 'index_delayed_jobs_for_get_next'
8
8
 
9
9
  add_column :delayed_jobs, :next_in_strand, :boolean, :default => true, :null => false
@@ -39,7 +39,7 @@ class AddDelayedJobsNextInStrand < ActiveRecord::Migration
39
39
  execute(%{UPDATE delayed_jobs SET next_in_strand = 'f' WHERE strand IS NOT NULL AND id <> (SELECT id FROM delayed_jobs j2 WHERE j2.strand = delayed_jobs.strand ORDER BY j2.strand, j2.id ASC LIMIT 1)})
40
40
  end
41
41
 
42
- def self.down
42
+ def down
43
43
  execute %{DROP TRIGGER delayed_jobs_before_insert_row_tr ON delayed_jobs}
44
44
  execute %{DROP FUNCTION delayed_jobs_before_insert_row_tr_fn()}
45
45
  execute %{DROP TRIGGER delayed_jobs_after_delete_row_tr ON delayed_jobs}
@@ -1,9 +1,9 @@
1
1
  class DelayedJobsDeleteTriggerLockForUpdate < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  if connection.adapter_name == 'PostgreSQL'
8
8
  execute(<<-CODE)
9
9
  CREATE OR REPLACE FUNCTION delayed_jobs_after_delete_row_tr_fn () RETURNS trigger AS $$
@@ -16,7 +16,7 @@ class DelayedJobsDeleteTriggerLockForUpdate < ActiveRecord::Migration
16
16
  end
17
17
  end
18
18
 
19
- def self.down
19
+ def down
20
20
  if connection.adapter_name == 'PostgreSQL'
21
21
  execute(<<-CODE)
22
22
  CREATE OR REPLACE FUNCTION delayed_jobs_after_delete_row_tr_fn () RETURNS trigger AS $$
@@ -1,15 +1,15 @@
1
1
  class DropPsqlJobsPopFn < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  if connection.adapter_name == 'PostgreSQL'
8
8
  connection.execute("DROP FUNCTION IF EXISTS pop_from_delayed_jobs(varchar, varchar, integer, integer, timestamp without time zone)")
9
9
  end
10
10
  end
11
11
 
12
- def self.down
12
+ def down
13
13
  raise ActiveRecord::IrreversibleMigration
14
14
  end
15
15
  end
@@ -1,9 +1,9 @@
1
1
  class DelayedJobsUseAdvisoryLocks < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  # use an advisory lock based on the name of the strand, instead of locking the whole table
8
8
  # note that we're using half of the md5, so collisions are possible, but we don't really
9
9
  # care because that would just be the old behavior, whereas for the most part locking will
@@ -51,7 +51,7 @@ class DelayedJobsUseAdvisoryLocks < ActiveRecord::Migration
51
51
  end
52
52
  end
53
53
 
54
- def self.down
54
+ def down
55
55
  if connection.adapter_name == 'PostgreSQL'
56
56
  execute(<<-CODE)
57
57
  CREATE OR REPLACE FUNCTION delayed_jobs_before_insert_row_tr_fn () RETURNS trigger AS $$
@@ -1,15 +1,15 @@
1
1
  class IndexJobsOnLockedBy < ActiveRecord::Migration
2
2
  disable_ddl_transaction! if respond_to?(:disable_ddl_transaction!)
3
3
 
4
- def self.connection
4
+ def connection
5
5
  Delayed::Backend::ActiveRecord::Job.connection
6
6
  end
7
7
 
8
- def self.up
8
+ def up
9
9
  add_index :delayed_jobs, :locked_by, :algorithm => :concurrently, :where => "locked_by IS NOT NULL"
10
10
  end
11
11
 
12
- def self.down
12
+ def down
13
13
  remove_index :delayed_jobs, :locked_by
14
14
  end
15
15
  end
@@ -1,15 +1,15 @@
1
1
  class AddJobsRunAtIndex < ActiveRecord::Migration
2
2
  disable_ddl_transaction! if respond_to?(:disable_ddl_transaction!)
3
3
 
4
- def self.connection
4
+ def connection
5
5
  Delayed::Backend::ActiveRecord::Job.connection
6
6
  end
7
7
 
8
- def self.up
8
+ def up
9
9
  add_index :delayed_jobs, %w[run_at tag], :algorithm => :concurrently
10
10
  end
11
11
 
12
- def self.down
12
+ def down
13
13
  remove_index :delayed_jobs, :name => "index_delayed_jobs_on_run_at_and_tag"
14
14
  end
15
15
  end
@@ -1,13 +1,13 @@
1
1
  class ChangeDelayedJobsHandlerToText < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  change_column :delayed_jobs, :handler, :text
8
8
  end
9
9
 
10
- def self.down
10
+ def down
11
11
  change_column :delayed_jobs, :handler, :string, :limit => 500.kilobytes
12
12
  end
13
13
  end
@@ -1,13 +1,13 @@
1
1
  class AddFailedJobsOriginalJobId < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  add_column :failed_jobs, :original_job_id, :integer, limit: 8
8
8
  end
9
9
 
10
- def self.down
10
+ def down
11
11
  remove_column :failed_jobs, :original_job_id
12
12
  end
13
13
  end
@@ -1,13 +1,13 @@
1
1
  class CopyFailedJobsOriginalId < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  # this is a smaller, less frequently accessed table, so we just update all at once
8
8
  Delayed::Backend::ActiveRecord::Job::Failed.where("original_job_id is null").update_all("original_job_id = original_id")
9
9
  end
10
10
 
11
- def self.down
11
+ def down
12
12
  end
13
13
  end
@@ -1,13 +1,13 @@
1
1
  class DropFailedJobsOriginalId < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Backend::ActiveRecord::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  remove_column :failed_jobs, :original_id
8
8
  end
9
9
 
10
- def self.down
10
+ def down
11
11
  add_column :failed_jobs, :original_id, :integer, limit: 8
12
12
  end
13
13
  end
@@ -1,14 +1,14 @@
1
1
  class AddSourceToJobs < ActiveRecord::Migration
2
- def self.connection
2
+ def connection
3
3
  Delayed::Job.connection
4
4
  end
5
5
 
6
- def self.up
6
+ def up
7
7
  add_column :delayed_jobs, :source, :string
8
8
  add_column :failed_jobs, :source, :string
9
9
  end
10
10
 
11
- def self.down
11
+ def down
12
12
  remove_column :delayed_jobs, :source
13
13
  remove_column :failed_jobs, :source
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module Delayed
2
- VERSION = "0.9.8"
2
+ VERSION = "0.9.9"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- canvas-jobs (0.9.7)
4
+ canvas-jobs (0.9.8)
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.0)
44
+ builder (3.0.4)
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)
89
+ rdoc (3.12.2)
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.7)
98
+ rspec-core (3.1.5)
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.3)
103
+ rspec-mocks (3.1.2)
104
104
  rspec-support (~> 3.1.0)
105
- rspec-support (3.1.2)
105
+ rspec-support (3.1.1)
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.3)
114
- test_after_commit (0.4.0)
113
+ syck (1.0.4)
114
+ test_after_commit (0.3.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.39)
122
+ tzinfo (0.3.41)
123
123
  wwtd (0.5.5)
124
124
 
125
125
  PLATFORMS
@@ -0,0 +1,128 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ canvas-jobs (0.9.8)
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
@@ -0,0 +1,134 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ canvas-jobs (0.9.8)
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
@@ -0,0 +1,157 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ canvas-jobs (0.9.8)
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
+ test_after_commit (0.3.0)
134
+ activerecord (>= 3.2)
135
+ thor (0.19.1)
136
+ thread_safe (0.3.4)
137
+ tilt (1.4.1)
138
+ timecop (0.7.1)
139
+ tzinfo (1.2.2)
140
+ thread_safe (~> 0.1)
141
+ wwtd (0.5.5)
142
+
143
+ PLATFORMS
144
+ ruby
145
+
146
+ DEPENDENCIES
147
+ bump
148
+ canvas-jobs!
149
+ database_cleaner
150
+ pg
151
+ pry
152
+ rails (~> 4.2.0.beta2)
153
+ rake
154
+ rspec
155
+ test_after_commit
156
+ timecop
157
+ 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.8
4
+ version: 0.9.9
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-07 00:00:00.000000000 Z
12
+ date: 2014-11-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: after_transaction_commit
@@ -265,8 +265,11 @@ 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
268
269
  - spec/gemfiles/41.gemfile
270
+ - spec/gemfiles/41.gemfile.lock
269
271
  - spec/gemfiles/42.gemfile
272
+ - spec/gemfiles/42.gemfile.lock
270
273
  - spec/migrate/20140924140513_add_story_table.rb
271
274
  - spec/redis_job_spec.rb
272
275
  - spec/sample_jobs.rb
@@ -297,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
300
  version: '0'
298
301
  requirements: []
299
302
  rubyforge_project:
300
- rubygems_version: 2.4.2
303
+ rubygems_version: 2.2.2
301
304
  signing_key:
302
305
  specification_version: 4
303
306
  summary: Instructure-maintained fork of delayed_job
@@ -306,8 +309,11 @@ test_files:
306
309
  - spec/gemfiles/32.gemfile
307
310
  - spec/gemfiles/32.gemfile.lock
308
311
  - spec/gemfiles/40.gemfile
312
+ - spec/gemfiles/40.gemfile.lock
309
313
  - spec/gemfiles/41.gemfile
314
+ - spec/gemfiles/41.gemfile.lock
310
315
  - spec/gemfiles/42.gemfile
316
+ - spec/gemfiles/42.gemfile.lock
311
317
  - spec/migrate/20140924140513_add_story_table.rb
312
318
  - spec/redis_job_spec.rb
313
319
  - spec/sample_jobs.rb
@@ -319,4 +325,3 @@ test_files:
319
325
  - spec/shared/worker.rb
320
326
  - spec/shared_jobs_specs.rb
321
327
  - spec/spec_helper.rb
322
- has_rdoc: