quby 5.0.0.pre1 → 5.0.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/lib/quby/questionnaires/deserializer.rb +6 -5
  3. data/lib/quby/version.rb +1 -1
  4. data/spec/features/tables_spec.rb +40 -0
  5. data/spec/internal/log/test-events.log +10 -0
  6. data/spec/internal/log/test.log +622 -0
  7. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.html +1 -0
  8. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.png +0 -0
  9. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.html +1 -0
  10. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.png +0 -0
  11. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.html +12 -0
  12. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.png +0 -0
  13. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.html +12 -0
  14. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.png +0 -0
  15. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.html +12 -0
  16. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.png +0 -0
  17. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.html +12 -0
  18. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.png +0 -0
  19. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.html +12 -0
  20. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.png +0 -0
  21. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.html +12 -0
  22. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.png +0 -0
  23. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.html +12 -0
  24. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.png +0 -0
  25. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.html +1 -0
  26. data/spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.png +0 -0
  27. metadata +43 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d344a78d772e4e8e4453a3c698152243750e60bc7a89e2e13c6f4d1cd68b334
4
- data.tar.gz: acd71c1add05e591048ddd0fae1e658fb3a2e32d3b04c886bb9566c0754de09b
3
+ metadata.gz: 4d19ac693a1e2e0530ead24bd6154f8fb6bd29b7d12cac079cd605d3b79329ec
4
+ data.tar.gz: d73d97a84f5b8d3fefd5655d3dc6663a069f4519c42f4cef3121b955630480f1
5
5
  SHA512:
6
- metadata.gz: 0ec1ef22216c6c83a8313cf7e98d499de62774677dc00d3b79543f5607e0e935d841fe5293f0d4babf1c45f26843c61d0fb436b6d4bb96c72ac47807061ae650
7
- data.tar.gz: c269f585150a10d2e27dc96cb22350f54b3f1ed73222b68cb1191d437d399145acdae18cf42f07674c2fb6ac37bb97930497a24c34c7b730d4fd0f5160ad26b1
6
+ metadata.gz: a9e02fcd7b0116a1c38a34b611a8e460cfa052f83b6b977bfcf67ffb8a1851ac15b2394294266bc97da6892fd9f96edc105312a021dd708dffca8c23aa76d272
7
+ data.tar.gz: 8cf3fb6290472a64a730747bd2b5824a952d012c679645d1ddc907754677e94c2dce93ee8b6892d8f4decc1ce13c81a3cba5debd05a8d7afaac3db292d15f832
@@ -82,7 +82,7 @@ module Quby
82
82
  )
83
83
 
84
84
  panel_json.fetch("items").each do |item_json|
85
- panel.items << load_item(questionnaire, item_json, panel: panel)
85
+ load_item(questionnaire, item_json, panel: panel)
86
86
  end
87
87
 
88
88
  questionnaire.add_panel(panel)
@@ -91,11 +91,11 @@ module Quby
91
91
  def self.load_item(questionnaire, item_json, panel: nil)
92
92
  case item_json.fetch("type")
93
93
  when "text"
94
- build_text(item_json)
94
+ panel.items << build_text(item_json)
95
95
  when "question"
96
96
  question = build_question(questionnaire, item_json)
97
97
  questionnaire.register_question(question)
98
- question
98
+ panel.items << question
99
99
  when "table"
100
100
  table = Entities::Table.new(
101
101
  title: item_json.fetch("title"),
@@ -103,6 +103,7 @@ module Quby
103
103
  columns: item_json.fetch("columns"),
104
104
  show_option_desc: item_json.fetch("show_option_desc"),
105
105
  )
106
+ panel.items << table
106
107
 
107
108
  item_json.fetch("items").each do |table_item_json|
108
109
  case table_item_json.fetch("type")
@@ -117,8 +118,6 @@ module Quby
117
118
  raise "Unknown table item: #{table_item_json}"
118
119
  end
119
120
  end
120
-
121
- table
122
121
  else
123
122
  raise "Unknown item: #{item_json}"
124
123
  end
@@ -150,6 +149,8 @@ module Quby
150
149
  default_position: item_json.fetch("default_position"),
151
150
  validations: item_json.fetch("validations").map {|attrs| build_question_validation(attrs)},
152
151
  table: table,
152
+ col_span: item_json.fetch("col_span"),
153
+ row_span: item_json.fetch("row_span"),
153
154
 
154
155
  # only selectable via options passed in DSL, not via DSL methods
155
156
  # many apply only to certain types of questions
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Quby
4
- VERSION = "5.0.0.pre1"
4
+ VERSION = "5.0.0.pre2"
5
5
  end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ feature 'tables', js: true do
6
+ scenario 'tables with radios' do
7
+ questionnaire = inject_questionnaire("test", <<-END)
8
+ custom_method :wonen_vraag do |key, options = {}|
9
+ text "\#{options[:hulpverlener]}", col_span: 3
10
+
11
+ question "\#{key}a".to_sym, type: :radio, col_span: 2, **options do
12
+ option :a1, value: 1, description: "Ja"
13
+ option :a0, value: 0, description: "Nee"
14
+ end
15
+ question "\#{key}b".to_sym, type: :integer, col_span: 2, **options do
16
+ size "2"
17
+ validates_in_range 1..92
18
+ end
19
+ end
20
+
21
+ panel do
22
+ title "Foo"
23
+
24
+ table columns: 7, show_option_desc: true do
25
+ text "", col_span: 3
26
+ text "*Contact gehad?*", col_span: 2
27
+ text "*Totaal aantal contacten* <sup>1.</sup>", col_span: 2
28
+ wonen_vraag :v_24, instelling: "Foo", hulpverlener: "*A*"
29
+ wonen_vraag :v_25, instelling: "Foo", hulpverlener: "*B*"
30
+ wonen_vraag :v_26, instelling: "Foo", hulpverlener: "*C*"
31
+ wonen_vraag :v_27, instelling: "Foo", hulpverlener: "*D*"
32
+ end
33
+ end
34
+ END
35
+
36
+ answer = create_new_answer_for(questionnaire)
37
+ visit_new_answer_for(questionnaire, 'paged', answer)
38
+ expect(page).to have_content 'Foo'
39
+ end
40
+ end
@@ -11554,3 +11554,13 @@ I, [2020-10-27T14:25:41.612619 #36403] INFO -- : .web {"uuid":"98736afc9e16638e
11554
11554
  I, [2020-10-27T14:25:41.789637 #36403] INFO -- : .web {"uuid":"98736afc9e16638eb063","method":"PUT","path":"/quby/questionnaires/test/answers/cf2de6bb-dba4-4fcd-8824-3b15ba56be58","format":"js","controller":"quby/answers","action":"update","status":200,"params":{"utf8":"✓","_method":"put","token":"","hmac":"","timestamp":"","return_url":"","return_token":"","display_mode":"paged","rendered_at":"1603805141","answer":{"v_select":"a0","v_ck_a1":"1","v_ck_a2":"0","v_string":"","v_integer":"","v_float":"","v_date_day":"","v_date_month":"","v_date_year":""},"done":"Klaar","questionnaire_id":"test","id":"cf2de6bb-dba4-4fcd-8824-3b15ba56be58"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":1.53,"view":0.4}
11555
11555
  I, [2020-10-27T14:25:41.855881 #36403] INFO -- : .web {"uuid":"98736afc9e16638eb063","method":"GET","path":"/quby/questionnaires/test/answers/500eb58e-bc57-4f9d-8866-8242be3d3bf4/edit","format":"html","controller":"quby/answers","action":"edit","status":200,"params":{"display_mode":"paged","questionnaire_id":"test","id":"500eb58e-bc57-4f9d-8866-8242be3d3bf4"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":9.73,"view":9.06}
11556
11556
  I, [2020-10-27T14:25:42.011208 #36403] INFO -- : .web {"uuid":"98736afc9e16638eb063","method":"PUT","path":"/quby/questionnaires/test/answers/500eb58e-bc57-4f9d-8866-8242be3d3bf4","format":"js","controller":"quby/answers","action":"update","status":200,"params":{"utf8":"✓","_method":"put","token":"","hmac":"","timestamp":"","return_url":"","return_token":"","display_mode":"paged","rendered_at":"1603805141","answer":{"v_select":"a0","v_ck_a1":"0","v_ck_a2":"0","v_string":"kittens!","v_integer":"","v_float":"","v_date_day":"","v_date_month":"","v_date_year":""},"done":"Klaar","questionnaire_id":"test","id":"500eb58e-bc57-4f9d-8866-8242be3d3bf4"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":1.48,"view":0.38}
11557
+ I, [2020-10-27T18:24:43.790252 #18788] INFO -- : .web {"uuid":"2ec536b81f4ac5db3b2d","method":"GET","path":"/quby/questionnaires/test/answers/0555aa3c-7131-4a33-b22c-9226f2a0be19/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007fb37b23fda8\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"0555aa3c-7131-4a33-b22c-9226f2a0be19"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":14452.17}
11558
+ I, [2020-10-27T18:25:04.580809 #19114] INFO -- : .web {"uuid":"1ac500d796d802de62da","method":"GET","path":"/quby/questionnaires/test/answers/7210c4c1-038e-4e53-8547-a2dfb764b93d/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007fbce92cfb70\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"7210c4c1-038e-4e53-8547-a2dfb764b93d"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":347.51}
11559
+ I, [2020-10-27T18:25:11.638582 #19257] INFO -- : .web {"uuid":"b17758e73926a5a876b7","method":"GET","path":"/quby/questionnaires/test/answers/ac2448f5-8f46-4176-bb13-3d1c280fa748/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007fb1bcff8348\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"ac2448f5-8f46-4176-bb13-3d1c280fa748"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":353.63}
11560
+ I, [2020-10-27T18:26:25.061906 #20413] INFO -- : .web {"uuid":"84348b4bdc0c7eb85b01","method":"GET","path":"/quby/questionnaires/test/answers/e57379e4-4650-4807-b226-2df003ae99d3/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007feee3d64b40\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"e57379e4-4650-4807-b226-2df003ae99d3"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":344.97}
11561
+ I, [2020-10-27T18:26:56.976491 #20723] INFO -- : .web {"uuid":"548a48abb942a054de2a","method":"GET","path":"/quby/questionnaires/test/answers/aee22152-eb36-4a5a-b20a-12665bc48a67/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007fb9f34fb668\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"aee22152-eb36-4a5a-b20a-12665bc48a67"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":337.52}
11562
+ I, [2020-10-27T18:27:13.495180 #20914] INFO -- : .web {"uuid":"66e1d1271755327fbc43","method":"GET","path":"/quby/questionnaires/test/answers/ebbc45c5-6c59-4799-ac6e-0d280a87a505/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007f94066fb5c0\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"ebbc45c5-6c59-4799-ac6e-0d280a87a505"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":346.61}
11563
+ I, [2020-10-27T18:27:45.424257 #21162] INFO -- : .web {"uuid":"499d9324943198d893cd","method":"GET","path":"/quby/questionnaires/test/answers/e9f6798f-d5ad-4e56-9178-e86e6543682e/edit","format":"html","controller":"quby/answers","action":"edit","status":500,"error":"ActionView::Template::Error:undefined method `inner_title' for #\u003cQuby::Questionnaires::Entities::Text:0x00007fa86db69f78\u003e","params":{"display_mode":"paged","questionnaire_id":"test","id":"e9f6798f-d5ad-4e56-9178-e86e6543682e"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":347.43}
11564
+ I, [2020-10-27T18:33:00.478397 #23652] INFO -- : .web {"uuid":"ac4608c03cc5a53c1fa9","method":"GET","path":"/quby/questionnaires/test/answers/db245e22-1fec-4b66-b8c0-90c6a69c38a1/edit","format":"html","controller":"quby/answers","action":"edit","status":200,"params":{"display_mode":"paged","questionnaire_id":"test","id":"db245e22-1fec-4b66-b8c0-90c6a69c38a1"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":700.32,"view":691.59}
11565
+ I, [2020-10-27T18:33:38.343416 #24055] INFO -- : .web {"uuid":"56ba5dc28cdd6449bc69","method":"GET","path":"/quby/questionnaires/test/answers/532cbd8e-9ebc-4910-955b-70e4bd221da7/edit","format":"html","controller":"quby/answers","action":"edit","status":200,"params":{"display_mode":"paged","questionnaire_id":"test","id":"532cbd8e-9ebc-4910-955b-70e4bd221da7"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":623.57,"view":618.04}
11566
+ I, [2020-10-27T18:34:02.650123 #24299] INFO -- : .web {"uuid":"c1d957288551c519d26d","method":"GET","path":"/quby/questionnaires/test/answers/2fbef9f0-4039-4510-b7f8-961f992924ca/edit","format":"html","controller":"quby/answers","action":"edit","status":200,"params":{"display_mode":"paged","questionnaire_id":"test","id":"2fbef9f0-4039-4510-b7f8-961f992924ca"},"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36","session_id":null,"session":{},"duration":563.37,"view":557.14}
@@ -484905,3 +484905,625 @@ Processing by Quby::AnswersController#update as JS
484905
484905
  Rendered /Users/marten/rgoc/quby/app/views/quby/v1/completed.html.haml within quby/v1/layouts/content_only (0.1ms)
484906
484906
  Post-request session hash: {}
484907
484907
  Completed 200 OK in 2ms (Views: 0.4ms)
484908
+ Started GET "/quby/questionnaires/test/answers/0555aa3c-7131-4a33-b22c-9226f2a0be19/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:24:29 +0100
484909
+ Processing by Quby::AnswersController#edit as HTML
484910
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"0555aa3c-7131-4a33-b22c-9226f2a0be19"}
484911
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
484912
+ Session ID:
484913
+ Process PID: 18788
484914
+ Pre-request session hash: {}
484915
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
484916
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.4ms)
484917
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (2.7ms)
484918
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (3.7ms)
484919
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (3.6ms)
484920
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484921
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484922
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (1.8ms)
484923
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484924
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
484925
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484926
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484927
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484928
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484929
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
484930
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (1.4ms)
484931
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (55.1ms)
484932
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484933
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
484934
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (255.4ms)
484935
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (3.1ms)
484936
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
484937
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484938
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484939
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484940
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484941
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.6ms)
484942
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484943
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
484944
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484945
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
484946
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
484947
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
484948
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484949
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484950
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
484951
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484952
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484953
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484954
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484955
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
484956
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
484957
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
484958
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484959
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484960
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.2ms)
484961
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (14407.3ms)
484962
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (14414.7ms)
484963
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (14432.5ms)
484964
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (14441.1ms)
484965
+ Completed 500 Internal Server Error in 14453ms
484966
+ Started GET "/quby/questionnaires/test/answers/7210c4c1-038e-4e53-8547-a2dfb764b93d/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:25:04 +0100
484967
+ Processing by Quby::AnswersController#edit as HTML
484968
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"7210c4c1-038e-4e53-8547-a2dfb764b93d"}
484969
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
484970
+ Session ID:
484971
+ Process PID: 19114
484972
+ Pre-request session hash: {}
484973
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
484974
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.2ms)
484975
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (3.6ms)
484976
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (3.7ms)
484977
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (6.2ms)
484978
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484979
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484980
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.5ms)
484981
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484982
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484983
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484984
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484985
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484986
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484987
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
484988
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.5ms)
484989
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (56.6ms)
484990
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
484991
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.3ms)
484992
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (201.6ms)
484993
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.9ms)
484994
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
484995
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484996
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484997
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484998
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
484999
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.6ms)
485000
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485001
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485002
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485003
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485004
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.2ms)
485005
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485006
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485007
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485008
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485009
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.1ms)
485010
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485011
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485012
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485013
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485014
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485015
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485016
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485017
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485018
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.1ms)
485019
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (304.2ms)
485020
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (311.8ms)
485021
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (329.6ms)
485022
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (337.5ms)
485023
+ Completed 500 Internal Server Error in 348ms
485024
+ Started GET "/quby/questionnaires/test/answers/ac2448f5-8f46-4176-bb13-3d1c280fa748/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:25:11 +0100
485025
+ Processing by Quby::AnswersController#edit as HTML
485026
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"ac2448f5-8f46-4176-bb13-3d1c280fa748"}
485027
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485028
+ Session ID:
485029
+ Process PID: 19257
485030
+ Pre-request session hash: {}
485031
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485032
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.5ms)
485033
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (3.0ms)
485034
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (4.1ms)
485035
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (6.2ms)
485036
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.4ms)
485037
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485038
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (2.9ms)
485039
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485040
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485041
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485042
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485043
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.4ms)
485044
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485045
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485046
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (3.2ms)
485047
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (60.6ms)
485048
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485049
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485050
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (201.3ms)
485051
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.9ms)
485052
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485053
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485054
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485055
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485056
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485057
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.6ms)
485058
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485059
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485060
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485061
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485062
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485063
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485064
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485065
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485066
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485067
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485068
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485069
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485070
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485071
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485072
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485073
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485074
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485075
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485076
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.1ms)
485077
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (309.8ms)
485078
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (317.7ms)
485079
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (335.1ms)
485080
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (343.6ms)
485081
+ Completed 500 Internal Server Error in 354ms
485082
+ Started GET "/quby/questionnaires/test/answers/e57379e4-4650-4807-b226-2df003ae99d3/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:26:24 +0100
485083
+ Processing by Quby::AnswersController#edit as HTML
485084
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"e57379e4-4650-4807-b226-2df003ae99d3"}
485085
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485086
+ Session ID:
485087
+ Process PID: 20413
485088
+ Pre-request session hash: {}
485089
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485090
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.2ms)
485091
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (2.8ms)
485092
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (3.8ms)
485093
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (6.4ms)
485094
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485095
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485096
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.7ms)
485097
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485098
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485099
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485100
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485101
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485102
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485103
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485104
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.7ms)
485105
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (58.6ms)
485106
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485107
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485108
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (196.1ms)
485109
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (3.0ms)
485110
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485111
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485112
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485113
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485114
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485115
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.6ms)
485116
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485117
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485118
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485119
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485120
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.2ms)
485121
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485122
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485123
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485124
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485125
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485126
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485127
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485128
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485129
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485130
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485131
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485132
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485133
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485134
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.0ms)
485135
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (302.0ms)
485136
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (309.7ms)
485137
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (327.4ms)
485138
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (335.5ms)
485139
+ Completed 500 Internal Server Error in 345ms
485140
+ Started GET "/quby/questionnaires/test/answers/aee22152-eb36-4a5a-b20a-12665bc48a67/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:26:56 +0100
485141
+ Processing by Quby::AnswersController#edit as HTML
485142
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"aee22152-eb36-4a5a-b20a-12665bc48a67"}
485143
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485144
+ Session ID:
485145
+ Process PID: 20723
485146
+ Pre-request session hash: {}
485147
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485148
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.1ms)
485149
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (2.8ms)
485150
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (3.9ms)
485151
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (5.9ms)
485152
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485153
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485154
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (2.7ms)
485155
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485156
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.4ms)
485157
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485158
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485159
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485160
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485161
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485162
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.7ms)
485163
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (56.7ms)
485164
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485165
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485166
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (194.8ms)
485167
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.8ms)
485168
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485169
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485170
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485171
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485172
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485173
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.5ms)
485174
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485175
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485176
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485177
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485178
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485179
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485180
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485181
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485182
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485183
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485184
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485185
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485186
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485187
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485188
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485189
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485190
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485191
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485192
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.0ms)
485193
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (295.9ms)
485194
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (302.9ms)
485195
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (319.8ms)
485196
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (327.5ms)
485197
+ Completed 500 Internal Server Error in 338ms
485198
+ Started GET "/quby/questionnaires/test/answers/ebbc45c5-6c59-4799-ac6e-0d280a87a505/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:27:13 +0100
485199
+ Processing by Quby::AnswersController#edit as HTML
485200
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"ebbc45c5-6c59-4799-ac6e-0d280a87a505"}
485201
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485202
+ Session ID:
485203
+ Process PID: 20914
485204
+ Pre-request session hash: {}
485205
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485206
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.3ms)
485207
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (3.6ms)
485208
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (5.8ms)
485209
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (4.7ms)
485210
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485211
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485212
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.2ms)
485213
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485214
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.4ms)
485215
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485216
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485217
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485218
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485219
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485220
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.3ms)
485221
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (55.0ms)
485222
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485223
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485224
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (199.8ms)
485225
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (3.0ms)
485226
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485227
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485228
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485229
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485230
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485231
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.7ms)
485232
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485233
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485234
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485235
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485236
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.2ms)
485237
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485238
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485239
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485240
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485241
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.1ms)
485242
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485243
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485244
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485245
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485246
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485247
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485248
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485249
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485250
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.1ms)
485251
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (299.8ms)
485252
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (307.1ms)
485253
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (328.3ms)
485254
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (336.9ms)
485255
+ Completed 500 Internal Server Error in 347ms
485256
+ Started GET "/quby/questionnaires/test/answers/e9f6798f-d5ad-4e56-9178-e86e6543682e/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:27:45 +0100
485257
+ Processing by Quby::AnswersController#edit as HTML
485258
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"e9f6798f-d5ad-4e56-9178-e86e6543682e"}
485259
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485260
+ Session ID:
485261
+ Process PID: 21162
485262
+ Pre-request session hash: {}
485263
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485264
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.8ms)
485265
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (4.1ms)
485266
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (5.9ms)
485267
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (5.2ms)
485268
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485269
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485270
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.3ms)
485271
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485272
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485273
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485274
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485275
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485276
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485277
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485278
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.7ms)
485279
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (53.9ms)
485280
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485281
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485282
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (197.6ms)
485283
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.9ms)
485284
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485285
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485286
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485287
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485288
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485289
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (1.6ms)
485290
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485291
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485292
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485293
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485294
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485295
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485296
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485297
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485298
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485299
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485300
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485301
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485302
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485303
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_main_label.html.haml (0.0ms)
485304
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485305
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485306
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485307
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485308
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (3.1ms)
485309
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (298.1ms)
485310
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (305.6ms)
485311
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (327.2ms)
485312
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (336.9ms)
485313
+ Completed 500 Internal Server Error in 348ms
485314
+ Started GET "/quby/questionnaires/test/answers/db245e22-1fec-4b66-b8c0-90c6a69c38a1/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:32:59 +0100
485315
+ Processing by Quby::AnswersController#edit as HTML
485316
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"db245e22-1fec-4b66-b8c0-90c6a69c38a1"}
485317
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485318
+ Session ID:
485319
+ Process PID: 23652
485320
+ Pre-request session hash: {}
485321
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485322
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (2.8ms)
485323
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (5.0ms)
485324
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (5.9ms)
485325
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (2.4ms)
485326
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485327
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485328
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (1.5ms)
485329
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485330
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485331
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485332
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485333
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485334
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485335
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (1.4ms)
485336
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (46.6ms)
485337
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485338
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485339
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (205.0ms)
485340
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (3.0ms)
485341
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485342
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485343
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485344
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485345
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485346
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.2ms)
485347
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485348
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485349
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485350
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485351
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485352
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485353
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485354
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485355
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485356
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485357
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485358
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485359
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485360
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485361
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485362
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485363
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485364
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485365
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485366
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485367
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485368
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485369
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485370
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485371
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (285.6ms)
485372
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (294.4ms)
485373
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_pdf_button.html.haml (336.1ms)
485374
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (659.4ms)
485375
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_footer_javascript.html.haml (2.4ms)
485376
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_modal_iframe.html.haml (1.0ms)
485377
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (679.8ms)
485378
+ Post-request session hash: {}
485379
+ Completed 200 OK in 701ms (Views: 691.6ms)
485380
+ Started GET "/assets/quby/application-613d22026324a8ae8b7c205fd32e0719011164fdd9ca34aad1483b1b74721932.css" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485381
+ Started GET "/assets/quby/application-ac694f928c966ab7ccbc92caffa6581288a3669caf09163778be2cfaf3e47ba2.js" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485382
+ Started GET "/assets/quby/disable_keys-72d21d5eab421fd3b0709bf0f5ead2bfe5e824a2060d20ce56e2c3ecf3edf8aa.js" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485383
+ Started GET "/assets/quby/answers-72b3815aba9fa0fcc608ae7405efb641abedfa5cd62c60a8c824063a3ff22137.js" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485384
+ Started GET "/assets/quby/pdf-f359df32ce6a12283052679fb5f48e210c5441400f1ddee7edca611fdf722864.gif" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485385
+ Started GET "/assets/quby/print-2c9d02886ac8119671ccec3fe13a025efd1086b5355927d242d524ffbb358ab4.css" for 127.0.0.1 at 2020-10-27 18:33:00 +0100
485386
+ Started GET "/quby/questionnaires/test/answers/532cbd8e-9ebc-4910-955b-70e4bd221da7/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:33:37 +0100
485387
+ Processing by Quby::AnswersController#edit as HTML
485388
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"532cbd8e-9ebc-4910-955b-70e4bd221da7"}
485389
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485390
+ Session ID:
485391
+ Process PID: 24055
485392
+ Pre-request session hash: {}
485393
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485394
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.2ms)
485395
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (3.8ms)
485396
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (6.0ms)
485397
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (5.3ms)
485398
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485399
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485400
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.2ms)
485401
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485402
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485403
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485404
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485405
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485406
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485407
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.6ms)
485408
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (52.8ms)
485409
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485410
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485411
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (202.7ms)
485412
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.8ms)
485413
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485414
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485415
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485416
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485417
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485418
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485419
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485420
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485421
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485422
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485423
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485424
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485425
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485426
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485427
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485428
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485429
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485430
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485431
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485432
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485433
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485434
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485435
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485436
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485437
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485438
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485439
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485440
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485441
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485442
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485443
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (296.5ms)
485444
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (303.9ms)
485445
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_pdf_button.html.haml (269.7ms)
485446
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (595.2ms)
485447
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_footer_javascript.html.haml (1.5ms)
485448
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_modal_iframe.html.haml (0.9ms)
485449
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (609.2ms)
485450
+ Post-request session hash: {}
485451
+ Completed 200 OK in 624ms (Views: 618.0ms)
485452
+ Started GET "/assets/quby/disable_keys-72d21d5eab421fd3b0709bf0f5ead2bfe5e824a2060d20ce56e2c3ecf3edf8aa.js" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485453
+ Started GET "/assets/quby/application-613d22026324a8ae8b7c205fd32e0719011164fdd9ca34aad1483b1b74721932.css" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485454
+ Started GET "/assets/quby/application-ac694f928c966ab7ccbc92caffa6581288a3669caf09163778be2cfaf3e47ba2.js" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485455
+ Started GET "/assets/quby/answers-72b3815aba9fa0fcc608ae7405efb641abedfa5cd62c60a8c824063a3ff22137.js" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485456
+ Started GET "/assets/quby/pdf-f359df32ce6a12283052679fb5f48e210c5441400f1ddee7edca611fdf722864.gif" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485457
+ Started GET "/assets/quby/print-2c9d02886ac8119671ccec3fe13a025efd1086b5355927d242d524ffbb358ab4.css" for 127.0.0.1 at 2020-10-27 18:33:38 +0100
485458
+ Started GET "/quby/questionnaires/test/answers/2fbef9f0-4039-4510-b7f8-961f992924ca/edit?display_mode=paged" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485459
+ Processing by Quby::AnswersController#edit as HTML
485460
+ Parameters: {"display_mode"=>"paged", "questionnaire_id"=>"test", "id"=>"2fbef9f0-4039-4510-b7f8-961f992924ca"}
485461
+ User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.111 Safari/537.36
485462
+ Session ID:
485463
+ Process PID: 24299
485464
+ Pre-request session hash: {}
485465
+ Rendering /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application
485466
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_session_params.html.haml (1.3ms)
485467
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_hotkey_dialog.html.haml (3.5ms)
485468
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_backbone_panel.html.haml (6.1ms)
485469
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (5.2ms)
485470
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485471
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485472
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (3.6ms)
485473
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485474
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485475
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485476
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.4ms)
485477
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485478
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485479
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (2.9ms)
485480
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (52.5ms)
485481
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485482
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485483
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (199.5ms)
485484
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (2.9ms)
485485
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485486
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485487
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485488
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485489
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485490
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485491
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485492
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485493
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485494
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485495
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485496
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485497
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485498
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.1ms)
485499
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485500
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485501
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485502
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485503
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485504
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485505
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485506
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485507
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_table_header.html.haml (0.0ms)
485508
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_text.html.haml (0.0ms)
485509
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485510
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485511
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.0ms)
485512
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_option_radio.html.haml (0.1ms)
485513
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_validations.html.haml (0.1ms)
485514
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_item_question_number.html.haml (0.1ms)
485515
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/table/_table.html.haml (292.5ms)
485516
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_item.html.haml [9 times] (300.5ms)
485517
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_pdf_button.html.haml (211.5ms)
485518
+ Rendered collection of /Users/marten/rgoc/quby/app/views/quby/v1/paged/_panel.html.haml [1 times] (534.2ms)
485519
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/shared/_footer_javascript.html.haml (1.1ms)
485520
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/_modal_iframe.html.haml (0.8ms)
485521
+ Rendered /Users/marten/rgoc/quby/app/views/quby/v1/paged.html.haml within quby/v1/layouts/application (547.6ms)
485522
+ Post-request session hash: {}
485523
+ Completed 200 OK in 564ms (Views: 557.1ms)
485524
+ Started GET "/assets/quby/application-613d22026324a8ae8b7c205fd32e0719011164fdd9ca34aad1483b1b74721932.css" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485525
+ Started GET "/assets/quby/disable_keys-72d21d5eab421fd3b0709bf0f5ead2bfe5e824a2060d20ce56e2c3ecf3edf8aa.js" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485526
+ Started GET "/assets/quby/application-ac694f928c966ab7ccbc92caffa6581288a3669caf09163778be2cfaf3e47ba2.js" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485527
+ Started GET "/assets/quby/answers-72b3815aba9fa0fcc608ae7405efb641abedfa5cd62c60a8c824063a3ff22137.js" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485528
+ Started GET "/assets/quby/pdf-f359df32ce6a12283052679fb5f48e210c5441400f1ddee7edca611fdf722864.gif" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
485529
+ Started GET "/assets/quby/print-2c9d02886ac8119671ccec3fe13a025efd1086b5355927d242d524ffbb358ab4.css" for 127.0.0.1 at 2020-10-27 18:34:02 +0100
@@ -0,0 +1 @@
1
+ <html><head></head><body></body></html>
@@ -0,0 +1 @@
1
+ <html><head></head><body></body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007fb37b23fda8&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60000
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007fbce92cfb70&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60033
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007fb1bcff8348&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60049
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007feee3d64b40&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60115
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007fb9f34fb668&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60151
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007f94066fb5c0&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60173
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1,12 @@
1
+ <html><head><title>Internal Server Error</title></head>
2
+ <body>
3
+ <h1>Internal Server Error</h1>
4
+ undefined method `inner_title' for #&lt;Quby::Questionnaires::Entities::Text:0x00007fa86db69f78&gt;
5
+ <hr>
6
+ <address>
7
+ WEBrick/1.4.2 (Ruby/2.5.5/2019-03-15) at
8
+ 127.0.0.1:60213
9
+ </address>
10
+
11
+
12
+ </body></html>
@@ -0,0 +1 @@
1
+ <html><head></head><body></body></html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.pre1
4
+ version: 5.0.0.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marten Veldthuis
@@ -845,6 +845,7 @@ files:
845
845
  - spec/features/question_validations/string_question_spec.rb
846
846
  - spec/features/question_validations/text_area_question_spec.rb
847
847
  - spec/features/save_subquestion_clash_spec.rb
848
+ - spec/features/tables_spec.rb
848
849
  - spec/features/text_var_spec.rb
849
850
  - spec/fixtures/aged_score_interpretations.rb
850
851
  - spec/fixtures/all_validations.rb
@@ -6326,6 +6327,26 @@ files:
6326
6327
  - spec/internal/tmp/capybara/screenshot_2020-10-22-10-23-52.495.png
6327
6328
  - spec/internal/tmp/capybara/screenshot_2020-10-27-14-25-21.063.html
6328
6329
  - spec/internal/tmp/capybara/screenshot_2020-10-27-14-25-21.063.png
6330
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.html
6331
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.png
6332
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.html
6333
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.png
6334
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.html
6335
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.png
6336
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.html
6337
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.png
6338
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.html
6339
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.png
6340
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.html
6341
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.png
6342
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.html
6343
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.png
6344
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.html
6345
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.png
6346
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.html
6347
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.png
6348
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.html
6349
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.png
6329
6350
  - spec/javascripts/ajax_callbacks_spec.coffee
6330
6351
  - spec/javascripts/flag_spec.coffee
6331
6352
  - spec/javascripts/flags_collection_spec.coffee
@@ -6537,6 +6558,7 @@ test_files:
6537
6558
  - spec/features/allow_switching_to_bulk_spec.rb
6538
6559
  - spec/features/save_subquestion_clash_spec.rb
6539
6560
  - spec/features/better_range_inputs_spec.rb
6561
+ - spec/features/tables_spec.rb
6540
6562
  - spec/internal/screenshot_2019-08-13-09-58-24.772.png
6541
6563
  - spec/internal/screenshot_2019-08-13-09-58-33.281.png
6542
6564
  - spec/internal/screenshot_2019-08-13-09-58-11.102.png
@@ -10603,6 +10625,7 @@ test_files:
10603
10625
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-04.786.html
10604
10626
  - spec/internal/tmp/capybara/screenshot_2020-10-22-10-23-46.782.html
10605
10627
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-49.864.html
10628
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.html
10606
10629
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-12-30.478.png
10607
10630
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-49-42.807.html
10608
10631
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-35-27.064.png
@@ -10644,6 +10667,7 @@ test_files:
10644
10667
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-05.725.html
10645
10668
  - spec/internal/tmp/capybara/screenshot_2020-10-19-11-45-36.085.html
10646
10669
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-35-26.307.html
10670
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.png
10647
10671
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-36-52.542.html
10648
10672
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-53-32.214.html
10649
10673
  - spec/internal/tmp/capybara/screenshot_2020-06-05-14-53-52.593.png
@@ -10876,6 +10900,7 @@ test_files:
10876
10900
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-36.979.png
10877
10901
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-05.725.png
10878
10902
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-59.316.html
10903
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.png
10879
10904
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-50-50.605.html
10880
10905
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-44-40.167.html
10881
10906
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-22-38.621.html
@@ -10976,6 +11001,7 @@ test_files:
10976
11001
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-04.716.png
10977
11002
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-04.064.png
10978
11003
  - spec/internal/tmp/capybara/screenshot_2020-10-12-12-10-03.169.html
11004
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.png
10979
11005
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-47.138.html
10980
11006
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-05.159.html
10981
11007
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-05.446.png
@@ -10985,6 +11011,7 @@ test_files:
10985
11011
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-33-57.241.png
10986
11012
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-49.527.html
10987
11013
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-04.476.png
11014
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.html
10988
11015
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-57-00.198.png
10989
11016
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-03.093.html
10990
11017
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-54-20.476.png
@@ -11028,6 +11055,7 @@ test_files:
11028
11055
  - spec/internal/tmp/capybara/screenshot_2020-10-16-21-19-25.441.png
11029
11056
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-21-47.372.html
11030
11057
  - spec/internal/tmp/capybara/screenshot_2020-10-13-10-45-26.051.png
11058
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-45.475.png
11031
11059
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-14.972.html
11032
11060
  - spec/internal/tmp/capybara/screenshot_2020-10-20-12-37-36.945.html
11033
11061
  - spec/internal/tmp/capybara/screenshot_2020-10-22-10-23-52.495.png
@@ -11141,6 +11169,7 @@ test_files:
11141
11169
  - spec/internal/tmp/capybara/screenshot_2020-05-20-16-42-31.716.png
11142
11170
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-03.738.html
11143
11171
  - spec/internal/tmp/capybara/screenshot_2020-06-05-14-54-12.848.html
11172
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-24-43.842.html
11144
11173
  - spec/internal/tmp/capybara/screenshot_2020-10-12-10-03-18.132.png
11145
11174
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-47.166.png
11146
11175
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-11.290.png
@@ -11154,6 +11183,7 @@ test_files:
11154
11183
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-04.876.png
11155
11184
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-13.298.html
11156
11185
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-06.025.html
11186
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.png
11157
11187
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-09.692.png
11158
11188
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-04.309.png
11159
11189
  - spec/internal/tmp/capybara/screenshot_2020-10-22-10-23-35.247.html
@@ -11231,6 +11261,7 @@ test_files:
11231
11261
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-09.969.html
11232
11262
  - spec/internal/tmp/capybara/screenshot_2020-10-13-10-05-48.567.png
11233
11263
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-05.425.html
11264
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-27-13.545.png
11234
11265
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-33-58.621.png
11235
11266
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-12-30.478.html
11236
11267
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-10-00.637.html
@@ -11296,6 +11327,7 @@ test_files:
11296
11327
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-24.994.png
11297
11328
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-57-01.340.html
11298
11329
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-35.824.html
11330
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.html
11299
11331
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-37.354.html
11300
11332
  - spec/internal/tmp/capybara/screenshot_2020-05-20-16-42-24.619.html
11301
11333
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-56.193.png
@@ -11399,6 +11431,7 @@ test_files:
11399
11431
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-11.965.html
11400
11432
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-06.369.png
11401
11433
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-25.571.html
11434
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-25.111.png
11402
11435
  - spec/internal/tmp/capybara/screenshot_2020-10-19-12-21-36.779.html
11403
11436
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-20.009.png
11404
11437
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-44-40.924.png
@@ -11429,6 +11462,7 @@ test_files:
11429
11462
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-18.035.html
11430
11463
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-54-19.628.png
11431
11464
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-24-00.653.html
11465
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-04.631.html
11432
11466
  - spec/internal/tmp/capybara/screenshot_2020-05-20-16-42-26.349.html
11433
11467
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-56.547.png
11434
11468
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-36-58.391.png
@@ -11602,6 +11636,7 @@ test_files:
11602
11636
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-11.954.html
11603
11637
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-35-25.290.html
11604
11638
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-33-57.241.html
11639
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.html
11605
11640
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-44-38.625.html
11606
11641
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-56.881.html
11607
11642
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-55-07.689.png
@@ -11664,6 +11699,7 @@ test_files:
11664
11699
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-02.061.png
11665
11700
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-23.946.png
11666
11701
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-33-53.107.html
11702
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.png
11667
11703
  - spec/internal/tmp/capybara/screenshot_2020-10-20-12-25-47.060.png
11668
11704
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-25.917.png
11669
11705
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-02.058.html
@@ -11706,6 +11742,7 @@ test_files:
11706
11742
  - spec/internal/tmp/capybara/screenshot_2020-10-13-10-45-47.099.png
11707
11743
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-00.363.html
11708
11744
  - spec/internal/tmp/capybara/screenshot_2020-10-20-12-29-12.034.png
11745
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.html
11709
11746
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-15.343.png
11710
11747
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-44-40.167.png
11711
11748
  - spec/internal/tmp/capybara/screenshot_2020-06-05-14-53-55.492.png
@@ -11727,6 +11764,7 @@ test_files:
11727
11764
  - spec/internal/tmp/capybara/screenshot_2020-10-19-18-33-24.295.png
11728
11765
  - spec/internal/tmp/capybara/screenshot_2020-10-16-17-58-45.810.png
11729
11766
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-51.218.html
11767
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-23-56.006.png
11730
11768
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-11-54.316.html
11731
11769
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-00.342.html
11732
11770
  - spec/internal/tmp/capybara/screenshot_2020-10-19-11-45-32.909.png
@@ -11817,6 +11855,7 @@ test_files:
11817
11855
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-10-03.785.html
11818
11856
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-49-43.808.html
11819
11857
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-51-52.667.png
11858
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-32-13.907.html
11820
11859
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-03.959.png
11821
11860
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-44-39.014.html
11822
11861
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-40-41.443.png
@@ -11833,6 +11872,7 @@ test_files:
11833
11872
  - spec/internal/tmp/capybara/screenshot_2020-10-16-21-19-39.742.png
11834
11873
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-11-55.170.png
11835
11874
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-33.567.png
11875
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-26-57.026.html
11836
11876
  - spec/internal/tmp/capybara/screenshot_2020-10-12-12-12-14.361.png
11837
11877
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-46-30.615.html
11838
11878
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-22.010.html
@@ -11843,6 +11883,7 @@ test_files:
11843
11883
  - spec/internal/tmp/capybara/screenshot_2020-10-13-10-45-40.195.png
11844
11884
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-41-25.917.html
11845
11885
  - spec/internal/tmp/capybara/screenshot_2020-08-20-11-34-24.339.png
11886
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-21-57.510.html
11846
11887
  - spec/internal/tmp/capybara/screenshot_2020-10-19-11-45-32.552.html
11847
11888
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-04.546.html
11848
11889
  - spec/internal/tmp/capybara/screenshot_2020-07-10-09-52-17.699.html
@@ -11889,6 +11930,7 @@ test_files:
11889
11930
  - spec/internal/tmp/capybara/screenshot_2020-10-13-10-06-02.639.png
11890
11931
  - spec/internal/tmp/capybara/screenshot_2020-05-20-16-42-48.080.png
11891
11932
  - spec/internal/tmp/capybara/screenshot_2020-10-19-17-57-02.801.html
11933
+ - spec/internal/tmp/capybara/screenshot_2020-10-27-18-25-11.690.png
11892
11934
  - spec/internal/tmp/capybara/screenshot_2020-10-19-16-04-07.417.png
11893
11935
  - spec/internal/tmp/capybara/screenshot_2020-10-20-10-16-00.026.html
11894
11936
  - spec/internal/tmp/capybara/screenshot_2020-10-19-18-33-24.295.html