flammarion_rails 0.2.10 → 0.3.0

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: 73580e3f86164d7cc18f4f18f874003cc7c9cb11
4
- data.tar.gz: f0f2cc5c83e405301e5a8ffb1c7f6311a6ab2e76
3
+ metadata.gz: a55e88a87d1b7bdc4049bea5528a942d810abf3e
4
+ data.tar.gz: 8dd1cfb136a953685dc13b259e25a1ac149c153c
5
5
  SHA512:
6
- metadata.gz: 9dd16a6a35781d39da7c690e6913a79d40244d70907ec961405a7016622f30678108bfb71d9812a2bd6085549121926a163a280343adac84ddc526ada01d8ae8
7
- data.tar.gz: 27793f49d21470050e375add3ef2689c67a4097c5541d942e97df9cbbb6f7c62211e2f0b6799124fa08958e72a8dce1661374fc0f667498476431e5931721898
6
+ metadata.gz: c5b984e9ad01608614cae0833727c06978a39cc060224c316472b21ee48354ac758f5f9e39de468cadb1fc95fa877437d834ed254cf9c735b664628332c6d36b
7
+ data.tar.gz: f9a1f9d770d83bbfa7cdb6fc4fa5a9714fea1b4ec638e9e7cd1b8119d023c4d3679df8aed01b013e3c0a7748848f23a88f37103b01e404fb37746557288b8cf6
@@ -1,3 +1,5 @@
1
+ return unless ws?
2
+
1
3
  # Disable Back/Forward
2
4
  ########################################
3
5
 
@@ -58,23 +60,22 @@ ws.onmessage_actions.submit =
58
60
  # File
59
61
  ########################################
60
62
 
61
- if saveAs?
62
- window.ws_file = null
63
+ window.ws_file = null
63
64
 
64
- ws.onmessage_actions.file = (event) ->
65
- window.ws_file = ws_data.name
66
- document.title = 'Downloading...'
65
+ ws.onmessage_actions.file = (event) ->
66
+ window.ws_file = ws_data.name
67
+ document.title = 'Downloading...'
67
68
 
68
- ws.send_before_actions.unshift (data) ->
69
- if window.ws_file?
70
- ws.send_skip_action = true
69
+ ws.send_before_actions.unshift (data) ->
70
+ if window.ws_file?
71
+ ws.send_skip_action = true
71
72
 
72
- ws.onmessage_before_actions.unshift (event) ->
73
- if window.ws_file?
74
- saveAs(event.data, window.ws_file)
75
- document.title = window.ws_file
76
- window.ws_file = null
77
- ws.onmessage_skip_action = true
73
+ ws.onmessage_before_actions.unshift (event) ->
74
+ if window.ws_file?
75
+ saveAs(event.data, window.ws_file)
76
+ document.title = window.ws_file
77
+ window.ws_file = null
78
+ ws.onmessage_skip_action = true
78
79
 
79
80
  # Ajax
80
81
  ########################################
@@ -0,0 +1,2 @@
1
+ #= require file-saver/FileSaver
2
+ #= require flammarion_rails/actions
@@ -44,7 +44,7 @@ module Flammarion
44
44
  dispatch(params)
45
45
 
46
46
  if status == 302
47
- dispatch(url: headers['Location'].sub(PROTOCOL, ''), session: response.request.session)
47
+ dispatch(url: headers['Location'].sub(PROTOCOL, ''), session: request.session)
48
48
  render(action: 'page', body: response.body)
49
49
  elsif headers['Content-Transfer-Encoding'] == 'binary'
50
50
  filename = headers['Content-Disposition'].sub(/.*filename=/, '').gsub(/(^"|"$)/, '')
@@ -1,3 +1,3 @@
1
1
  module FlammarionRails
2
- VERSION = '0.2.10'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flammarion_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.10
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrice Lebel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-16 00:00:00.000000000 Z
11
+ date: 2017-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -94,6 +94,20 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '4.2'
97
+ - !ruby/object:Gem::Dependency
98
+ name: filesaver_rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.1'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.1'
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: nprogress-rails
99
113
  requirement: !ruby/object:Gem::Requirement
@@ -231,6 +245,7 @@ files:
231
245
  - README.md
232
246
  - Rakefile
233
247
  - app/assets/javascripts/flammarion_rails/actions.coffee
248
+ - app/assets/javascripts/flammarion_rails/all.coffee
234
249
  - lib/flammarion/engraving.rb
235
250
  - lib/flammarion/recognize_path.rb
236
251
  - lib/flammarion/revelator.rb
@@ -291,10 +306,6 @@ files:
291
306
  - spec/dummy/config/routes.rb
292
307
  - spec/dummy/config/secrets.yml
293
308
  - spec/dummy/config/spring.rb
294
- - spec/dummy/db/development.sqlite3
295
- - spec/dummy/db/test.sqlite3
296
- - spec/dummy/log/development.log
297
- - spec/dummy/log/test.log
298
309
  - spec/dummy/public/404.html
299
310
  - spec/dummy/public/422.html
300
311
  - spec/dummy/public/500.html
@@ -330,64 +341,59 @@ specification_version: 4
330
341
  summary: FlammarionRails
331
342
  test_files:
332
343
  - spec/rubame/server_spec.rb
333
- - spec/spec_helper.rb
334
- - spec/dummy/Rakefile
335
- - spec/dummy/config.ru
336
- - spec/dummy/bin/bundle
337
- - spec/dummy/bin/rake
338
- - spec/dummy/bin/setup
339
- - spec/dummy/bin/rails
340
- - spec/dummy/bin/update
341
- - spec/dummy/bin/flammarion
342
- - spec/dummy/app/mailers/application_mailer.rb
343
- - spec/dummy/app/models/application_record.rb
344
- - spec/dummy/app/views/products/index.html.erb
345
- - spec/dummy/app/views/layouts/mailer.text.erb
346
- - spec/dummy/app/views/layouts/mailer.html.erb
347
- - spec/dummy/app/views/layouts/application.html.erb
348
- - spec/dummy/app/helpers/application_helper.rb
349
- - spec/dummy/app/assets/config/manifest.js
350
- - spec/dummy/app/assets/javascripts/application.js
344
+ - spec/dummy/app/controllers/application_controller.rb
345
+ - spec/dummy/app/controllers/products_controller.rb
351
346
  - spec/dummy/app/assets/javascripts/cable.js
347
+ - spec/dummy/app/assets/javascripts/application.js
348
+ - spec/dummy/app/assets/config/manifest.js
352
349
  - spec/dummy/app/assets/stylesheets/application.css
350
+ - spec/dummy/app/mailers/application_mailer.rb
351
+ - spec/dummy/app/views/layouts/application.html.erb
352
+ - spec/dummy/app/views/layouts/mailer.html.erb
353
+ - spec/dummy/app/views/layouts/mailer.text.erb
354
+ - spec/dummy/app/views/products/index.html.erb
353
355
  - spec/dummy/app/jobs/application_job.rb
354
- - spec/dummy/app/channels/application_cable/connection.rb
355
356
  - spec/dummy/app/channels/application_cable/channel.rb
356
- - spec/dummy/app/controllers/application_controller.rb
357
- - spec/dummy/app/controllers/products_controller.rb
358
- - spec/dummy/public/favicon.ico
359
- - spec/dummy/public/422.html
360
- - spec/dummy/public/500.html
361
- - spec/dummy/public/404.html
362
- - spec/dummy/public/apple-touch-icon.png
363
- - spec/dummy/public/apple-touch-icon-precomposed.png
364
- - spec/dummy/log/test.log
365
- - spec/dummy/log/development.log
357
+ - spec/dummy/app/channels/application_cable/connection.rb
358
+ - spec/dummy/app/models/application_record.rb
359
+ - spec/dummy/app/helpers/application_helper.rb
360
+ - spec/dummy/config.ru
366
361
  - spec/dummy/config/secrets.yml
367
- - spec/dummy/config/cable.yml
368
- - spec/dummy/config/puma.rb
369
362
  - spec/dummy/config/spring.rb
370
- - spec/dummy/config/environments/production.rb
363
+ - spec/dummy/config/environment.rb
371
364
  - spec/dummy/config/environments/development.rb
365
+ - spec/dummy/config/environments/production.rb
372
366
  - spec/dummy/config/environments/test.rb
373
- - spec/dummy/config/boot.rb
374
- - spec/dummy/config/locales/en.yml
375
- - spec/dummy/config/database.yml
376
- - spec/dummy/config/environment.rb
377
- - spec/dummy/config/application.rb
378
367
  - spec/dummy/config/routes.rb
379
- - spec/dummy/config/initializers/application_controller_renderer.rb
380
- - spec/dummy/config/initializers/cookies_serializer.rb
381
- - spec/dummy/config/initializers/assets.rb
368
+ - spec/dummy/config/initializers/flammarion_rails.rb
369
+ - spec/dummy/config/initializers/mime_types.rb
370
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
371
+ - spec/dummy/config/initializers/inflections.rb
372
+ - spec/dummy/config/initializers/backtrace_silencers.rb
382
373
  - spec/dummy/config/initializers/session_store.rb
374
+ - spec/dummy/config/initializers/assets.rb
375
+ - spec/dummy/config/initializers/cookies_serializer.rb
383
376
  - spec/dummy/config/initializers/new_framework_defaults.rb
384
- - spec/dummy/config/initializers/filter_parameter_logging.rb
385
- - spec/dummy/config/initializers/mime_types.rb
386
- - spec/dummy/config/initializers/flammarion_rails.rb
377
+ - spec/dummy/config/initializers/application_controller_renderer.rb
387
378
  - spec/dummy/config/initializers/wrap_parameters.rb
388
- - spec/dummy/config/initializers/backtrace_silencers.rb
389
- - spec/dummy/config/initializers/inflections.rb
390
- - spec/dummy/db/test.sqlite3
391
- - spec/dummy/db/development.sqlite3
379
+ - spec/dummy/config/application.rb
380
+ - spec/dummy/config/database.yml
381
+ - spec/dummy/config/puma.rb
382
+ - spec/dummy/config/locales/en.yml
383
+ - spec/dummy/config/boot.rb
384
+ - spec/dummy/config/cable.yml
385
+ - spec/dummy/bin/update
386
+ - spec/dummy/bin/setup
387
+ - spec/dummy/bin/rake
388
+ - spec/dummy/bin/rails
389
+ - spec/dummy/bin/bundle
390
+ - spec/dummy/bin/flammarion
391
+ - spec/dummy/public/favicon.ico
392
+ - spec/dummy/public/apple-touch-icon.png
393
+ - spec/dummy/public/404.html
394
+ - spec/dummy/public/500.html
395
+ - spec/dummy/public/422.html
396
+ - spec/dummy/public/apple-touch-icon-precomposed.png
397
+ - spec/dummy/Rakefile
392
398
  - spec/rails_helper.rb
393
- has_rdoc:
399
+ - spec/spec_helper.rb
File without changes
File without changes
@@ -1,827 +0,0 @@
1
- WebSocket connection open
2
- Connection closed
3
- WebSocket connection open
4
- WebSocket connection open
5
- WebSocket connection open
6
- WebSocket connection open
7
- WebSocket connection open
8
- WebSocket connection open
9
- WebSocket connection open
10
- WebSocket connection open
11
- WebSocket connection open
12
- WebSocket connection open
13
- WebSocket connection open
14
- WebSocket connection open
15
- WebSocket connection open
16
- WebSocket connection open
17
- Processing by ProductsController#index as HTML
18
- Completed 500 Internal Server Error in 115ms
19
-
20
-
21
- WebSocket connection open
22
- WebSocket connection open
23
- Processing by ProductsController#index as HTML
24
- Rendering products/index.html.erb within layouts/application
25
- Rendered products/index.html.erb within layouts/application (2.1ms)
26
- Completed 200 OK in 652ms (Views: 485.3ms)
27
-
28
-
29
- Connection closed
30
- WebSocket connection open
31
- Processing by ProductsController#index as HTML
32
- Rendering products/index.html.erb within layouts/application
33
- Rendered products/index.html.erb within layouts/application (2.9ms)
34
- Completed 200 OK in 804ms (Views: 686.7ms)
35
-
36
-
37
- WebSocket connection open
38
- Processing by ProductsController#index as HTML
39
- Rendering products/index.html.erb within layouts/application
40
- Rendered products/index.html.erb within layouts/application (1.3ms)
41
- Completed 200 OK in 440ms (Views: 339.2ms)
42
-
43
-
44
- WebSocket connection open
45
- Processing by ProductsController#index as HTML
46
- Rendering products/index.html.erb within layouts/application
47
- Rendered products/index.html.erb within layouts/application (1.4ms)
48
- Completed 200 OK in 454ms (Views: 358.1ms)
49
-
50
-
51
- Connection closed
52
- WebSocket connection open
53
- Processing by ProductsController#index as HTML
54
- Rendering products/index.html.erb within layouts/application
55
- Rendered products/index.html.erb within layouts/application (0.9ms)
56
- Completed 200 OK in 199ms (Views: 123.3ms)
57
-
58
-
59
- Connection closed
60
- WebSocket connection open
61
- Processing by ProductsController#index as HTML
62
- Rendering products/index.html.erb within layouts/application
63
- Rendered products/index.html.erb within layouts/application (0.9ms)
64
- Completed 200 OK in 194ms (Views: 120.7ms)
65
-
66
-
67
- Connection closed
68
- WebSocket connection open
69
- Processing by ProductsController#index as HTML
70
- Rendering products/index.html.erb within layouts/application
71
- Rendered products/index.html.erb within layouts/application (0.9ms)
72
- Completed 200 OK in 201ms (Views: 121.5ms)
73
-
74
-
75
- Connection closed
76
- WebSocket connection open
77
- Processing by ProductsController#index as HTML
78
- Rendering products/index.html.erb within layouts/application
79
- Rendered products/index.html.erb within layouts/application (1.5ms)
80
- Completed 200 OK in 456ms (Views: 363.7ms)
81
-
82
-
83
- Connection closed
84
- WebSocket connection open
85
- WebSocket connection open
86
- Processing by ProductsController#index as HTML
87
- Rendering products/index.html.erb within layouts/application
88
- Rendered products/index.html.erb within layouts/application (1.8ms)
89
- Completed 200 OK in 415ms (Views: 323.6ms)
90
-
91
-
92
- Connection closed
93
- WebSocket connection open
94
- Processing by ProductsController#index as HTML
95
- Rendering products/index.html.erb within layouts/application
96
- Rendered products/index.html.erb within layouts/application (1.4ms)
97
- Completed 200 OK in 434ms (Views: 334.6ms)
98
-
99
-
100
- WebSocket connection open
101
- Processing by ProductsController#index as HTML
102
- Rendering products/index.html.erb within layouts/application
103
- Rendered products/index.html.erb within layouts/application (1.4ms)
104
- Completed 200 OK in 430ms (Views: 339.7ms)
105
-
106
-
107
- Connection closed
108
- WebSocket connection open
109
- Processing by ProductsController#index as HTML
110
- Rendering products/index.html.erb within layouts/application
111
- Rendered products/index.html.erb within layouts/application (0.9ms)
112
- Completed 200 OK in 205ms (Views: 130.4ms)
113
-
114
-
115
- Connection closed
116
- WebSocket connection open
117
- Connection closed
118
- WebSocket connection open
119
- Connection closed
120
- WebSocket connection open
121
- Connection closed
122
- WebSocket connection open
123
- Processing by ProductsController#index as HTML
124
- Rendering products/index.html.erb within layouts/application
125
- Rendered products/index.html.erb within layouts/application (1.0ms)
126
- Completed 200 OK in 140ms (Views: 7.2ms)
127
-
128
-
129
- WebSocket connection open
130
- Processing by ProductsController#index as HTML
131
- Rendering products/index.html.erb within layouts/application
132
- Rendered products/index.html.erb within layouts/application (0.1ms)
133
- Completed 200 OK in 3ms (Views: 2.1ms)
134
-
135
-
136
- WebSocket connection open
137
- WebSocket connection open
138
- Processing by ProductsController#index as HTML
139
- Rendering products/index.html.erb within layouts/application
140
- Rendered products/index.html.erb within layouts/application (0.1ms)
141
- Completed 200 OK in 3ms (Views: 2.2ms)
142
-
143
-
144
- WebSocket connection open
145
- WebSocket connection open
146
- WebSocket connection open
147
- WebSocket connection open
148
- Processing by ProductsController#index as HTML
149
- Rendering products/index.html.erb within layouts/application
150
- Rendered products/index.html.erb within layouts/application (0.1ms)
151
- Completed 200 OK in 3ms (Views: 2.3ms)
152
-
153
-
154
- WebSocket connection open
155
- WebSocket connection open
156
- WebSocket connection open
157
- WebSocket connection open
158
- WebSocket connection open
159
- WebSocket connection open
160
- WebSocket connection open
161
- WebSocket connection open
162
- WebSocket connection open
163
- Processing by ProductsController#index as HTML
164
- Rendering products/index.html.erb within layouts/application
165
- Rendered products/index.html.erb within layouts/application (0.1ms)
166
- Completed 200 OK in 8ms (Views: 2.1ms)
167
-
168
-
169
- WebSocket connection open
170
- WebSocket connection open
171
- WebSocket connection open
172
- WebSocket connection open
173
- WebSocket connection open
174
- WebSocket connection open
175
- WebSocket connection open
176
- WebSocket connection open
177
- WebSocket connection open
178
- WebSocket connection open
179
- WebSocket connection open
180
- WebSocket connection open
181
- WebSocket connection open
182
- WebSocket connection open
183
- WebSocket connection open
184
- WebSocket connection open
185
- WebSocket connection open
186
- Processing by ProductsController#index as HTML
187
- Rendering products/index.html.erb within layouts/application
188
- Rendered products/index.html.erb within layouts/application (0.0ms)
189
- Completed 200 OK in 7ms (Views: 4.1ms)
190
-
191
-
192
- WebSocket connection open
193
- Processing by ProductsController#index as HTML
194
- Rendering products/index.html.erb within layouts/application
195
- Rendered products/index.html.erb within layouts/application (0.0ms)
196
- Completed 200 OK in 4ms (Views: 3.6ms)
197
-
198
-
199
- WebSocket connection open
200
- WebSocket connection open
201
- WebSocket connection open
202
- WebSocket connection open
203
- WebSocket connection open
204
- WebSocket connection open
205
- WebSocket connection open
206
- WebSocket connection open
207
- WebSocket connection open
208
- WebSocket connection open
209
- WebSocket connection open
210
- WebSocket connection open
211
- WebSocket connection open
212
- WebSocket connection open
213
- WebSocket connection open
214
- WebSocket connection open
215
- WebSocket connection open
216
- WebSocket connection open
217
- WebSocket connection open
218
- WebSocket connection open
219
- WebSocket connection open
220
- WebSocket connection open
221
- WebSocket connection open
222
- WebSocket connection open
223
- WebSocket connection open
224
- WebSocket connection open
225
- WebSocket connection open
226
- WebSocket connection open
227
- WebSocket connection open
228
- WebSocket connection open
229
- WebSocket connection open
230
- WebSocket connection open
231
- WebSocket connection open
232
- WebSocket connection open
233
- WebSocket connection open
234
- WebSocket connection open
235
- WebSocket connection open
236
- WebSocket connection open
237
- WebSocket connection open
238
- WebSocket connection open
239
- WebSocket connection open
240
- WebSocket connection open
241
- WebSocket connection open
242
- WebSocket connection open
243
- WebSocket connection open
244
- WebSocket connection open
245
- WebSocket connection open
246
- WebSocket connection open
247
- WebSocket connection open
248
- WebSocket connection open
249
- WebSocket connection open
250
- WebSocket connection open
251
- WebSocket connection open
252
- WebSocket connection open
253
- WebSocket connection open
254
- WebSocket connection open
255
- WebSocket connection open
256
- WebSocket connection open
257
- WebSocket connection open
258
- WebSocket connection open
259
- WebSocket connection open
260
- WebSocket connection open
261
- WebSocket connection open
262
- WebSocket connection open
263
- WebSocket connection open
264
- WebSocket connection open
265
- WebSocket connection open
266
- WebSocket connection open
267
- WebSocket connection open
268
- WebSocket connection open
269
- Processing by ProductsController#index as HTML
270
- Rendering products/index.html.erb within layouts/application
271
- Rendered products/index.html.erb within layouts/application (0.1ms)
272
- Completed 200 OK in 3ms (Views: 2.2ms)
273
-
274
-
275
- WebSocket connection open
276
- WebSocket connection open
277
- WebSocket connection open
278
- WebSocket connection open
279
- WebSocket connection open
280
- WebSocket connection open
281
- WebSocket connection open
282
- WebSocket connection open
283
- WebSocket connection open
284
- WebSocket connection open
285
- WebSocket connection open
286
- WebSocket connection open
287
- WebSocket connection open
288
- WebSocket connection open
289
- WebSocket connection open
290
- WebSocket connection open
291
- WebSocket connection open
292
- WebSocket connection open
293
- WebSocket connection open
294
- WebSocket connection open
295
- WebSocket connection open
296
- WebSocket connection open
297
- WebSocket connection open
298
- WebSocket connection open
299
- WebSocket connection open
300
- WebSocket connection open
301
- WebSocket connection open
302
- WebSocket connection open
303
- WebSocket connection open
304
- WebSocket connection open
305
- WebSocket connection open
306
- WebSocket connection open
307
- WebSocket connection open
308
- WebSocket connection open
309
- WebSocket connection open
310
- WebSocket connection open
311
- WebSocket connection open
312
- WebSocket connection open
313
- WebSocket connection open
314
- WebSocket connection open
315
- WebSocket connection open
316
- WebSocket connection open
317
- WebSocket connection open
318
- WebSocket connection open
319
- WebSocket connection open
320
- WebSocket connection open
321
- WebSocket connection open
322
- WebSocket connection open
323
- WebSocket connection open
324
- WebSocket connection open
325
- WebSocket connection open
326
- WebSocket connection open
327
- WebSocket connection open
328
- WebSocket connection open
329
- WebSocket connection open
330
- WebSocket connection open
331
- WebSocket connection open
332
- WebSocket connection open
333
- WebSocket connection open
334
- WebSocket connection open
335
- WebSocket connection open
336
- WebSocket connection open
337
- WebSocket connection open
338
- WebSocket connection open
339
- WebSocket connection open
340
- WebSocket connection open
341
- WebSocket connection open
342
- WebSocket connection open
343
- WebSocket connection open
344
- WebSocket connection open
345
- WebSocket connection open
346
- WebSocket connection open
347
- WebSocket connection open
348
- WebSocket connection open
349
- WebSocket connection open
350
- WebSocket connection open
351
- WebSocket connection open
352
- WebSocket connection open
353
- WebSocket connection open
354
- WebSocket connection open
355
- WebSocket connection open
356
- WebSocket connection open
357
- WebSocket connection open
358
- WebSocket connection open
359
- WebSocket connection open
360
- WebSocket connection open
361
- WebSocket connection open
362
- WebSocket connection open
363
- WebSocket connection open
364
- WebSocket connection open
365
- WebSocket connection open
366
- WebSocket connection open
367
- WebSocket connection open
368
- WebSocket connection open
369
- WebSocket connection open
370
- WebSocket connection open
371
- Processing by ProductsController#index as HTML
372
- Rendering products/index.html.erb within layouts/application
373
- Rendered products/index.html.erb within layouts/application (0.0ms)
374
- Completed 200 OK in 3ms (Views: 2.1ms)
375
-
376
-
377
- WebSocket connection open
378
- WebSocket connection open
379
- WebSocket connection open
380
- WebSocket connection open
381
- WebSocket connection open
382
- WebSocket connection open
383
- WebSocket connection open
384
- WebSocket connection open
385
- WebSocket connection open
386
- WebSocket connection open
387
- WebSocket connection open
388
- WebSocket connection open
389
- WebSocket connection open
390
- WebSocket connection open
391
- WebSocket connection open
392
- WebSocket connection open
393
- WebSocket connection open
394
- WebSocket connection open
395
- WebSocket connection open
396
- WebSocket connection open
397
- WebSocket connection open
398
- WebSocket connection open
399
- WebSocket connection open
400
- WebSocket connection open
401
- WebSocket connection open
402
- WebSocket connection open
403
- WebSocket connection open
404
- WebSocket connection open
405
- WebSocket connection open
406
- WebSocket connection open
407
- WebSocket connection open
408
- WebSocket connection open
409
- WebSocket connection open
410
- WebSocket connection open
411
- WebSocket connection open
412
- WebSocket connection open
413
- WebSocket connection open
414
- WebSocket connection open
415
- WebSocket connection open
416
- WebSocket connection open
417
- WebSocket connection open
418
- WebSocket connection open
419
- WebSocket connection open
420
- WebSocket connection open
421
- WebSocket connection open
422
- WebSocket connection open
423
- WebSocket connection open
424
- WebSocket connection open
425
- WebSocket connection open
426
- WebSocket connection open
427
- WebSocket connection open
428
- Connection closed
429
- WebSocket connection open
430
- Processing by ProductsController#index as HTML
431
- Rendering products/index.html.erb within layouts/application
432
- Rendered products/index.html.erb within layouts/application (2.3ms)
433
- Completed 200 OK in 186ms (Views: 18.0ms)
434
-
435
-
436
- WebSocket connection open
437
- Processing by ProductsController#index as HTML
438
- Rendering products/index.html.erb within layouts/application
439
- Rendered products/index.html.erb within layouts/application (0.2ms)
440
- Completed 200 OK in 9ms (Views: 6.7ms)
441
-
442
-
443
- WebSocket connection open
444
- WebSocket connection open
445
- Processing by ProductsController#index as HTML
446
- Rendering products/index.html.erb within layouts/application
447
- Rendered products/index.html.erb within layouts/application (0.2ms)
448
- Completed 200 OK in 6ms (Views: 5.1ms)
449
-
450
-
451
- WebSocket connection open
452
- WebSocket connection open
453
- WebSocket connection open
454
- WebSocket connection open
455
- Processing by ProductsController#index as HTML
456
- Rendering products/index.html.erb within layouts/application
457
- Rendered products/index.html.erb within layouts/application (0.1ms)
458
- Completed 200 OK in 8ms (Views: 5.3ms)
459
-
460
-
461
- WebSocket connection open
462
- WebSocket connection open
463
- WebSocket connection open
464
- WebSocket connection open
465
- WebSocket connection open
466
- WebSocket connection open
467
- WebSocket connection open
468
- WebSocket connection open
469
- Processing by ProductsController#index as HTML
470
- Rendering products/index.html.erb within layouts/application
471
- Rendered products/index.html.erb within layouts/application (0.1ms)
472
- Completed 200 OK in 6ms (Views: 4.0ms)
473
-
474
-
475
- WebSocket connection open
476
- WebSocket connection open
477
- WebSocket connection open
478
- WebSocket connection open
479
- WebSocket connection open
480
- WebSocket connection open
481
- WebSocket connection open
482
- WebSocket connection open
483
- WebSocket connection open
484
- WebSocket connection open
485
- WebSocket connection open
486
- WebSocket connection open
487
- WebSocket connection open
488
- WebSocket connection open
489
- WebSocket connection open
490
- WebSocket connection open
491
- Processing by ProductsController#index as HTML
492
- Rendering products/index.html.erb within layouts/application
493
- Rendered products/index.html.erb within layouts/application (0.3ms)
494
- Completed 200 OK in 8ms (Views: 6.1ms)
495
-
496
-
497
- WebSocket connection open
498
- WebSocket connection open
499
- WebSocket connection open
500
- WebSocket connection open
501
- WebSocket connection open
502
- WebSocket connection open
503
- WebSocket connection open
504
- WebSocket connection open
505
- WebSocket connection open
506
- WebSocket connection open
507
- WebSocket connection open
508
- WebSocket connection open
509
- WebSocket connection open
510
- WebSocket connection open
511
- WebSocket connection open
512
- WebSocket connection open
513
- WebSocket connection open
514
- WebSocket connection open
515
- WebSocket connection open
516
- WebSocket connection open
517
- WebSocket connection open
518
- WebSocket connection open
519
- WebSocket connection open
520
- WebSocket connection open
521
- WebSocket connection open
522
- WebSocket connection open
523
- WebSocket connection open
524
- WebSocket connection open
525
- WebSocket connection open
526
- WebSocket connection open
527
- WebSocket connection open
528
- WebSocket connection open
529
- Processing by ProductsController#index as HTML
530
- Rendering products/index.html.erb within layouts/application
531
- Rendered products/index.html.erb within layouts/application (0.1ms)
532
- Completed 200 OK in 5ms (Views: 3.6ms)
533
-
534
-
535
- WebSocket connection open
536
- WebSocket connection open
537
- WebSocket connection open
538
- WebSocket connection open
539
- WebSocket connection open
540
- WebSocket connection open
541
- WebSocket connection open
542
- WebSocket connection open
543
- WebSocket connection open
544
- WebSocket connection open
545
- WebSocket connection open
546
- WebSocket connection open
547
- WebSocket connection open
548
- WebSocket connection open
549
- WebSocket connection open
550
- WebSocket connection open
551
- WebSocket connection open
552
- Processing by ProductsController#index as HTML
553
- Rendering products/index.html.erb within layouts/application
554
- Rendered products/index.html.erb within layouts/application (2.4ms)
555
- Completed 200 OK in 171ms (Views: 20.0ms)
556
-
557
-
558
- Connection closed
559
- WebSocket connection open
560
- Processing by ProductsController#index as HTML
561
- Rendering products/index.html.erb within layouts/application
562
- Rendered products/index.html.erb within layouts/application (1.6ms)
563
- Completed 200 OK in 155ms (Views: 11.3ms)
564
-
565
-
566
- WebSocket connection open
567
- Processing by ProductsController#index as HTML
568
- Rendering products/index.html.erb within layouts/application
569
- Rendered products/index.html.erb within layouts/application (0.1ms)
570
- Completed 200 OK in 6ms (Views: 4.3ms)
571
-
572
-
573
- WebSocket connection open
574
- WebSocket connection open
575
- Processing by ProductsController#index as HTML
576
- Processing by ProductsController#index as HTML
577
- Rendering products/index.html.erb within layouts/application
578
- Rendered products/index.html.erb within layouts/application (0.1ms)
579
- Completed 200 OK in 10ms (Views: 3.8ms)
580
-
581
-
582
- Rendering products/index.html.erb within layouts/application
583
- Rendered products/index.html.erb within layouts/application (0.4ms)
584
- WebSocket connection open
585
- Completed 200 OK in 1237ms (Views: 24.1ms)
586
-
587
-
588
- WebSocket connection open
589
- Processing by ProductsController#index as HTML
590
- WebSocket connection open
591
- Rendering products/index.html.erb within layouts/application
592
- Rendered products/index.html.erb within layouts/application (0.2ms)
593
- Completed 200 OK in 15ms (Views: 9.1ms)
594
-
595
-
596
- Processing by ProductsController#index as HTML
597
- WebSocket connection open
598
- WebSocket connection open
599
- Rendering products/index.html.erb within layouts/application
600
- Rendered products/index.html.erb within layouts/application (0.2ms)
601
- Completed 200 OK in 11ms (Views: 9.3ms)
602
-
603
-
604
- Processing by ProductsController#index as HTML
605
- Processing by ProductsController#index as HTML
606
- WebSocket connection open
607
- Rendering products/index.html.erb within layouts/application
608
- WebSocket connection open
609
- Rendering products/index.html.erb within layouts/application
610
- Rendered products/index.html.erb within layouts/application (0.1ms)
611
- Rendered products/index.html.erb within layouts/application (0.1ms)
612
- Completed 200 OK in 23ms (Views: 21.3ms)
613
-
614
-
615
- Processing by ProductsController#index as HTML
616
- Processing by ProductsController#index as HTML
617
- WebSocket connection open
618
- Completed 200 OK in 51ms (Views: 32.1ms)
619
-
620
-
621
- WebSocket connection open
622
- Rendering products/index.html.erb within layouts/application
623
- Rendering products/index.html.erb within layouts/application
624
- Connection closed
625
- Rendered products/index.html.erb within layouts/application (0.3ms)
626
- Rendered products/index.html.erb within layouts/application (0.2ms)
627
- Completed 200 OK in 3413ms (Views: 3408.7ms)
628
-
629
-
630
- Completed 200 OK in 3405ms (Views: 76.0ms)
631
-
632
-
633
- WebSocket connection open
634
- Invalid JSON String
635
- Connection closed
636
- WebSocket connection open
637
- Processing by ProductsController#index as HTML
638
- Rendering products/index.html.erb within layouts/application
639
- Rendered products/index.html.erb within layouts/application (2.6ms)
640
- Completed 200 OK in 190ms (Views: 16.6ms)
641
-
642
-
643
- WebSocket connection open
644
- Processing by ProductsController#index as HTML
645
- Rendering products/index.html.erb within layouts/application
646
- Rendered products/index.html.erb within layouts/application (0.1ms)
647
- Completed 200 OK in 6ms (Views: 4.6ms)
648
-
649
-
650
- WebSocket connection open
651
- WebSocket connection open
652
- Processing by ProductsController#index as HTML
653
- Processing by ProductsController#index as HTML
654
- Rendering products/index.html.erb within layouts/application
655
- Rendering products/index.html.erb within layouts/application
656
- Rendered products/index.html.erb within layouts/application (0.3ms)
657
- Rendered products/index.html.erb within layouts/application (0.2ms)
658
- Completed 200 OK in 9ms (Views: 7.2ms)
659
-
660
-
661
- Completed 200 OK in 18ms (Views: 16.2ms)
662
-
663
-
664
- WebSocket connection open
665
- WebSocket connection open
666
- WebSocket connection open
667
- WebSocket connection open
668
- WebSocket connection open
669
- WebSocket connection open
670
- Processing by ProductsController#index as HTML
671
- Rendering products/index.html.erb within layouts/application
672
- Rendered products/index.html.erb within layouts/application (0.2ms)
673
- Completed 200 OK in 10ms (Views: 6.9ms)
674
-
675
-
676
- WebSocket connection open
677
- Connection closed
678
- WebSocket connection open
679
- Processing by ProductsController#index as HTML
680
- Rendering products/index.html.erb within layouts/application
681
- Rendered products/index.html.erb within layouts/application (1.5ms)
682
- Completed 200 OK in 144ms (Views: 12.8ms)
683
-
684
-
685
- WebSocket connection open
686
- Processing by ProductsController#index as HTML
687
- Rendering products/index.html.erb within layouts/application
688
- Rendered products/index.html.erb within layouts/application (1.6ms)
689
- Completed 200 OK in 181ms (Views: 11.1ms)
690
-
691
-
692
- Connection closed
693
- WebSocket connection open
694
- Invalid JSON String
695
- Connection closed
696
- WebSocket connection open
697
- Invalid JSON String
698
- Connection closed
699
- WebSocket connection open
700
- Invalid JSON String
701
- WebSocket connection open
702
- Processing by ProductsController#index as HTML
703
- Rendering products/index.html.erb within layouts/application
704
- Rendered products/index.html.erb within layouts/application (2.7ms)
705
- Completed 200 OK in 212ms (Views: 20.2ms)
706
-
707
-
708
- Connection closed
709
- Connection open
710
- Processing by ProductsController#index as HTML
711
- Rendering products/index.html.erb within layouts/application
712
- Rendered products/index.html.erb within layouts/application (2.6ms)
713
- Completed 200 OK in 198ms (Views: 19.2ms)
714
-
715
-
716
- Connection open
717
- Processing by Rails::WelcomeController#index as HTML
718
- Rendering /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
719
- Rendered /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (7.4ms)
720
- Completed 200 OK in 169ms (Views: 13.0ms)
721
-
722
-
723
- Connection closed
724
- Connection open
725
- Processing by Rails::WelcomeController#index as HTML
726
- Rendering /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
727
- Rendered /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (4.5ms)
728
- Completed 200 OK in 128ms (Views: 9.2ms)
729
-
730
-
731
- Connection closed
732
- Connection open
733
- Processing by Rails::WelcomeController#index as HTML
734
- Rendering /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
735
- Rendered /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (4.6ms)
736
- Completed 200 OK in 143ms (Views: 10.2ms)
737
-
738
-
739
- Connection closed
740
- Connection open
741
- Processing by Rails::WelcomeController#index as HTML
742
- Rendering /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
743
- Rendered /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (5.1ms)
744
- Completed 200 OK in 285ms (Views: 10.8ms)
745
-
746
-
747
- Connection closed
748
- Connection open
749
- Processing by Rails::WelcomeController#index as HTML
750
- Rendering /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
751
- Rendered /home/plebel/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (4.6ms)
752
- Completed 200 OK in 96ms (Views: 10.2ms)
753
-
754
-
755
- Connection closed
756
- Connection open
757
- Processing by ProductsController#index as HTML
758
- Rendering products/index.html.erb within layouts/application
759
- Rendered products/index.html.erb within layouts/application (1.1ms)
760
- Completed 200 OK in 354ms (Views: 232.1ms)
761
-
762
-
763
- Connection closed
764
- Connection open
765
- Processing by ProductsController#index as HTML
766
- Rendering products/index.html.erb within layouts/application
767
- Rendered products/index.html.erb within layouts/application (1.5ms)
768
- Completed 200 OK in 307ms (Views: 186.9ms)
769
-
770
-
771
- Connection closed
772
- Connection open
773
- Processing by ProductsController#index as HTML
774
- Rendering products/index.html.erb within layouts/application
775
- Rendered products/index.html.erb within layouts/application (1.6ms)
776
- Completed 200 OK in 362ms (Views: 235.7ms)
777
-
778
-
779
- Connection closed
780
- Connection open
781
- Processing by ProductsController#index as HTML
782
- Rendering products/index.html.erb within layouts/application
783
- Rendered products/index.html.erb within layouts/application (1.1ms)
784
- Completed 200 OK in 316ms (Views: 229.7ms)
785
-
786
-
787
- Connection closed
788
- Connection open
789
- Processing by ProductsController#index as HTML
790
- Rendering products/index.html.erb within layouts/application
791
- Rendered products/index.html.erb within layouts/application (1.8ms)
792
- Completed 200 OK in 328ms (Views: 217.1ms)
793
-
794
-
795
- Connection closed
796
- Connection open
797
- Processing by ProductsController#index as HTML
798
- Rendering products/index.html.erb within layouts/application
799
- Rendered products/index.html.erb within layouts/application (1.6ms)
800
- Completed 200 OK in 357ms (Views: 214.4ms)
801
-
802
-
803
- Connection closed
804
- Connection open
805
- Processing by ProductsController#index as HTML
806
- Rendering products/index.html.erb within layouts/application
807
- Rendered products/index.html.erb within layouts/application (2.2ms)
808
- Completed 200 OK in 289ms (Views: 198.8ms)
809
-
810
-
811
- Connection closed
812
- Connection open
813
- Processing by ProductsController#index as HTML
814
- Rendering products/index.html.erb within layouts/application
815
- Rendered products/index.html.erb within layouts/application (1.7ms)
816
- Completed 200 OK in 192ms (Views: 12.9ms)
817
-
818
-
819
- Connection closed
820
- Connection open
821
- Processing by ProductsController#index as HTML
822
- Rendering products/index.html.erb within layouts/application
823
- Rendered products/index.html.erb within layouts/application (1.4ms)
824
- Completed 200 OK in 327ms (Views: 191.4ms)
825
-
826
-
827
- Connection closed
@@ -1,24 +0,0 @@
1
-  (0.1ms) begin transaction
2
-  (0.2ms) rollback transaction
3
-  (0.1ms) begin transaction
4
-  (0.1ms) rollback transaction
5
-  (0.1ms) begin transaction
6
-  (0.1ms) rollback transaction
7
-  (0.1ms) begin transaction
8
-  (0.2ms) rollback transaction
9
-  (0.1ms) begin transaction
10
-  (0.1ms) rollback transaction
11
-  (0.1ms) begin transaction
12
-  (0.1ms) rollback transaction
13
-  (0.0ms) begin transaction
14
-  (0.2ms) rollback transaction
15
-  (0.2ms) begin transaction
16
-  (0.1ms) rollback transaction
17
-  (0.1ms) begin transaction
18
-  (0.1ms) rollback transaction
19
-  (0.1ms) begin transaction
20
-  (0.1ms) rollback transaction
21
-  (0.1ms) begin transaction
22
-  (0.1ms) rollback transaction
23
-  (0.1ms) begin transaction
24
-  (0.2ms) rollback transaction