inst-jobs 0.14.2 → 0.14.3

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
- SHA256:
3
- metadata.gz: '08a3e71e94843cd574eff4f01905780b34b311fb44b550a887a95977f7a0d5d8'
4
- data.tar.gz: 61e864932e21ee698c03925f19fc1d53a5dad1c7081ed1b4371044d5c93dd6f3
2
+ SHA1:
3
+ metadata.gz: 1325b688f14109bec5f453614c13e35827c1accd
4
+ data.tar.gz: 6e60b01786ffbb25404b90907a9cdcdda3edee7a
5
5
  SHA512:
6
- metadata.gz: b98b55435c710a9b730f6d5a71077152bd406ca9825d6573c14a1f9f809740e74c2e132847b6e4613d4b7f170da00c98ad14c5a9e5555511c5456a77e3ace6b4
7
- data.tar.gz: c1c314f66714366e96e67c363d53374f2707387ec49c9c460667acf10b6bbf8770ce307973d1eb7adc9b1fb5fd910a8aab5347609adec781913fa618283b69e9
6
+ metadata.gz: '0692f8481410c2066bb951b040b742b1e2a13bea76af8dc55db495c40a4e9a43f1be725e8135b9775899780227e106b3194bd04b469ae24ffb0b5b3487ed104f'
7
+ data.tar.gz: 787fb4c023700ef89fc952bbe307b90329efb228bf6a38e42c77e0e8ec85d975672f0d698446a3c173cb8b5eaf3387821af60a7ac0d27c60a17a4b16aca8af19
@@ -230,8 +230,18 @@ module Delayed
230
230
  updates << "ELSE #{connection.quote(prefetch_owner)} "
231
231
  end
232
232
  updates << "END, locked_at = #{connection.quote(db_time_now)}"
233
- # joins and returning in an update! just bypass AR
234
- query = "UPDATE #{quoted_table_name} SET #{updates} FROM (#{jobs_with_row_number.to_sql}) j2 WHERE j2.id=delayed_jobs.id RETURNING delayed_jobs.*"
233
+
234
+ # Originally this was done with a subquery, but this allows the query planner to
235
+ # side-step the LIMIT. We use a CTE here to force the subquery to be materialized
236
+ # before running the UPDATE.
237
+ #
238
+ # For more details, see:
239
+ # * https://dba.stackexchange.com/a/69497/55285
240
+ # * https://github.com/feikesteenbergen/demos/blob/b7ecee8b2a79bf04cbcd74972e6bfb81903aee5d/bugs/update_limit_bug.txt
241
+ query = "WITH limited_jobs AS (#{jobs_with_row_number.to_sql}) " \
242
+ "UPDATE #{quoted_table_name} SET #{updates} FROM limited_jobs WHERE limited_jobs.id=#{quoted_table_name}.id " \
243
+ "RETURNING #{quoted_table_name}.*"
244
+
235
245
  jobs = find_by_sql(query)
236
246
  # because this is an atomic query, we don't have to return more jobs than we needed
237
247
  # to try and lock them, nor is there a possibility we need to try again because
@@ -1,3 +1,3 @@
1
1
  module Delayed
2
- VERSION = "0.14.2"
2
+ VERSION = "0.14.3"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- inst-jobs (0.13.4)
4
+ inst-jobs (0.14.2)
5
5
  after_transaction_commit (>= 1.0, < 3)
6
6
  rails (>= 4.2)
7
7
  redis (> 3.0)
@@ -11,90 +11,97 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionmailer (4.2.9)
15
- actionpack (= 4.2.9)
16
- actionview (= 4.2.9)
17
- activejob (= 4.2.9)
14
+ actionmailer (4.2.8)
15
+ actionpack (= 4.2.8)
16
+ actionview (= 4.2.8)
17
+ activejob (= 4.2.8)
18
18
  mail (~> 2.5, >= 2.5.4)
19
19
  rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.9)
21
- actionview (= 4.2.9)
22
- activesupport (= 4.2.9)
20
+ actionpack (4.2.8)
21
+ actionview (= 4.2.8)
22
+ activesupport (= 4.2.8)
23
23
  rack (~> 1.6)
24
24
  rack-test (~> 0.6.2)
25
25
  rails-dom-testing (~> 1.0, >= 1.0.5)
26
26
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.9)
28
- activesupport (= 4.2.9)
27
+ actionview (4.2.8)
28
+ activesupport (= 4.2.8)
29
29
  builder (~> 3.1)
30
30
  erubis (~> 2.7.0)
31
31
  rails-dom-testing (~> 1.0, >= 1.0.5)
32
32
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (4.2.9)
34
- activesupport (= 4.2.9)
33
+ activejob (4.2.8)
34
+ activesupport (= 4.2.8)
35
35
  globalid (>= 0.3.0)
36
- activemodel (4.2.9)
37
- activesupport (= 4.2.9)
36
+ activemodel (4.2.8)
37
+ activesupport (= 4.2.8)
38
38
  builder (~> 3.1)
39
- activerecord (4.2.9)
40
- activemodel (= 4.2.9)
41
- activesupport (= 4.2.9)
39
+ activerecord (4.2.8)
40
+ activemodel (= 4.2.8)
41
+ activesupport (= 4.2.8)
42
42
  arel (~> 6.0)
43
- activesupport (4.2.9)
43
+ activesupport (4.2.8)
44
44
  i18n (~> 0.7)
45
45
  minitest (~> 5.1)
46
46
  thread_safe (~> 0.3, >= 0.3.4)
47
47
  tzinfo (~> 1.1)
48
- after_transaction_commit (1.1.2)
48
+ addressable (2.5.2)
49
+ public_suffix (>= 2.0.2, < 4.0)
50
+ after_transaction_commit (1.1.1)
49
51
  activerecord (>= 4.0)
50
52
  arel (6.0.4)
51
- backports (3.8.0)
53
+ backports (3.7.0)
52
54
  builder (3.2.3)
53
- bump (0.5.4)
55
+ bump (0.5.3)
54
56
  byebug (9.0.6)
55
57
  coderay (1.1.1)
56
58
  concurrent-ruby (1.0.5)
57
59
  database_cleaner (1.6.1)
58
60
  diff-lcs (1.3)
59
61
  erubis (2.7.0)
60
- et-orbi (1.0.5)
62
+ et-orbi (1.0.9)
61
63
  tzinfo
62
64
  globalid (0.4.0)
63
65
  activesupport (>= 4.2.0)
64
- i18n (0.8.6)
66
+ httpclient (2.8.3)
67
+ i18n (0.8.1)
68
+ imperium (0.2.4)
69
+ addressable (~> 2.5.0)
70
+ httpclient (~> 2.8)
65
71
  loofah (2.0.3)
66
72
  nokogiri (>= 1.5.9)
67
- mail (2.6.6)
73
+ mail (2.6.4)
68
74
  mime-types (>= 1.16, < 4)
69
75
  method_source (0.8.2)
70
76
  mime-types (3.1)
71
77
  mime-types-data (~> 3.2015)
72
78
  mime-types-data (3.2016.0521)
73
- mini_portile2 (2.2.0)
74
- minitest (5.10.3)
79
+ mini_portile2 (2.1.0)
80
+ minitest (5.10.1)
75
81
  multi_json (1.12.1)
76
- nokogiri (1.8.0)
77
- mini_portile2 (~> 2.2.0)
78
- pg (0.21.0)
82
+ nokogiri (1.7.1)
83
+ mini_portile2 (~> 2.1.0)
84
+ pg (0.20.0)
79
85
  pry (0.10.4)
80
86
  coderay (~> 1.1.0)
81
87
  method_source (~> 0.8.1)
82
88
  slop (~> 3.4)
83
- rack (1.6.8)
89
+ public_suffix (3.0.1)
90
+ rack (1.6.5)
84
91
  rack-protection (1.5.3)
85
92
  rack
86
93
  rack-test (0.6.3)
87
94
  rack (>= 1.0)
88
- rails (4.2.9)
89
- actionmailer (= 4.2.9)
90
- actionpack (= 4.2.9)
91
- actionview (= 4.2.9)
92
- activejob (= 4.2.9)
93
- activemodel (= 4.2.9)
94
- activerecord (= 4.2.9)
95
- activesupport (= 4.2.9)
95
+ rails (4.2.8)
96
+ actionmailer (= 4.2.8)
97
+ actionpack (= 4.2.8)
98
+ actionview (= 4.2.8)
99
+ activejob (= 4.2.8)
100
+ activemodel (= 4.2.8)
101
+ activerecord (= 4.2.8)
102
+ activesupport (= 4.2.8)
96
103
  bundler (>= 1.3.0, < 2.0)
97
- railties (= 4.2.9)
104
+ railties (= 4.2.8)
98
105
  sprockets-rails
99
106
  rails-deprecated_sanitizer (1.0.3)
100
107
  activesupport (>= 4.2.0.alpha)
@@ -104,13 +111,13 @@ GEM
104
111
  rails-deprecated_sanitizer (>= 1.0.1)
105
112
  rails-html-sanitizer (1.0.3)
106
113
  loofah (~> 2.0)
107
- railties (4.2.9)
108
- actionpack (= 4.2.9)
109
- activesupport (= 4.2.9)
114
+ railties (4.2.8)
115
+ actionpack (= 4.2.8)
116
+ activesupport (= 4.2.8)
110
117
  rake (>= 0.8.7)
111
118
  thor (>= 0.18.1, < 2.0)
112
119
  rake (12.0.0)
113
- redis (3.3.3)
120
+ redis (4.0.1)
114
121
  redis-scripting (1.0.1)
115
122
  redis (>= 3.0)
116
123
  rspec (3.4.0)
@@ -151,7 +158,7 @@ GEM
151
158
  activerecord (>= 3.2)
152
159
  thor (0.19.4)
153
160
  thread_safe (0.3.6)
154
- tilt (2.0.8)
161
+ tilt (2.0.7)
155
162
  timecop (0.7.1)
156
163
  tzinfo (1.2.3)
157
164
  thread_safe (~> 0.1)
@@ -165,6 +172,7 @@ DEPENDENCIES
165
172
  bump
166
173
  byebug
167
174
  database_cleaner (= 1.6.1)
175
+ imperium (>= 0.2.3)
168
176
  inst-jobs!
169
177
  pg
170
178
  pry
@@ -179,4 +187,4 @@ DEPENDENCIES
179
187
  wwtd (~> 1.3.0)
180
188
 
181
189
  BUNDLED WITH
182
- 1.15.3
190
+ 1.16.1
@@ -1,115 +1,113 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- inst-jobs (0.13.4)
5
- after_transaction_commit (>= 1.0, < 3)
4
+ inst-jobs (0.12.3)
5
+ after_transaction_commit (~> 1.0)
6
6
  rails (>= 4.2)
7
7
  redis (> 3.0)
8
8
  redis-scripting (~> 1.0.1)
9
- rufus-scheduler (~> 3.4)
9
+ rufus-scheduler (~> 3.3.2)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (5.0.5)
15
- actionpack (= 5.0.5)
14
+ actioncable (5.0.2)
15
+ actionpack (= 5.0.2)
16
16
  nio4r (>= 1.2, < 3.0)
17
17
  websocket-driver (~> 0.6.1)
18
- actionmailer (5.0.5)
19
- actionpack (= 5.0.5)
20
- actionview (= 5.0.5)
21
- activejob (= 5.0.5)
18
+ actionmailer (5.0.2)
19
+ actionpack (= 5.0.2)
20
+ actionview (= 5.0.2)
21
+ activejob (= 5.0.2)
22
22
  mail (~> 2.5, >= 2.5.4)
23
23
  rails-dom-testing (~> 2.0)
24
- actionpack (5.0.5)
25
- actionview (= 5.0.5)
26
- activesupport (= 5.0.5)
24
+ actionpack (5.0.2)
25
+ actionview (= 5.0.2)
26
+ activesupport (= 5.0.2)
27
27
  rack (~> 2.0)
28
28
  rack-test (~> 0.6.3)
29
29
  rails-dom-testing (~> 2.0)
30
30
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
- actionview (5.0.5)
32
- activesupport (= 5.0.5)
31
+ actionview (5.0.2)
32
+ activesupport (= 5.0.2)
33
33
  builder (~> 3.1)
34
34
  erubis (~> 2.7.0)
35
35
  rails-dom-testing (~> 2.0)
36
36
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
- activejob (5.0.5)
38
- activesupport (= 5.0.5)
37
+ activejob (5.0.2)
38
+ activesupport (= 5.0.2)
39
39
  globalid (>= 0.3.6)
40
- activemodel (5.0.5)
41
- activesupport (= 5.0.5)
42
- activerecord (5.0.5)
43
- activemodel (= 5.0.5)
44
- activesupport (= 5.0.5)
40
+ activemodel (5.0.2)
41
+ activesupport (= 5.0.2)
42
+ activerecord (5.0.2)
43
+ activemodel (= 5.0.2)
44
+ activesupport (= 5.0.2)
45
45
  arel (~> 7.0)
46
- activesupport (5.0.5)
46
+ activesupport (5.0.2)
47
47
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
48
  i18n (~> 0.7)
49
49
  minitest (~> 5.1)
50
50
  tzinfo (~> 1.1)
51
- after_transaction_commit (2.0.0)
52
- activerecord (>= 5.0)
51
+ after_transaction_commit (1.1.1)
52
+ activerecord (>= 4.0)
53
53
  arel (7.1.4)
54
- backports (3.8.0)
54
+ backports (3.7.0)
55
55
  builder (3.2.3)
56
- bump (0.5.4)
56
+ bump (0.5.3)
57
57
  byebug (9.0.6)
58
58
  coderay (1.1.1)
59
59
  concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
60
+ database_cleaner (1.3.0)
61
61
  diff-lcs (1.3)
62
62
  erubis (2.7.0)
63
- et-orbi (1.0.5)
64
- tzinfo
65
63
  globalid (0.4.0)
66
64
  activesupport (>= 4.2.0)
67
- i18n (0.8.6)
65
+ i18n (0.8.1)
68
66
  loofah (2.0.3)
69
67
  nokogiri (>= 1.5.9)
70
- mail (2.6.6)
68
+ mail (2.6.4)
71
69
  mime-types (>= 1.16, < 4)
72
70
  method_source (0.8.2)
73
71
  mime-types (3.1)
74
72
  mime-types-data (~> 3.2015)
75
73
  mime-types-data (3.2016.0521)
76
- mini_portile2 (2.2.0)
77
- minitest (5.10.3)
74
+ mini_portile2 (2.1.0)
75
+ minitest (5.10.1)
78
76
  multi_json (1.12.1)
79
77
  mustermann (1.0.0.beta2)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- pg (0.21.0)
78
+ nio4r (2.0.0)
79
+ nokogiri (1.7.1)
80
+ mini_portile2 (~> 2.1.0)
81
+ pg (0.20.0)
84
82
  pry (0.10.4)
85
83
  coderay (~> 1.1.0)
86
84
  method_source (~> 0.8.1)
87
85
  slop (~> 3.4)
88
- rack (2.0.3)
86
+ rack (2.0.1)
89
87
  rack-protection (2.0.0.beta2)
90
88
  rack
91
89
  rack-test (0.6.3)
92
90
  rack (>= 1.0)
93
- rails (5.0.5)
94
- actioncable (= 5.0.5)
95
- actionmailer (= 5.0.5)
96
- actionpack (= 5.0.5)
97
- actionview (= 5.0.5)
98
- activejob (= 5.0.5)
99
- activemodel (= 5.0.5)
100
- activerecord (= 5.0.5)
101
- activesupport (= 5.0.5)
102
- bundler (>= 1.3.0)
103
- railties (= 5.0.5)
91
+ rails (5.0.2)
92
+ actioncable (= 5.0.2)
93
+ actionmailer (= 5.0.2)
94
+ actionpack (= 5.0.2)
95
+ actionview (= 5.0.2)
96
+ activejob (= 5.0.2)
97
+ activemodel (= 5.0.2)
98
+ activerecord (= 5.0.2)
99
+ activesupport (= 5.0.2)
100
+ bundler (>= 1.3.0, < 2.0)
101
+ railties (= 5.0.2)
104
102
  sprockets-rails (>= 2.0.0)
105
- rails-dom-testing (2.0.3)
106
- activesupport (>= 4.2.0)
107
- nokogiri (>= 1.6)
103
+ rails-dom-testing (2.0.2)
104
+ activesupport (>= 4.2.0, < 6.0)
105
+ nokogiri (~> 1.6)
108
106
  rails-html-sanitizer (1.0.3)
109
107
  loofah (~> 2.0)
110
- railties (5.0.5)
111
- actionpack (= 5.0.5)
112
- activesupport (= 5.0.5)
108
+ railties (5.0.2)
109
+ actionpack (= 5.0.2)
110
+ activesupport (= 5.0.2)
113
111
  method_source
114
112
  rake (>= 0.8.7)
115
113
  thor (>= 0.18.1, < 2.0)
@@ -130,8 +128,8 @@ GEM
130
128
  diff-lcs (>= 1.2.0, < 2.0)
131
129
  rspec-support (~> 3.4.0)
132
130
  rspec-support (3.4.1)
133
- rufus-scheduler (3.4.2)
134
- et-orbi (~> 1.0)
131
+ rufus-scheduler (3.3.4)
132
+ tzinfo
135
133
  sinatra (2.0.0.beta2)
136
134
  mustermann (= 1.0.0.beta2)
137
135
  rack (~> 2.0)
@@ -153,9 +151,11 @@ GEM
153
151
  actionpack (>= 4.0)
154
152
  activesupport (>= 4.0)
155
153
  sprockets (>= 3.0.0)
154
+ test_after_commit (0.4.1)
155
+ activerecord (>= 3.2)
156
156
  thor (0.19.4)
157
157
  thread_safe (0.3.6)
158
- tilt (2.0.8)
158
+ tilt (2.0.7)
159
159
  timecop (0.7.1)
160
160
  tzinfo (1.2.3)
161
161
  thread_safe (~> 0.1)
@@ -170,7 +170,7 @@ PLATFORMS
170
170
  DEPENDENCIES
171
171
  bump
172
172
  byebug
173
- database_cleaner (= 1.6.1)
173
+ database_cleaner (= 1.3.0)
174
174
  inst-jobs!
175
175
  pg
176
176
  pry
@@ -180,8 +180,9 @@ DEPENDENCIES
180
180
  rspec (= 3.4.0)
181
181
  sinatra (= 2.0.0.beta2)
182
182
  sinatra-contrib (= 2.0.0.beta2)
183
+ test_after_commit (= 0.4.1)
183
184
  timecop (= 0.7.1)
184
185
  wwtd (~> 1.3.0)
185
186
 
186
187
  BUNDLED WITH
187
- 1.15.3
188
+ 1.14.6
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inst-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.2
4
+ version: 0.14.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Luetke
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-12-14 00:00:00.000000000 Z
12
+ date: 2018-01-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: after_transaction_commit
@@ -133,16 +133,16 @@ dependencies:
133
133
  name: pg
134
134
  requirement: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ">="
136
+ - - "<"
137
137
  - !ruby/object:Gem::Version
138
- version: '0'
138
+ version: '1.0'
139
139
  type: :development
140
140
  prerelease: false
141
141
  version_requirements: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ">="
143
+ - - "<"
144
144
  - !ruby/object:Gem::Version
145
- version: '0'
145
+ version: '1.0'
146
146
  - !ruby/object:Gem::Dependency
147
147
  name: pry
148
148
  requirement: !ruby/object:Gem::Requirement
@@ -362,7 +362,6 @@ files:
362
362
  - spec/gemfiles/50.gemfile
363
363
  - spec/gemfiles/50.gemfile.lock
364
364
  - spec/gemfiles/51.gemfile
365
- - spec/gemfiles/51.gemfile.lock
366
365
  - spec/migrate/20140924140513_add_story_table.rb
367
366
  - spec/redis_job_spec.rb
368
367
  - spec/sample_jobs.rb
@@ -393,7 +392,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
393
392
  version: '0'
394
393
  requirements: []
395
394
  rubyforge_project:
396
- rubygems_version: 2.7.2
395
+ rubygems_version: 2.6.13
397
396
  signing_key:
398
397
  specification_version: 4
399
398
  summary: Instructure-maintained fork of delayed_job
@@ -415,7 +414,6 @@ test_files:
415
414
  - spec/gemfiles/50.gemfile
416
415
  - spec/gemfiles/50.gemfile.lock
417
416
  - spec/gemfiles/51.gemfile
418
- - spec/gemfiles/51.gemfile.lock
419
417
  - spec/migrate/20140924140513_add_story_table.rb
420
418
  - spec/redis_job_spec.rb
421
419
  - spec/sample_jobs.rb
@@ -1,187 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- inst-jobs (0.13.3)
5
- after_transaction_commit (~> 1.0)
6
- rails (>= 4.2)
7
- redis (> 3.0)
8
- redis-scripting (~> 1.0.1)
9
- rufus-scheduler (~> 3.4)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actioncable (5.1.1)
15
- actionpack (= 5.1.1)
16
- nio4r (~> 2.0)
17
- websocket-driver (~> 0.6.1)
18
- actionmailer (5.1.1)
19
- actionpack (= 5.1.1)
20
- actionview (= 5.1.1)
21
- activejob (= 5.1.1)
22
- mail (~> 2.5, >= 2.5.4)
23
- rails-dom-testing (~> 2.0)
24
- actionpack (5.1.1)
25
- actionview (= 5.1.1)
26
- activesupport (= 5.1.1)
27
- rack (~> 2.0)
28
- rack-test (~> 0.6.3)
29
- rails-dom-testing (~> 2.0)
30
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
- actionview (5.1.1)
32
- activesupport (= 5.1.1)
33
- builder (~> 3.1)
34
- erubi (~> 1.4)
35
- rails-dom-testing (~> 2.0)
36
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
- activejob (5.1.1)
38
- activesupport (= 5.1.1)
39
- globalid (>= 0.3.6)
40
- activemodel (5.1.1)
41
- activesupport (= 5.1.1)
42
- activerecord (5.1.1)
43
- activemodel (= 5.1.1)
44
- activesupport (= 5.1.1)
45
- arel (~> 8.0)
46
- activesupport (5.1.1)
47
- concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (~> 0.7)
49
- minitest (~> 5.1)
50
- tzinfo (~> 1.1)
51
- after_transaction_commit (1.1.2)
52
- activerecord (>= 4.0)
53
- arel (8.0.0)
54
- backports (3.7.0)
55
- builder (3.2.3)
56
- bump (0.5.3)
57
- byebug (9.0.6)
58
- coderay (1.1.1)
59
- concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
61
- diff-lcs (1.3)
62
- erubi (1.6.0)
63
- et-orbi (1.0.3)
64
- tzinfo
65
- globalid (0.4.0)
66
- activesupport (>= 4.2.0)
67
- i18n (0.8.4)
68
- loofah (2.0.3)
69
- nokogiri (>= 1.5.9)
70
- mail (2.6.6)
71
- mime-types (>= 1.16, < 4)
72
- method_source (0.8.2)
73
- mime-types (3.1)
74
- mime-types-data (~> 3.2015)
75
- mime-types-data (3.2016.0521)
76
- mini_portile2 (2.2.0)
77
- minitest (5.10.2)
78
- multi_json (1.12.1)
79
- mustermann (1.0.0.beta2)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- pg (0.21.0)
84
- pry (0.10.4)
85
- coderay (~> 1.1.0)
86
- method_source (~> 0.8.1)
87
- slop (~> 3.4)
88
- rack (2.0.3)
89
- rack-protection (2.0.0.beta2)
90
- rack
91
- rack-test (0.6.3)
92
- rack (>= 1.0)
93
- rails (5.1.1)
94
- actioncable (= 5.1.1)
95
- actionmailer (= 5.1.1)
96
- actionpack (= 5.1.1)
97
- actionview (= 5.1.1)
98
- activejob (= 5.1.1)
99
- activemodel (= 5.1.1)
100
- activerecord (= 5.1.1)
101
- activesupport (= 5.1.1)
102
- bundler (>= 1.3.0, < 2.0)
103
- railties (= 5.1.1)
104
- sprockets-rails (>= 2.0.0)
105
- rails-dom-testing (2.0.3)
106
- activesupport (>= 4.2.0)
107
- nokogiri (>= 1.6)
108
- rails-html-sanitizer (1.0.3)
109
- loofah (~> 2.0)
110
- railties (5.1.1)
111
- actionpack (= 5.1.1)
112
- activesupport (= 5.1.1)
113
- method_source
114
- rake (>= 0.8.7)
115
- thor (>= 0.18.1, < 2.0)
116
- rake (12.0.0)
117
- redis (3.3.3)
118
- redis-scripting (1.0.1)
119
- redis (>= 3.0)
120
- rspec (3.4.0)
121
- rspec-core (~> 3.4.0)
122
- rspec-expectations (~> 3.4.0)
123
- rspec-mocks (~> 3.4.0)
124
- rspec-core (3.4.4)
125
- rspec-support (~> 3.4.0)
126
- rspec-expectations (3.4.0)
127
- diff-lcs (>= 1.2.0, < 2.0)
128
- rspec-support (~> 3.4.0)
129
- rspec-mocks (3.4.1)
130
- diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.4.0)
132
- rspec-support (3.4.1)
133
- rufus-scheduler (3.4.0)
134
- et-orbi (~> 1.0)
135
- sinatra (2.0.0.beta2)
136
- mustermann (= 1.0.0.beta2)
137
- rack (~> 2.0)
138
- rack-protection (= 2.0.0.beta2)
139
- tilt (~> 2.0)
140
- sinatra-contrib (2.0.0.beta2)
141
- backports (>= 2.0)
142
- multi_json
143
- mustermann (= 1.0.0.beta2)
144
- rack-protection (= 2.0.0.beta2)
145
- rack-test
146
- sinatra (= 2.0.0.beta2)
147
- tilt (>= 1.3, < 3)
148
- slop (3.6.0)
149
- sprockets (3.7.1)
150
- concurrent-ruby (~> 1.0)
151
- rack (> 1, < 3)
152
- sprockets-rails (3.2.0)
153
- actionpack (>= 4.0)
154
- activesupport (>= 4.0)
155
- sprockets (>= 3.0.0)
156
- thor (0.19.4)
157
- thread_safe (0.3.6)
158
- tilt (2.0.7)
159
- timecop (0.7.1)
160
- tzinfo (1.2.3)
161
- thread_safe (~> 0.1)
162
- websocket-driver (0.6.5)
163
- websocket-extensions (>= 0.1.0)
164
- websocket-extensions (0.1.2)
165
- wwtd (1.3.0)
166
-
167
- PLATFORMS
168
- ruby
169
-
170
- DEPENDENCIES
171
- bump
172
- byebug
173
- database_cleaner (= 1.6.1)
174
- inst-jobs!
175
- pg
176
- pry
177
- rack-test
178
- rails (~> 5.1.0)
179
- rake
180
- rspec (= 3.4.0)
181
- sinatra (= 2.0.0.beta2)
182
- sinatra-contrib (= 2.0.0.beta2)
183
- timecop (= 0.7.1)
184
- wwtd (~> 1.3.0)
185
-
186
- BUNDLED WITH
187
- 1.14.6