delayed-web 0.4.7 → 0.4.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
  SHA256:
3
- metadata.gz: 25e654e45c7bcb52faa4b89ed1a3e2556928a6719fbc5ef589921c6031a18584
4
- data.tar.gz: 22be971ca4e7a97935dac1f3626f51bfa6ab7831b1f44b969f7c6df93069769d
3
+ metadata.gz: aac4fd049b0b18802fbc930421d77167eb99aef1d87b7ad41e6af89a84b46552
4
+ data.tar.gz: 0bbf737b135330ec3bd9f6f2000abc48c13803115274d4a2481ecfcddfa8dd98
5
5
  SHA512:
6
- metadata.gz: 13dea7c1fb5c96d8eeef336a04085fe1658d78e8c1aec2eacf78d94606a0d41cd1fd3fafc311a3e5af129e8bbcb42d1d2d824f1788de7faaf8bc167a85e30d04
7
- data.tar.gz: e38bb4a9f876d3cd490df3077513235d5e28a32759c53238c353687c744d5b745a5270aff74f1f5bbb33f42046929f2725c4cbf01583d56157af3cfcab8b509c
6
+ metadata.gz: 8ad97739e01db48d37a8843976c7f141acf71c38efafce74f20ae102219d0c68ed344467256070644df3579a859579a3aaa8500b1d14035bbf12c4aafdb9f2d1
7
+ data.tar.gz: 54a23e5b2eaf95f18c16097ddcff59cba5e5268485ace07edb9015182c3c6f510136a9edf17f36808a7ddbd0978a1951628c40a6dd78bdd0a91cfb85d118d03d
@@ -2,7 +2,7 @@ module Delayed
2
2
  module Web
3
3
  class ActiveRecordDecorator < SimpleDelegator
4
4
  def queue! now = Time.current
5
- update_attributes! run_at: now, failed_at: nil, last_error: nil
5
+ update! run_at: now, failed_at: nil, last_error: nil
6
6
  end
7
7
  end
8
8
  end
@@ -1,5 +1,5 @@
1
1
  module Delayed
2
2
  module Web
3
- VERSION = '0.4.7'
3
+ VERSION = '0.4.9'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delayed-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tate Johnson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-29 00:00:00.000000000 Z
11
+ date: 2021-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -56,17 +56,17 @@ dependencies:
56
56
  name: sqlite3
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: '1.0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">="
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
69
- description: A rails engine that provides a simple web interface for exposing the
68
+ version: '1.0'
69
+ description: A Rails engine that provides a simple web interface for exposing the
70
70
  Delayed::Job queue.
71
71
  email:
72
72
  - tate@tatey.com
@@ -152,7 +152,6 @@ files:
152
152
  - spec/dummy/config/secrets.yml
153
153
  - spec/dummy/config/spring.rb
154
154
  - spec/dummy/db/seeds.rb
155
- - spec/dummy/log/test.log
156
155
  - spec/dummy/public/404.html
157
156
  - spec/dummy/public/422.html
158
157
  - spec/dummy/public/500.html
@@ -161,7 +160,6 @@ files:
161
160
  - spec/dummy/public/favicon.ico
162
161
  - spec/dummy/public/robots.txt
163
162
  - spec/dummy/test/test_helper.rb
164
- - spec/dummyold/log/test.log
165
163
  - spec/features/jobs_spec.rb
166
164
  - spec/helpers/jobs_helper_spec.rb
167
165
  - spec/spec_helper.rb
@@ -172,7 +170,7 @@ homepage: http://github.com/tatey/delayed-web
172
170
  licenses:
173
171
  - MIT
174
172
  metadata: {}
175
- post_install_message:
173
+ post_install_message:
176
174
  rdoc_options: []
177
175
  require_paths:
178
176
  - lib
@@ -187,71 +185,68 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
185
  - !ruby/object:Gem::Version
188
186
  version: '0'
189
187
  requirements: []
190
- rubygems_version: 3.0.3
191
- signing_key:
188
+ rubygems_version: 3.2.3
189
+ signing_key:
192
190
  specification_version: 4
193
- summary: A rails engine that provides a simple web interface for exposing the Delayed::Job
194
- queue.
191
+ summary: A Rails engine for Delayed::Job.
195
192
  test_files:
196
- - spec/spec_helper.rb
193
+ - spec/decorators/status_decorator_spec.rb
194
+ - spec/dummy/README.md
195
+ - spec/dummy/Rakefile
196
+ - spec/dummy/app/assets/config/manifest.js
197
+ - spec/dummy/app/assets/javascripts/application.js
198
+ - spec/dummy/app/assets/javascripts/cable.js
199
+ - spec/dummy/app/assets/stylesheets/application.css
200
+ - spec/dummy/app/channels/application_cable/channel.rb
201
+ - spec/dummy/app/channels/application_cable/connection.rb
202
+ - spec/dummy/app/controllers/application_controller.rb
203
+ - spec/dummy/app/helpers/application_helper.rb
204
+ - spec/dummy/app/jobs/application_job.rb
197
205
  - spec/dummy/app/mailers/application_mailer.rb
198
206
  - spec/dummy/app/models/application_record.rb
199
- - spec/dummy/app/jobs/application_job.rb
200
- - spec/dummy/app/controllers/application_controller.rb
201
207
  - spec/dummy/app/views/layouts/application.html.erb
202
208
  - spec/dummy/app/views/layouts/mailer.html.erb
203
209
  - spec/dummy/app/views/layouts/mailer.text.erb
204
- - spec/dummy/app/assets/config/manifest.js
205
- - spec/dummy/app/assets/javascripts/cable.js
206
- - spec/dummy/app/assets/javascripts/application.js
207
- - spec/dummy/app/assets/stylesheets/application.css
208
- - spec/dummy/app/helpers/application_helper.rb
209
- - spec/dummy/app/channels/application_cable/connection.rb
210
- - spec/dummy/app/channels/application_cable/channel.rb
211
- - spec/dummy/test/test_helper.rb
212
- - spec/dummy/bin/update
210
+ - spec/dummy/bin/bundle
211
+ - spec/dummy/bin/rails
213
212
  - spec/dummy/bin/rake
214
213
  - spec/dummy/bin/setup
215
- - spec/dummy/bin/bundle
216
214
  - spec/dummy/bin/spring
217
- - spec/dummy/bin/rails
218
- - spec/dummy/config/secrets.yml
219
- - spec/dummy/config/routes.rb
220
- - spec/dummy/config/locales/en.yml
215
+ - spec/dummy/bin/update
216
+ - spec/dummy/config/application.rb
217
+ - spec/dummy/config/boot.rb
221
218
  - spec/dummy/config/cable.yml
222
- - spec/dummy/config/environments/production.rb
219
+ - spec/dummy/config/database.yml
220
+ - spec/dummy/config/environment.rb
223
221
  - spec/dummy/config/environments/development.rb
222
+ - spec/dummy/config/environments/production.rb
224
223
  - spec/dummy/config/environments/test.rb
225
- - spec/dummy/config/spring.rb
226
- - spec/dummy/config/environment.rb
227
- - spec/dummy/config/application.rb
228
- - spec/dummy/config/puma.rb
229
- - spec/dummy/config/database.yml
230
- - spec/dummy/config/boot.rb
231
224
  - spec/dummy/config/initializers/application_controller_renderer.rb
232
- - spec/dummy/config/initializers/backtrace_silencers.rb
233
- - spec/dummy/config/initializers/mime_types.rb
234
- - spec/dummy/config/initializers/filter_parameter_logging.rb
235
- - spec/dummy/config/initializers/session_store.rb
236
- - spec/dummy/config/initializers/wrap_parameters.rb
237
- - spec/dummy/config/initializers/new_framework_defaults.rb
238
225
  - spec/dummy/config/initializers/assets.rb
226
+ - spec/dummy/config/initializers/backtrace_silencers.rb
239
227
  - spec/dummy/config/initializers/cookies_serializer.rb
240
228
  - spec/dummy/config/initializers/delayed_web.rb
229
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
241
230
  - spec/dummy/config/initializers/inflections.rb
231
+ - spec/dummy/config/initializers/mime_types.rb
232
+ - spec/dummy/config/initializers/new_framework_defaults.rb
233
+ - spec/dummy/config/initializers/session_store.rb
234
+ - spec/dummy/config/initializers/wrap_parameters.rb
235
+ - spec/dummy/config/locales/en.yml
236
+ - spec/dummy/config/puma.rb
237
+ - spec/dummy/config/routes.rb
238
+ - spec/dummy/config/secrets.yml
239
+ - spec/dummy/config/spring.rb
242
240
  - spec/dummy/config.ru
243
- - spec/dummy/README.md
244
- - spec/dummy/Rakefile
245
- - spec/dummy/public/favicon.ico
241
+ - spec/dummy/db/seeds.rb
242
+ - spec/dummy/public/404.html
246
243
  - spec/dummy/public/422.html
247
- - spec/dummy/public/apple-touch-icon.png
248
244
  - spec/dummy/public/500.html
249
- - spec/dummy/public/404.html
250
245
  - spec/dummy/public/apple-touch-icon-precomposed.png
246
+ - spec/dummy/public/apple-touch-icon.png
247
+ - spec/dummy/public/favicon.ico
251
248
  - spec/dummy/public/robots.txt
252
- - spec/dummy/db/seeds.rb
253
- - spec/dummy/log/test.log
254
- - spec/decorators/status_decorator_spec.rb
249
+ - spec/dummy/test/test_helper.rb
255
250
  - spec/features/jobs_spec.rb
256
- - spec/dummyold/log/test.log
257
251
  - spec/helpers/jobs_helper_spec.rb
252
+ - spec/spec_helper.rb
File without changes
@@ -1,451 +0,0 @@
1
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-26 21:51:10 +1000
2
- Processing by Delayed::Web::JobsController#show as HTML
3
- Parameters: {"id"=>"2"}
4
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
5
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (6.9ms)
6
- Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
7
- Started GET "/jobs" for 127.0.0.1 at 2016-11-26 21:51:10 +1000
8
- Processing by Delayed::Web::JobsController#index as HTML
9
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
10
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.3ms)
11
- Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
12
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-26 21:51:10 +1000
13
- Processing by Delayed::Web::JobsController#show as HTML
14
- Parameters: {"id"=>"2"}
15
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
16
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (4.3ms)
17
- Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
18
- Started GET "/jobs" for 127.0.0.1 at 2016-11-26 21:52:28 +1000
19
- Processing by Delayed::Web::JobsController#index as HTML
20
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
21
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (7.4ms)
22
- Completed 500 Internal Server Error in 175ms (ActiveRecord: 0.0ms)
23
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-26 21:52:28 +1000
24
- Processing by Delayed::Web::JobsController#show as HTML
25
- Parameters: {"id"=>"2"}
26
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
27
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
28
- Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
29
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-26 21:52:28 +1000
30
- Processing by Delayed::Web::JobsController#show as HTML
31
- Parameters: {"id"=>"2"}
32
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
33
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
34
- Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
35
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:25:23 +1000
36
- Processing by Delayed::Web::JobsController#show as HTML
37
- Parameters: {"id"=>"2"}
38
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
39
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (5.5ms)
40
- Completed 500 Internal Server Error in 146ms (ActiveRecord: 0.0ms)
41
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:25:23 +1000
42
- Processing by Delayed::Web::JobsController#index as HTML
43
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
44
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (2.1ms)
45
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
46
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:25:23 +1000
47
- Processing by Delayed::Web::JobsController#show as HTML
48
- Parameters: {"id"=>"2"}
49
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
50
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
51
- Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
52
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
53
- Processing by Delayed::Web::JobsController#show as HTML
54
- Parameters: {"id"=>"2"}
55
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
56
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (3.7ms)
57
- Completed 200 OK in 178ms (Views: 176.5ms | ActiveRecord: 0.0ms)
58
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
59
- Processing by Delayed::Web::JobsController#destroy as HTML
60
- Parameters: {"id"=>"2"}
61
- Redirected to http://www.example.com/jobs
62
- Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
63
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
64
- Processing by Delayed::Web::JobsController#index as HTML
65
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
66
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
67
- Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms)
68
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
69
- Processing by Delayed::Web::JobsController#index as HTML
70
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
71
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
72
- Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.0ms)
73
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
74
- Processing by Delayed::Web::JobsController#show as HTML
75
- Parameters: {"id"=>"2"}
76
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
77
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
78
- Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.0ms)
79
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
80
- Processing by Delayed::Web::JobsController#show as HTML
81
- Parameters: {"id"=>"2"}
82
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
83
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
84
- Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
85
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
86
- Processing by Delayed::Web::JobsController#queue as HTML
87
- Parameters: {"id"=>"2"}
88
- Redirected to http://www.example.com/jobs
89
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
90
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:08 +1000
91
- Processing by Delayed::Web::JobsController#index as HTML
92
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
93
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.2ms)
94
- Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
95
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:50 +1000
96
- Processing by Delayed::Web::JobsController#index as HTML
97
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
98
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (6.6ms)
99
- Completed 200 OK in 137ms (Views: 135.5ms | ActiveRecord: 0.0ms)
100
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
101
- Processing by Delayed::Web::JobsController#show as HTML
102
- Parameters: {"id"=>"2"}
103
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
104
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
105
- Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
106
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
107
- Processing by Delayed::Web::JobsController#show as HTML
108
- Parameters: {"id"=>"2"}
109
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
110
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
111
- Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
112
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
113
- Processing by Delayed::Web::JobsController#queue as HTML
114
- Parameters: {"id"=>"2"}
115
- Redirected to http://www.example.com/jobs
116
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
117
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
118
- Processing by Delayed::Web::JobsController#index as HTML
119
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
120
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (2.1ms)
121
- Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
122
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
123
- Processing by Delayed::Web::JobsController#show as HTML
124
- Parameters: {"id"=>"2"}
125
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
126
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
127
- Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
128
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
129
- Processing by Delayed::Web::JobsController#destroy as HTML
130
- Parameters: {"id"=>"2"}
131
- Redirected to http://www.example.com/jobs
132
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
133
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:26:51 +1000
134
- Processing by Delayed::Web::JobsController#index as HTML
135
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
136
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
137
- Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.0ms)
138
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
139
- Processing by Delayed::Web::JobsController#index as HTML
140
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
141
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (4.1ms)
142
- Completed 200 OK in 134ms (Views: 131.7ms | ActiveRecord: 0.0ms)
143
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
144
- Processing by Delayed::Web::JobsController#show as HTML
145
- Parameters: {"id"=>"2"}
146
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
147
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
148
- Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
149
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
150
- Processing by Delayed::Web::JobsController#show as HTML
151
- Parameters: {"id"=>"2"}
152
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
153
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
154
- Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
155
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
156
- Processing by Delayed::Web::JobsController#queue as HTML
157
- Parameters: {"id"=>"2"}
158
- Redirected to http://www.example.com/jobs
159
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
160
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
161
- Processing by Delayed::Web::JobsController#index as HTML
162
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
163
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.9ms)
164
- Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.0ms)
165
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
166
- Processing by Delayed::Web::JobsController#show as HTML
167
- Parameters: {"id"=>"2"}
168
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
169
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
170
- Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
171
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
172
- Processing by Delayed::Web::JobsController#destroy as HTML
173
- Parameters: {"id"=>"2"}
174
- Redirected to http://www.example.com/jobs
175
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
176
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:27:06 +1000
177
- Processing by Delayed::Web::JobsController#index as HTML
178
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
179
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.7ms)
180
- Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.0ms)
181
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
182
- Processing by Delayed::Web::JobsController#index as HTML
183
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
184
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (4.3ms)
185
- Completed 200 OK in 147ms (Views: 144.6ms | ActiveRecord: 0.0ms)
186
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
187
- Processing by Delayed::Web::JobsController#show as HTML
188
- Parameters: {"id"=>"2"}
189
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
190
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
191
- Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
192
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
193
- Processing by Delayed::Web::JobsController#show as HTML
194
- Parameters: {"id"=>"2"}
195
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
196
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
197
- Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
198
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
199
- Processing by Delayed::Web::JobsController#queue as HTML
200
- Parameters: {"id"=>"2"}
201
- Redirected to http://www.example.com/jobs
202
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
203
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
204
- Processing by Delayed::Web::JobsController#index as HTML
205
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
206
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
207
- Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.0ms)
208
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
209
- Processing by Delayed::Web::JobsController#show as HTML
210
- Parameters: {"id"=>"2"}
211
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
212
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
213
- Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
214
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
215
- Processing by Delayed::Web::JobsController#destroy as HTML
216
- Parameters: {"id"=>"2"}
217
- Redirected to http://www.example.com/jobs
218
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
219
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:33:12 +1000
220
- Processing by Delayed::Web::JobsController#index as HTML
221
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
222
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
223
- Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
224
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
225
- Processing by Delayed::Web::JobsController#show as HTML
226
- Parameters: {"id"=>"2"}
227
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
228
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (3.6ms)
229
- Completed 200 OK in 149ms (Views: 147.1ms | ActiveRecord: 0.0ms)
230
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
231
- Processing by Delayed::Web::JobsController#destroy as HTML
232
- Parameters: {"id"=>"2"}
233
- Redirected to http://www.example.com/jobs
234
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
235
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
236
- Processing by Delayed::Web::JobsController#index as HTML
237
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
238
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
239
- Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms)
240
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
241
- Processing by Delayed::Web::JobsController#show as HTML
242
- Parameters: {"id"=>"2"}
243
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
244
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
245
- Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
246
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
247
- Processing by Delayed::Web::JobsController#queue as HTML
248
- Parameters: {"id"=>"2"}
249
- Redirected to http://www.example.com/jobs
250
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
251
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
252
- Processing by Delayed::Web::JobsController#index as HTML
253
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
254
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.3ms)
255
- Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
256
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
257
- Processing by Delayed::Web::JobsController#index as HTML
258
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
259
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
260
- Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
261
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:44:04 +1000
262
- Processing by Delayed::Web::JobsController#show as HTML
263
- Parameters: {"id"=>"2"}
264
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
265
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.1ms)
266
- Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.0ms)
267
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
268
- Processing by Delayed::Web::JobsController#index as HTML
269
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
270
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (4.8ms)
271
- Completed 200 OK in 158ms (Views: 154.7ms | ActiveRecord: 0.0ms)
272
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
273
- Processing by Delayed::Web::JobsController#show as HTML
274
- Parameters: {"id"=>"2"}
275
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
276
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
277
- Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
278
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
279
- Processing by Delayed::Web::JobsController#show as HTML
280
- Parameters: {"id"=>"2"}
281
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
282
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
283
- Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
284
- Started DELETE "/jobs/2" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
285
- Processing by Delayed::Web::JobsController#destroy as HTML
286
- Parameters: {"id"=>"2"}
287
- Redirected to http://www.example.com/jobs
288
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
289
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
290
- Processing by Delayed::Web::JobsController#index as HTML
291
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
292
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (2.0ms)
293
- Completed 200 OK in 9ms (Views: 6.2ms | ActiveRecord: 0.0ms)
294
- Started GET "/jobs/2" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
295
- Processing by Delayed::Web::JobsController#show as HTML
296
- Parameters: {"id"=>"2"}
297
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
298
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.0ms)
299
- Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
300
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
301
- Processing by Delayed::Web::JobsController#queue as HTML
302
- Parameters: {"id"=>"2"}
303
- Redirected to http://www.example.com/jobs
304
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
305
- Started GET "/jobs" for 127.0.0.1 at 2016-11-27 20:47:42 +1000
306
- Processing by Delayed::Web::JobsController#index as HTML
307
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
308
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (1.8ms)
309
- Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.0ms)
310
- Started GET "/jobs" for 127.0.0.1 at 2017-01-08 07:46:41 +1000
311
- Processing by Delayed::Web::JobsController#index as HTML
312
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
313
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (24.5ms)
314
- Completed 200 OK in 222ms (Views: 219.5ms | ActiveRecord: 0.0ms)
315
- Started GET "/jobs/2" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
316
- Processing by Delayed::Web::JobsController#show as HTML
317
- Parameters: {"id"=>"2"}
318
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
319
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (2.3ms)
320
- Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.0ms)
321
- Started GET "/jobs/2" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
322
- Processing by Delayed::Web::JobsController#show as HTML
323
- Parameters: {"id"=>"2"}
324
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
325
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.9ms)
326
- Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms)
327
- Started DELETE "/jobs/2" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
328
- Processing by Delayed::Web::JobsController#destroy as HTML
329
- Parameters: {"id"=>"2"}
330
- Redirected to http://www.example.com/jobs
331
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
332
- Started GET "/jobs" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
333
- Processing by Delayed::Web::JobsController#index as HTML
334
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
335
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.0ms)
336
- Completed 200 OK in 12ms (Views: 8.2ms | ActiveRecord: 0.0ms)
337
- Started GET "/jobs/2" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
338
- Processing by Delayed::Web::JobsController#show as HTML
339
- Parameters: {"id"=>"2"}
340
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
341
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (2.5ms)
342
- Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.0ms)
343
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
344
- Processing by Delayed::Web::JobsController#queue as HTML
345
- Parameters: {"id"=>"2"}
346
- Redirected to http://www.example.com/jobs
347
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
348
- Started GET "/jobs" for 127.0.0.1 at 2017-01-08 07:46:42 +1000
349
- Processing by Delayed::Web::JobsController#index as HTML
350
- Rendering /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
351
- Rendered /Users/Tate/Code/thebestday/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (2.7ms)
352
- Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
353
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:23:52 +1000
354
- Processing by Delayed::Web::JobsController#show as HTML
355
- Parameters: {"id"=>"2"}
356
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
357
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (11.4ms)
358
- Completed 200 OK in 242ms (Views: 240.2ms | ActiveRecord: 0.0ms)
359
- Started DELETE "/jobs/2" for 127.0.0.1 at 2017-06-21 21:23:53 +1000
360
- Processing by Delayed::Web::JobsController#destroy as HTML
361
- Parameters: {"id"=>"2"}
362
- Redirected to http://www.example.com/jobs
363
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
364
- Started GET "/jobs" for 127.0.0.1 at 2017-06-21 21:23:53 +1000
365
- Processing by Delayed::Web::JobsController#index as HTML
366
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
367
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.3ms)
368
- Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.0ms)
369
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:23:53 +1000
370
- Processing by Delayed::Web::JobsController#show as HTML
371
- Parameters: {"id"=>"2"}
372
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
373
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.9ms)
374
- Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
375
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:23:53 +1000
376
- Processing by Delayed::Web::JobsController#show as HTML
377
- Parameters: {"id"=>"2"}
378
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
379
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.5ms)
380
- Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.0ms)
381
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2017-06-21 21:23:53 +1000
382
- Processing by Delayed::Web::JobsController#queue as HTML
383
- Parameters: {"id"=>"2"}
384
- Redirected to http://www.example.com/jobs
385
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
386
- Started GET "/jobs" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
387
- Processing by Delayed::Web::JobsController#index as HTML
388
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
389
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (11.2ms)
390
- Completed 200 OK in 177ms (Views: 173.7ms | ActiveRecord: 0.0ms)
391
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
392
- Processing by Delayed::Web::JobsController#show as HTML
393
- Parameters: {"id"=>"2"}
394
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
395
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.8ms)
396
- Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
397
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
398
- Processing by Delayed::Web::JobsController#show as HTML
399
- Parameters: {"id"=>"2"}
400
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
401
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.6ms)
402
- Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms)
403
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
404
- Processing by Delayed::Web::JobsController#queue as HTML
405
- Parameters: {"id"=>"2"}
406
- Redirected to http://www.example.com/jobs
407
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
408
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
409
- Processing by Delayed::Web::JobsController#show as HTML
410
- Parameters: {"id"=>"2"}
411
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
412
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (2.2ms)
413
- Completed 200 OK in 10ms (Views: 6.6ms | ActiveRecord: 0.0ms)
414
- Started DELETE "/jobs/2" for 127.0.0.1 at 2017-06-21 21:24:01 +1000
415
- Processing by Delayed::Web::JobsController#destroy as HTML
416
- Parameters: {"id"=>"2"}
417
- Redirected to http://www.example.com/jobs
418
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
419
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
420
- Processing by Delayed::Web::JobsController#show as HTML
421
- Parameters: {"id"=>"2"}
422
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
423
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (14.9ms)
424
- Completed 200 OK in 172ms (Views: 169.5ms | ActiveRecord: 0.0ms)
425
- Started PUT "/jobs/2/queue" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
426
- Processing by Delayed::Web::JobsController#queue as HTML
427
- Parameters: {"id"=>"2"}
428
- Redirected to http://www.example.com/jobs
429
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
430
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
431
- Processing by Delayed::Web::JobsController#show as HTML
432
- Parameters: {"id"=>"2"}
433
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
434
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.7ms)
435
- Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.0ms)
436
- Started DELETE "/jobs/2" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
437
- Processing by Delayed::Web::JobsController#destroy as HTML
438
- Parameters: {"id"=>"2"}
439
- Redirected to http://www.example.com/jobs
440
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
441
- Started GET "/jobs" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
442
- Processing by Delayed::Web::JobsController#index as HTML
443
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application
444
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/index.html.erb within layouts/delayed/web/application (3.4ms)
445
- Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.0ms)
446
- Started GET "/jobs/2" for 127.0.0.1 at 2017-06-21 21:26:43 +1000
447
- Processing by Delayed::Web::JobsController#show as HTML
448
- Parameters: {"id"=>"2"}
449
- Rendering /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application
450
- Rendered /Users/Tate/Code/tatey/delayed-web/app/views/delayed/web/jobs/show.html.erb within layouts/delayed/web/application (1.5ms)
451
- Completed 200 OK in 10ms (Views: 6.5ms | ActiveRecord: 0.0ms)