tasuku 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +82 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/tasks/application.js +13 -0
- data/app/assets/stylesheets/tasks/application.css +15 -0
- data/app/controllers/tasks/application_controller.rb +13 -0
- data/app/controllers/tasks/taskables/image/responses_controller.rb +32 -0
- data/app/controllers/tasks/taskables/questions/answers_controller.rb +37 -0
- data/app/controllers/tasks/taskables/text/responses_controller.rb +32 -0
- data/app/controllers/tasks/taskables/url/responses_controller.rb +32 -0
- data/app/controllers/tasks/taskables/verifications/confirmations_controller.rb +28 -0
- data/app/controllers/tasks/tasks_controller.rb +7 -0
- data/app/helpers/tasks/application_helper.rb +7 -0
- data/app/helpers/tasks/taskables/verifications_helper.rb +18 -0
- data/app/models/tasks/task.rb +5 -0
- data/app/models/tasks/taskables.rb +7 -0
- data/app/models/tasks/taskables/image.rb +7 -0
- data/app/models/tasks/taskables/image/request.rb +7 -0
- data/app/models/tasks/taskables/image/response.rb +17 -0
- data/app/models/tasks/taskables/question.rb +7 -0
- data/app/models/tasks/taskables/question/answer.rb +39 -0
- data/app/models/tasks/taskables/question/option.rb +7 -0
- data/app/models/tasks/taskables/question/vote.rb +6 -0
- data/app/models/tasks/taskables/taskable.rb +31 -0
- data/app/models/tasks/taskables/taskable/response.rb +9 -0
- data/app/models/tasks/taskables/taskable/submission.rb +39 -0
- data/app/models/tasks/taskables/text.rb +7 -0
- data/app/models/tasks/taskables/text/request.rb +7 -0
- data/app/models/tasks/taskables/text/response.rb +15 -0
- data/app/models/tasks/taskables/url.rb +7 -0
- data/app/models/tasks/taskables/url/request.rb +5 -0
- data/app/models/tasks/taskables/url/response.rb +18 -0
- data/app/models/tasks/taskables/verification.rb +7 -0
- data/app/models/tasks/taskables/verification/confirmation.rb +12 -0
- data/app/uploaders/tasks/image_uploader.rb +58 -0
- data/app/views/tasks/taskables/image/requests/_request.html.erb +19 -0
- data/app/views/tasks/taskables/image/responses/_form.html.erb +8 -0
- data/app/views/tasks/taskables/image/responses/create.html.erb +2 -0
- data/app/views/tasks/taskables/questions/_question.html.erb +27 -0
- data/app/views/tasks/taskables/questions/answers/_form.html.erb +16 -0
- data/app/views/tasks/taskables/questions/answers/_statistics.html.erb +26 -0
- data/app/views/tasks/taskables/text/requests/_request.html.erb +19 -0
- data/app/views/tasks/taskables/text/responses/_form.html.erb +5 -0
- data/app/views/tasks/taskables/text/responses/create.html.erb +2 -0
- data/app/views/tasks/taskables/url/requests/_request.html.erb +19 -0
- data/app/views/tasks/taskables/url/responses/_form.html.erb +5 -0
- data/app/views/tasks/taskables/url/responses/create.html.erb +2 -0
- data/app/views/tasks/taskables/verifications/_verification.html.erb +1 -0
- data/app/views/tasks/taskables/verifications/confirmations/_form.html.erb +3 -0
- data/app/views/tasks/tasks/_task.html.erb +3 -0
- data/app/views/tasks/tasks/show.html.erb +1 -0
- data/config/locales/en.yml +24 -0
- data/config/locales/nb.yml +122 -0
- data/config/routes.rb +35 -0
- data/db/migrate/20140315151838_create_tasks_tasks.rb +9 -0
- data/db/migrate/20140315152116_create_tasks_taskables_verifications.rb +11 -0
- data/db/migrate/20140315153512_create_tasks_taskables_verification_confirmations.rb +13 -0
- data/db/migrate/20140316203422_create_tasks_taskables_questions.rb +9 -0
- data/db/migrate/20140316203812_create_tasks_taskables_question_options.rb +10 -0
- data/db/migrate/20140316204119_create_tasks_taskables_question_answers.rb +12 -0
- data/db/migrate/20140316221703_remove_unique_constraint_on_task_taskable_question_answer_index.rb +6 -0
- data/db/migrate/20140320123047_remove_unique_constraint_on_confirmation_author.rb +6 -0
- data/db/migrate/20140402132837_create_tasks_taskables_image_requests.rb +9 -0
- data/db/migrate/20140402135306_create_tasks_taskables_image_responses.rb +13 -0
- data/db/migrate/20140403090537_remove_unique_constraint_on_image_response_author.rb +6 -0
- data/db/migrate/20140404113158_add_description_to_taskables_questions.rb +5 -0
- data/db/migrate/20140404130151_add_description_to_tasks_taskables_image_requests.rb +5 -0
- data/db/migrate/20140512072931_create_tasks_taskables_url_requests.rb +10 -0
- data/db/migrate/20140512074135_create_tasks_taskables_url_responses.rb +13 -0
- data/db/migrate/20140512120632_create_tasks_taskables_question_votes.rb +10 -0
- data/db/migrate/20140512121254_add_multiple_to_question.rb +5 -0
- data/db/migrate/20140512131526_remove_option_id_from_questions.rb +21 -0
- data/db/migrate/20140514082129_create_tasks_taskables_text_requests.rb +10 -0
- data/db/migrate/20140514082143_create_tasks_taskables_text_responses.rb +13 -0
- data/db/migrate/20140520122938_add_correct_to_tasks_taskables_question_option.rb +5 -0
- data/db/migrate/20140521134515_add_show_statistics_to_tasks_taskables_question.rb +5 -0
- data/db/migrate/20140523091152_add_images.rb +8 -0
- data/db/migrate/20140604075046_add_obligatory_to_tasks_task.rb +5 -0
- data/db/migrate/20140605095241_create_tasks_taskables_taskable_responses.rb +10 -0
- data/db/migrate/20140605124021_add_task_to_response.rb +6 -0
- data/db/migrate/20140606072225_migrate_existing_date.rb +15 -0
- data/lib/generators/tasks/install/USAGE +8 -0
- data/lib/generators/tasks/install/install_generator.rb +23 -0
- data/lib/generators/tasks/install/templates/tasks.rb +3 -0
- data/lib/generators/tasks/views/USAGE +5 -0
- data/lib/generators/tasks/views/views_generator.rb +9 -0
- data/lib/tasks.rb +20 -0
- data/lib/tasks/concerns.rb +7 -0
- data/lib/tasks/concerns/controllers.rb +5 -0
- data/lib/tasks/concerns/controllers/tasks_controller.rb +18 -0
- data/lib/tasks/concerns/illustratable.rb +9 -0
- data/lib/tasks/concerns/models.rb +4 -0
- data/lib/tasks/concerns/models/task.rb +25 -0
- data/lib/tasks/concerns/models/taskables.rb +7 -0
- data/lib/tasks/concerns/models/taskables/image.rb +3 -0
- data/lib/tasks/concerns/models/taskables/image/request.rb +18 -0
- data/lib/tasks/concerns/models/taskables/question.rb +31 -0
- data/lib/tasks/concerns/models/taskables/text.rb +3 -0
- data/lib/tasks/concerns/models/taskables/text/request.rb +18 -0
- data/lib/tasks/concerns/models/taskables/url.rb +3 -0
- data/lib/tasks/concerns/models/taskables/url/request.rb +18 -0
- data/lib/tasks/concerns/models/taskables/verification.rb +20 -0
- data/lib/tasks/concerns/redirectable.rb +11 -0
- data/lib/tasks/concerns/verifiable.rb +9 -0
- data/lib/tasks/engine.rb +22 -0
- data/lib/tasks/seeds.rb +13 -0
- data/lib/tasks/tasks_tasks.rake +4 -0
- data/lib/tasks/version.rb +3 -0
- data/lib/tasuku.rb +1 -0
- data/spec/controllers/tasks/taskables/image/responses_controller_spec.rb +37 -0
- data/spec/controllers/tasks/taskables/questions/answers_controller_spec.rb +39 -0
- data/spec/controllers/tasks/taskables/text/responses_controller_spec.rb +37 -0
- data/spec/controllers/tasks/taskables/verifications/confirmations_controller_spec.rb +38 -0
- data/spec/controllers/tasks/tasks_controller_spec.rb +17 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +7 -0
- data/spec/dummy/app/helpers/application_helper.rb +5 -0
- data/spec/dummy/app/models/article.rb +3 -0
- data/spec/dummy/app/models/user.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +17 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +30 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +83 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140315162017_create_users.rb +8 -0
- data/spec/dummy/db/migrate/20140315185502_create_articles.rb +8 -0
- data/spec/dummy/db/schema.rb +166 -0
- data/spec/dummy/db/seeds.rb +3 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +90 -0
- data/spec/dummy/log/test.log +2568 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/uploads/tasks/taskables/image/request/image/1/doge.jpg +0 -0
- data/spec/dummy/public/uploads/tasks/taskables/image/response/image/1/doge.jpg +0 -0
- data/spec/dummy/public/uploads/tasks/taskables/question/image/1/doge.jpg +0 -0
- data/spec/dummy/public/uploads/tasks/taskables/text/request/image/1/doge.jpg +0 -0
- data/spec/dummy/public/uploads/tasks/taskables/url/request/image/1/doge.jpg +0 -0
- data/spec/dummy/spec/factories/articles.rb +6 -0
- data/spec/dummy/spec/factories/users.rb +6 -0
- data/spec/dummy/spec/models/article_spec.rb +4 -0
- data/spec/dummy/spec/models/user_spec.rb +4 -0
- data/spec/factories/tasks_taskables_image_requests.rb +7 -0
- data/spec/factories/tasks_taskables_image_responses.rb +8 -0
- data/spec/factories/tasks_taskables_question_answers.rb +17 -0
- data/spec/factories/tasks_taskables_question_options.rb +10 -0
- data/spec/factories/tasks_taskables_question_votes.rb +8 -0
- data/spec/factories/tasks_taskables_questions.rb +19 -0
- data/spec/factories/tasks_taskables_taskable_responses.rb +8 -0
- data/spec/factories/tasks_taskables_text_requests.rb +5 -0
- data/spec/factories/tasks_taskables_text_responses.rb +6 -0
- data/spec/factories/tasks_taskables_url_requests.rb +8 -0
- data/spec/factories/tasks_taskables_url_responses.rb +9 -0
- data/spec/factories/tasks_taskables_verification_confirmations.rb +8 -0
- data/spec/factories/tasks_taskables_verifications.rb +7 -0
- data/spec/factories/tasks_tasks.rb +14 -0
- data/spec/fixtures/doge.jpg +0 -0
- data/spec/helpers/tasks/taskables/verifications_helper_spec.rb +20 -0
- data/spec/lib/generators/views_generators_spec.rb +22 -0
- data/spec/lib/tasks/concerns/verifiable_spec.rb +23 -0
- data/spec/models/tasks/task_spec.rb +20 -0
- data/spec/models/tasks/taskables/image/request_spec.rb +6 -0
- data/spec/models/tasks/taskables/image/response_spec.rb +18 -0
- data/spec/models/tasks/taskables/question/answer_spec.rb +91 -0
- data/spec/models/tasks/taskables/question/option_spec.rb +6 -0
- data/spec/models/tasks/taskables/question/vote_spec.rb +6 -0
- data/spec/models/tasks/taskables/question_spec.rb +18 -0
- data/spec/models/tasks/taskables/taskable/response_spec.rb +7 -0
- data/spec/models/tasks/taskables/taskable/submission_spec.rb +30 -0
- data/spec/models/tasks/taskables/taskable_spec.rb +49 -0
- data/spec/models/tasks/taskables/text/request_spec.rb +6 -0
- data/spec/models/tasks/taskables/text/response_spec.rb +17 -0
- data/spec/models/tasks/taskables/url/request_spec.rb +6 -0
- data/spec/models/tasks/taskables/url/response_spec.rb +6 -0
- data/spec/models/tasks/taskables/verification/confirmation_spec.rb +6 -0
- data/spec/models/tasks/taskables/verification_spec.rb +18 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/support/fixture.rb +3 -0
- data/spec/support/shared_examples_for_redirectable.rb +37 -0
- data/spec/support/trackable_submission_spec.rb +14 -0
- data/spec/views/tasks/taskables/image/requests/_request.html.erb_spec.rb +35 -0
- data/spec/views/tasks/taskables/image/responses/create.html.erb_spec.rb +4 -0
- data/spec/views/tasks/taskables/questions/_question.html.erb_spec.rb +35 -0
- data/spec/views/tasks/taskables/questions/answers/_form.html.erb_spec.rb +18 -0
- data/spec/views/tasks/taskables/text/requests/_request.html.erb_spec.rb +35 -0
- data/spec/views/tasks/taskables/url/requests/_request.html.erb_spec.rb +35 -0
- data/spec/views/tasks/taskables/verifications/confirmations/_form.html.erb_spec.rb +17 -0
- data/spec/views/tasks/tasks/show.html.erb_spec.rb +4 -0
- metadata +550 -0
@@ -0,0 +1,2568 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
9
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
24
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
26
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
27
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
35
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
37
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
38
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
39
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
40
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
41
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
42
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
43
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
44
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
45
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
46
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
47
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
48
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
49
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
51
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
52
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
53
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
54
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
55
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
57
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
58
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
59
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
62
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
63
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
64
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
65
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
66
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
67
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
68
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
69
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
70
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
72
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
73
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
74
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
75
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
76
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
77
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
78
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
79
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
80
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
82
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
83
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
84
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
85
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
86
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
87
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
88
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
89
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
90
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
91
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
92
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
95
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
96
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
97
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
98
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
99
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
100
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
102
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
103
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
104
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
105
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.113577"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.113577"]]
|
106
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.116885"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.116885"]]
|
107
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.117788"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.117788"]]
|
108
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.118400"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.118400"]]
|
109
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.121170"], ["updated_at", "2014-06-05 07:27:28.121170"]]
|
112
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
113
|
+
[1m[36m (0.1ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
114
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
115
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
116
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (13.9ms)
|
117
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (39.6ms)
|
118
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
120
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
121
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "image", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.182001"], ["image", "doge.jpg"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.182001"]]
|
122
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.183122"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.183122"]]
|
123
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.183822"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.183822"]]
|
124
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.184423"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.184423"]]
|
125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.186791"], ["updated_at", "2014-06-05 07:27:28.186791"]]
|
128
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
129
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
130
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
131
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
132
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (3.1ms)
|
133
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (9.4ms)
|
134
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
136
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
139
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.208342"], ["updated_at", "2014-06-05 07:27:28.208342"]]
|
140
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
141
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
142
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:28.214034"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.214034"]]
|
143
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
144
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
145
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
146
|
+
[1m[35mTasks::Taskables::Text::Request Load (0.1ms)[0m SELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1 [["id", 1]]
|
147
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
148
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.230949"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:28.230949"]]
|
149
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
150
|
+
Redirected to http://example.org
|
151
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.6ms)
|
152
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? [["request_id", 1]]
|
153
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
154
|
+
[1m[35m (0.0ms)[0m begin transaction
|
155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
156
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.236686"], ["updated_at", "2014-06-05 07:27:28.236686"]]
|
157
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
159
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.238482"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.238482"]]
|
160
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
161
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
162
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
163
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
164
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
165
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.241948"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:28.241948"]]
|
166
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
167
|
+
Redirected to http://after_completion_path.org
|
168
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
169
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
170
|
+
[1m[35m (0.0ms)[0m begin transaction
|
171
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
172
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.245505"], ["updated_at", "2014-06-05 07:27:28.245505"]]
|
173
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
175
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.247048"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.247048"]]
|
176
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
177
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
178
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
179
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
181
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.250527"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:28.250527"]]
|
182
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
183
|
+
Redirected to http://implicit_redirect.org
|
184
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
185
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
187
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
188
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.254007"], ["updated_at", "2014-06-05 07:27:28.254007"]]
|
189
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
190
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
191
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.255550"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.255550"]]
|
192
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
193
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
194
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
195
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
196
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
197
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.259003"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:28.259003"]]
|
198
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
199
|
+
Redirected to http://explicit_redirect.org
|
200
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
201
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
202
|
+
[1m[35m (0.0ms)[0m begin transaction
|
203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
204
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.263064"], ["updated_at", "2014-06-05 07:27:28.263064"]]
|
205
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
207
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
208
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.270183"], ["updated_at", "2014-06-05 07:27:28.270183"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
210
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
211
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
212
|
+
[1m[35m (0.0ms)[0m begin transaction
|
213
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
214
|
+
[1m[35m (0.0ms)[0m begin transaction
|
215
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
216
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:28.277738"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.277738"]]
|
217
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
218
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
219
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.279151"], ["updated_at", "2014-06-05 07:27:28.279151"]]
|
220
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
221
|
+
[1m[36mTasks::Taskables::Text::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
222
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (3.5ms)
|
223
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (9.4ms)
|
224
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
226
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
227
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.299123"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.299123"]]
|
228
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
229
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
230
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.301806"], ["updated_at", "2014-06-05 07:27:28.301806"]]
|
231
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
232
|
+
[1m[35mTasks::Taskables::Text::Response Load (0.0ms)[0m SELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
233
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (1.7ms)
|
234
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (7.2ms)
|
235
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
236
|
+
[1m[35m (0.1ms)[0m begin transaction
|
237
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
238
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.316962"], ["updated_at", "2014-06-05 07:27:28.316962"]]
|
239
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
241
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.318249"], ["updated_at", "2014-06-05 07:27:28.318249"]]
|
242
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
244
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.321129"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.321129"]]
|
245
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
247
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
248
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.322798"], ["updated_at", "2014-06-05 07:27:28.322798"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
249
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
250
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
251
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.323930"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:28.323930"]]
|
252
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
253
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
254
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
255
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.331412"], ["updated_at", "2014-06-05 07:27:28.331412"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
256
|
+
[1m[35mTasks::Taskables::Verification Load (0.1ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
257
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:28.332929"]]
|
258
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
260
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.339655"], ["updated_at", "2014-06-05 07:27:28.339655"], ["verification_id", 2]]
|
261
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
262
|
+
[1m[35mTasks::Task Load (0.2ms)[0m SELECT "tasks_tasks".* FROM "tasks_tasks" INNER JOIN "tasks_taskables_verifications" ON "tasks_tasks"."taskable_id" = "tasks_taskables_verifications"."id" WHERE "tasks_tasks"."taskable_type" = ? AND "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1 [["taskable_type", "Tasks::Taskables::Verification"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
263
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
264
|
+
[1m[35m (0.1ms)[0m begin transaction
|
265
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
266
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.350971"], ["updated_at", "2014-06-05 07:27:28.350971"]]
|
267
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
268
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
269
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.352313"], ["updated_at", "2014-06-05 07:27:28.352313"]]
|
270
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
271
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
272
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.354066"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.354066"]]
|
273
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
274
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
275
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
276
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.355725"], ["updated_at", "2014-06-05 07:27:28.355725"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.356814"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:28.356814"]]
|
280
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
283
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.358553"], ["updated_at", "2014-06-05 07:27:28.358553"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
284
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
285
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:28.359836"]]
|
286
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
287
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
288
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.361177"], ["updated_at", "2014-06-05 07:27:28.361177"], ["verification_id", 2]]
|
289
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
290
|
+
[1m[35mTasks::Taskables::Verification Load (0.8ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1 [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
291
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
292
|
+
[1m[35m (0.1ms)[0m begin transaction
|
293
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
294
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.365374"], ["updated_at", "2014-06-05 07:27:28.365374"]]
|
295
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.367265"], ["updated_at", "2014-06-05 07:27:28.367265"]]
|
298
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
299
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
300
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.369457"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.369457"]]
|
301
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
303
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
304
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.371202"], ["updated_at", "2014-06-05 07:27:28.371202"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
305
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
306
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
307
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.373018"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:28.373018"]]
|
308
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
309
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
310
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
311
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.375074"], ["updated_at", "2014-06-05 07:27:28.375074"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
312
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
313
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:28.376382"]]
|
314
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
316
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.377695"], ["updated_at", "2014-06-05 07:27:28.377695"], ["verification_id", 2]]
|
317
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
318
|
+
[1m[35mTasks::Taskables::Verification::Confirmation Load (0.2ms)[0m SELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" INNER JOIN "tasks_taskables_verifications" ON "tasks_taskables_verification_confirmations"."verification_id" = "tasks_taskables_verifications"."id" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
319
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
320
|
+
[1m[35m (0.0ms)[0m begin transaction
|
321
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
322
|
+
[1m[35m (0.1ms)[0m begin transaction
|
323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
324
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.386599"], ["updated_at", "2014-06-05 07:27:28.386599"]]
|
325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
327
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.392150"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.392150"]]
|
328
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
329
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
330
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fa7a76463f0 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13806-1i97zai>>}, "request_id"=>"1"}
|
331
|
+
[1m[36mTasks::Taskables::Image::Request Load (0.1ms)[0m [1mSELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
332
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
333
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.404766"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:28.404766"]]
|
334
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
335
|
+
Redirected to http://example.org
|
336
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.6ms)
|
337
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ?[0m [["request_id", 1]]
|
338
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
339
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
340
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
341
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.412301"], ["updated_at", "2014-06-05 07:27:28.412301"]]
|
342
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
343
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
344
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:28.414244"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.414244"]]
|
345
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
347
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fa7a7475648 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13806-11sq33c>>}, "request_id"=>"1"}
|
348
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.419891"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:28.419891"]]
|
351
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
352
|
+
Redirected to http://after_completion_path.org
|
353
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
354
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
356
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
357
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.427400"], ["updated_at", "2014-06-05 07:27:28.427400"]]
|
358
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
359
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
360
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:28.430363"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.430363"]]
|
361
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
362
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
363
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fa7a7368868 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13806-1qszoo3>>}, "request_id"=>"1"}
|
364
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
365
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
366
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.437601"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:28.437601"]]
|
367
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
368
|
+
Redirected to http://implicit_redirect.org
|
369
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
|
370
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
372
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
373
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.442090"], ["updated_at", "2014-06-05 07:27:28.442090"]]
|
374
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
375
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
376
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:28.443709"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.443709"]]
|
377
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
378
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
379
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fa7a72b9de0 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13806-pt6lzv>>}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
380
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
382
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.449304"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:28.449304"]]
|
383
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
384
|
+
Redirected to http://explicit_redirect.org
|
385
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
|
386
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
389
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.455870"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.455870"]]
|
390
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.456849"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.456849"]]
|
391
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.457541"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.457541"]]
|
392
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.458240"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.458240"]]
|
393
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
394
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
395
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.459255"], ["updated_at", "2014-06-05 07:27:28.459255"]]
|
396
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
397
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
398
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1 [["question_id", 1]]
|
399
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
400
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
401
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
402
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
403
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
404
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
405
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.480527"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.480527"]]
|
406
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.481513"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.481513"]]
|
407
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.482233"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.482233"]]
|
408
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.482835"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.482835"]]
|
409
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
410
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
411
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.484253"], ["updated_at", "2014-06-05 07:27:28.484253"]]
|
412
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
413
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
414
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1 [["question_id", 1]]
|
415
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
416
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
417
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.3ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
418
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
419
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
420
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
421
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.494772"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.494772"]]
|
422
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.495818"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.495818"]]
|
423
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.496501"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.496501"]]
|
424
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.497111"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.497111"]]
|
425
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
427
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.498457"], ["updated_at", "2014-06-05 07:27:28.498457"]]
|
428
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
429
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
430
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
431
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
432
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
433
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
434
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.503506"], ["updated_at", "2014-06-05 07:27:28.503506"]]
|
435
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.504995"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.504995"]]
|
436
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
437
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
438
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
439
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
440
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
441
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
442
|
+
[1m[35m (0.0ms)[0m begin transaction
|
443
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
444
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.512335"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.512335"]]
|
445
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.513319"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.513319"]]
|
446
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.514020"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.514020"]]
|
447
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.514645"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.514645"]]
|
448
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
449
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
450
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.515693"], ["updated_at", "2014-06-05 07:27:28.515693"]]
|
451
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
452
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
453
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
454
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
455
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
456
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
457
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.520163"], ["updated_at", "2014-06-05 07:27:28.520163"]]
|
458
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.520960"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.520960"]]
|
459
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
460
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
461
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
462
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
463
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
464
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
466
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
467
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.527274"], ["updated_at", "2014-06-05 07:27:28.527274"]]
|
468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
469
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
470
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.529751"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.529751"]]
|
471
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.530688"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.530688"]]
|
472
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.531326"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.531326"]]
|
473
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.531893"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.531893"]]
|
474
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
475
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
476
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
477
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
478
|
+
[1m[35m (0.0ms)[0m begin transaction
|
479
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
480
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.537496"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.537496"]]
|
481
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.538445"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.538445"]]
|
482
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.539085"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.539085"]]
|
483
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.539647"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.539647"]]
|
484
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
485
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
486
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
487
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:27:28.541557"]]
|
488
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
489
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
490
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.542796"], ["updated_at", "2014-06-05 07:27:28.542796"]]
|
491
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
492
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
493
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
494
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
495
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
496
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.546115"], ["updated_at", "2014-06-05 07:27:28.546115"]]
|
497
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.546778"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.546778"]]
|
498
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.547407"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:28.547407"]]
|
499
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
500
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
501
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
502
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
503
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.551035"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.551035"]]
|
504
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.551949"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.551949"]]
|
505
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.552579"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.552579"]]
|
506
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.553151"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.553151"]]
|
507
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
508
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
509
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
510
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:27:28.554941"]]
|
511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
512
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
513
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.556026"], ["updated_at", "2014-06-05 07:27:28.556026"]]
|
514
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
516
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
517
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
518
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
519
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.559081"], ["updated_at", "2014-06-05 07:27:28.559081"]]
|
520
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.559935"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.559935"]]
|
521
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
522
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
524
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
525
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.563747"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.563747"]]
|
526
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.564855"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.564855"]]
|
527
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.565675"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.565675"]]
|
528
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.566268"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.566268"]]
|
529
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
530
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
531
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
532
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:27:28.568504"]]
|
533
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
534
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
535
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.569734"], ["updated_at", "2014-06-05 07:27:28.569734"]]
|
536
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
537
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
538
|
+
[1m[35mTasks::Taskables::Question Load (0.1ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
539
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
540
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
541
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.603378"], ["updated_at", "2014-06-05 07:27:28.603378"]]
|
542
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.604213"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.604213"]]
|
543
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.604909"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:28.604909"]]
|
544
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
545
|
+
[1m[36m (1.3ms)[0m [1mrollback transaction[0m
|
546
|
+
[1m[35m (0.1ms)[0m begin transaction
|
547
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
548
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.609679"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.609679"]]
|
549
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.610702"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.610702"]]
|
550
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.611384"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.611384"]]
|
551
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.611993"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.611993"]]
|
552
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
553
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
554
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
555
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:27:28.614791"]]
|
556
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
557
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
558
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 2 [["correct", "t"], ["updated_at", "2014-06-05 07:27:28.616017"]]
|
559
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
560
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
561
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.617317"], ["updated_at", "2014-06-05 07:27:28.617317"]]
|
562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
563
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
564
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
565
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
566
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
567
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.621430"], ["updated_at", "2014-06-05 07:27:28.621430"]]
|
568
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.622293"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.622293"]]
|
569
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.623216"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:28.623216"]]
|
570
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
571
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
572
|
+
[1m[35m (0.1ms)[0m begin transaction
|
573
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
574
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.627756"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.627756"]]
|
575
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.628746"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.628746"]]
|
576
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.629420"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.629420"]]
|
577
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.630007"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.630007"]]
|
578
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
579
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
580
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
581
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.632106"], ["updated_at", "2014-06-05 07:27:28.632106"]]
|
582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
583
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
584
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
585
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
586
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
587
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.635639"], ["updated_at", "2014-06-05 07:27:28.635639"]]
|
588
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.636377"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.636377"]]
|
589
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
590
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
592
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
593
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.641329"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.641329"]]
|
594
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.642375"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.642375"]]
|
595
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.643075"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.643075"]]
|
596
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.643715"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.643715"]]
|
597
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
598
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
599
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (3.3ms)
|
600
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
602
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
603
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.657505"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.657505"]]
|
604
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
606
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
607
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.659519"], ["updated_at", "2014-06-05 07:27:28.659519"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
608
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
609
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
610
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
611
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
612
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.668397"], ["description", "MyText"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.668397"]]
|
613
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
614
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
615
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.669929"], ["updated_at", "2014-06-05 07:27:28.669929"]]
|
616
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
617
|
+
[1m[35mTasks::Taskables::URL::Response Load (0.1ms)[0m SELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
618
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (6.7ms)
|
619
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (14.8ms)
|
620
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
621
|
+
[1m[35m (0.0ms)[0m begin transaction
|
622
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
623
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "image", "text", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.695156"], ["description", "MyText"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.695156"]]
|
624
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
625
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
626
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.698071"], ["updated_at", "2014-06-05 07:27:28.698071"]]
|
627
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
628
|
+
[1m[36mTasks::Taskables::URL::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
629
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (1.7ms)
|
630
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (8.7ms)
|
631
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
633
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
634
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.716173"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.716173"]]
|
635
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
636
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
637
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.717467"], ["updated_at", "2014-06-05 07:27:28.717467"]]
|
638
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
639
|
+
[1m[35mTasks::Taskables::Image::Response Load (0.1ms)[0m SELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
640
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (4.6ms)
|
641
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (10.6ms)
|
642
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
643
|
+
[1m[35m (0.1ms)[0m begin transaction
|
644
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
645
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.738437"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.738437"]]
|
646
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
648
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.741070"], ["updated_at", "2014-06-05 07:27:28.741070"]]
|
649
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
650
|
+
[1m[36mTasks::Taskables::Image::Response Load (0.0ms)[0m [1mSELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
651
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (1.8ms)
|
652
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (7.3ms)
|
653
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
656
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.756065"], ["updated_at", "2014-06-05 07:27:28.756065"]]
|
657
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
658
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
659
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.757764"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.757764"]]
|
660
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
661
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
662
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
663
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.759526"], ["updated_at", "2014-06-05 07:27:28.759526"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
664
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
665
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
666
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.760846"], ["updated_at", "2014-06-05 07:27:28.760846"], ["verification_id", 1]]
|
667
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
668
|
+
[1m[36mTasks::Taskables::Verification::Confirmation Load (0.1ms)[0m [1mSELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1[0m [["verification_id", 1]]
|
669
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
672
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.764543"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.764543"]]
|
673
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
674
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
675
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
676
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.766309"], ["updated_at", "2014-06-05 07:27:28.766309"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
677
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
678
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
679
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.767464"], ["updated_at", "2014-06-05 07:27:28.767464"]]
|
680
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
681
|
+
[1m[35mTasks::Taskables::Verification::Confirmation Load (0.0ms)[0m SELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1 [["verification_id", 1]]
|
682
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
683
|
+
[1m[35m (0.0ms)[0m begin transaction
|
684
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
685
|
+
[1m[35m (0.0ms)[0m begin transaction
|
686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
687
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.771032"], ["updated_at", "2014-06-05 07:27:28.771032"]]
|
688
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
690
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.773577"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.773577"]]
|
691
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.774550"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.774550"]]
|
692
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.775236"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.775236"]]
|
693
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.775831"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.775831"]]
|
694
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
695
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
696
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 1]]
|
697
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
698
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
699
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
700
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.3ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
701
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.780997"], ["updated_at", "2014-06-05 07:27:28.780997"]]
|
702
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.781748"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.781748"]]
|
703
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.782412"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:28.782412"]]
|
704
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
705
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
706
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.784511"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.784511"]]
|
707
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.785187"], ["question_id", 2], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:28.785187"]]
|
708
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.785850"], ["question_id", 2], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:28.785850"]]
|
709
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.786452"], ["question_id", 2], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:28.786452"]]
|
710
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
711
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 2]]
|
712
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 2]]
|
713
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
714
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 2]]
|
715
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 2]]
|
716
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (4, 5, 6) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
717
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.790978"], ["updated_at", "2014-06-05 07:27:28.790978"]]
|
718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 2], ["created_at", "2014-06-05 07:27:28.791689"], ["option_id", 4], ["updated_at", "2014-06-05 07:27:28.791689"]]
|
719
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 2], ["created_at", "2014-06-05 07:27:28.792336"], ["option_id", 5], ["updated_at", "2014-06-05 07:27:28.792336"]]
|
720
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
721
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
722
|
+
[1m[36m (0.2ms)[0m [1mSELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3)[0m
|
723
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
724
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
725
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
726
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.797522"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.797522"]]
|
727
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
729
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
730
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.799416"], ["updated_at", "2014-06-05 07:27:28.799416"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
731
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
732
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
733
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.800661"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:28.800661"]]
|
734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
735
|
+
Processing by Tasks::TasksController#show as HTML
|
736
|
+
Parameters: {"id"=>"1"}
|
737
|
+
[1m[35mTasks::Task Load (0.1ms)[0m SELECT "tasks_tasks".* FROM "tasks_tasks" WHERE "tasks_tasks"."id" = ? LIMIT 1 [["id", 1]]
|
738
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
739
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
740
|
+
[1m[35m (0.0ms)[0m begin transaction
|
741
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
742
|
+
[1m[35m (0.0ms)[0m begin transaction
|
743
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
744
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:28.813756"], ["updated_at", "2014-06-05 07:27:28.813756"]]
|
745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.815780"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.815780"]]
|
748
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
750
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
751
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.817554"], ["updated_at", "2014-06-05 07:27:28.817554"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
752
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
753
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
754
|
+
Parameters: {"verification_id"=>"1"}
|
755
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 1]]
|
756
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
757
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.821550"], ["updated_at", "2014-06-05 07:27:28.821550"], ["verification_id", 1]]
|
758
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
759
|
+
Redirected to http://example.org
|
760
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
761
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ?[0m [["verification_id", 1]]
|
762
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
763
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
765
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.826259"], ["updated_at", "2014-06-05 07:27:28.826259"]]
|
766
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
767
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
768
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.828170"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.828170"]]
|
769
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
770
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
771
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
772
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.829911"], ["updated_at", "2014-06-05 07:27:28.829911"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
773
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
774
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
775
|
+
Parameters: {"verification_id"=>"1"}
|
776
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
777
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
778
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.832865"], ["updated_at", "2014-06-05 07:27:28.832865"], ["verification_id", 1]]
|
779
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
780
|
+
Redirected to http://after_completion_path.org
|
781
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
782
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
783
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
784
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.836582"], ["updated_at", "2014-06-05 07:27:28.836582"]]
|
786
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
787
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
788
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.838725"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.838725"]]
|
789
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
790
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
791
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
792
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.840500"], ["updated_at", "2014-06-05 07:27:28.840500"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
794
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
795
|
+
Parameters: {"verification_id"=>"1"}
|
796
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
797
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
798
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.843409"], ["updated_at", "2014-06-05 07:27:28.843409"], ["verification_id", 1]]
|
799
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
800
|
+
Redirected to http://implicit_redirect.org
|
801
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
802
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
804
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
805
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.847276"], ["updated_at", "2014-06-05 07:27:28.847276"]]
|
806
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
807
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
808
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.849117"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.849117"]]
|
809
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
810
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
811
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
812
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.850955"], ["updated_at", "2014-06-05 07:27:28.850955"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
813
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
814
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
815
|
+
Parameters: {"redirect_to"=>"http://explicit_redirect.org", "verification_id"=>"1"}
|
816
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
817
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
818
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.854343"], ["updated_at", "2014-06-05 07:27:28.854343"], ["verification_id", 1]]
|
819
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
820
|
+
Redirected to http://explicit_redirect.org
|
821
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
822
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
823
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
824
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
826
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
827
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.859938"], ["updated_at", "2014-06-05 07:27:28.859938"]]
|
828
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
830
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.861574"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.861574"]]
|
831
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
832
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
833
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.863301"], ["question_id", 1], ["text", "possimus"], ["updated_at", "2014-06-05 07:27:28.863301"]]
|
834
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
835
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
836
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
837
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
838
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
839
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
840
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
841
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
842
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
843
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.869889"], ["updated_at", "2014-06-05 07:27:28.869889"]]
|
844
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.870823"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.870823"]]
|
845
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
846
|
+
Redirected to http://example.org
|
847
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
848
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
849
|
+
[1m[36m (0.2ms)[0m [1mSELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1)[0m
|
850
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
851
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
852
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
853
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.876353"], ["updated_at", "2014-06-05 07:27:28.876353"]]
|
854
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
855
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
856
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.878251"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.878251"]]
|
857
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
858
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
859
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.879754"], ["question_id", 1], ["text", "possimus"], ["updated_at", "2014-06-05 07:27:28.879754"]]
|
860
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
861
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
862
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
863
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
864
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
865
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
866
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
867
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
868
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
869
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.886043"], ["updated_at", "2014-06-05 07:27:28.886043"]]
|
870
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.886829"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.886829"]]
|
871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
872
|
+
Redirected to http://after_completion_path.org
|
873
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
874
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
876
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
877
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.890775"], ["updated_at", "2014-06-05 07:27:28.890775"]]
|
878
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
879
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
880
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.892348"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.892348"]]
|
881
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
882
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
883
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.893950"], ["question_id", 1], ["text", "possimus"], ["updated_at", "2014-06-05 07:27:28.893950"]]
|
884
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
885
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
886
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
887
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
888
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
889
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
890
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
891
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
892
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
893
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.900278"], ["updated_at", "2014-06-05 07:27:28.900278"]]
|
894
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.901375"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.901375"]]
|
895
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
896
|
+
Redirected to http://implicit_redirect.org
|
897
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.7ms)
|
898
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
899
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
900
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
901
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:28.905742"], ["updated_at", "2014-06-05 07:27:28.905742"]]
|
902
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
903
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
904
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:28.908072"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:28.908072"]]
|
905
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
906
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
907
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:28.910009"], ["question_id", 1], ["text", "possimus"], ["updated_at", "2014-06-05 07:27:28.910009"]]
|
908
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
909
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
910
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "redirect_to"=>"http://explicit_redirect.org", "question_id"=>"1"}
|
911
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
912
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
913
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
914
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
915
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
916
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
917
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:28.916977"], ["updated_at", "2014-06-05 07:27:28.916977"]]
|
918
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:28.917776"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:28.917776"]]
|
919
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
920
|
+
Redirected to http://explicit_redirect.org
|
921
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
922
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
924
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
925
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
926
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
927
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.456990"], ["updated_at", "2014-06-05 07:27:39.456990"]]
|
928
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
929
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
930
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
931
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.507158"], ["updated_at", "2014-06-05 07:27:39.507158"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
932
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
933
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
934
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
935
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
936
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
937
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.522225"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.522225"]]
|
938
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
939
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
940
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.524438"], ["updated_at", "2014-06-05 07:27:39.524438"]]
|
941
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
942
|
+
[1m[35mTasks::Taskables::Text::Response Load (0.1ms)[0m SELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
943
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (10.5ms)
|
944
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (25.9ms)
|
945
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
946
|
+
[1m[35m (0.0ms)[0m begin transaction
|
947
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
948
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.563997"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.563997"]]
|
949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
950
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
951
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.566071"], ["updated_at", "2014-06-05 07:27:39.566071"]]
|
952
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
953
|
+
[1m[36mTasks::Taskables::Text::Response Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
954
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (1.5ms)
|
955
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (6.9ms)
|
956
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
958
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
959
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
960
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
961
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.604967"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.604967"]]
|
962
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.606642"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.606642"]]
|
963
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.607754"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.607754"]]
|
964
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.608373"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.608373"]]
|
965
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
966
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
967
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.609503"], ["updated_at", "2014-06-05 07:27:39.609503"]]
|
968
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
969
|
+
[1m[36m (0.1ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
970
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.4ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
971
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
972
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (6.2ms)
|
973
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (16.9ms)
|
974
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
975
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
976
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
977
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "image", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.636970"], ["image", "doge.jpg"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.636970"]]
|
978
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.638006"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.638006"]]
|
979
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.638666"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.638666"]]
|
980
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.639224"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.639224"]]
|
981
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
983
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.640785"], ["updated_at", "2014-06-05 07:27:39.640785"]]
|
984
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
985
|
+
[1m[36m (0.1ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
986
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
987
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
988
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (3.4ms)
|
989
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (10.2ms)
|
990
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
991
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
992
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
993
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
994
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
995
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.662000"], ["updated_at", "2014-06-05 07:27:39.662000"]]
|
996
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
997
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
998
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:39.667168"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.667168"]]
|
999
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1000
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
1001
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fc23b9847c0 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13817-1o07w2q>>}, "request_id"=>"1"}
|
1002
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
1003
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1004
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.682317"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:39.682317"]]
|
1005
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1006
|
+
Redirected to http://example.org
|
1007
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.7ms)
|
1008
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? [["request_id", 1]]
|
1009
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1012
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.688500"], ["updated_at", "2014-06-05 07:27:39.688500"]]
|
1013
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1014
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1015
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.690500"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.690500"]]
|
1016
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1017
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
1018
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fc23ba97338 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13817-1wiuu29>>}, "request_id"=>"1"}
|
1019
|
+
[1m[36mTasks::Taskables::Image::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1020
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1021
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.695612"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:39.695612"]]
|
1022
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1023
|
+
Redirected to http://after_completion_path.org
|
1024
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1025
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1026
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1027
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1028
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.700157"], ["updated_at", "2014-06-05 07:27:39.700157"]]
|
1029
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1030
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1031
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.701811"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.701811"]]
|
1032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1033
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
1034
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fc23bb0fce8 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13817-si9vgs>>}, "request_id"=>"1"}
|
1035
|
+
[1m[36mTasks::Taskables::Image::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1036
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1037
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.706985"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:39.706985"]]
|
1038
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1039
|
+
Redirected to http://implicit_redirect.org
|
1040
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1041
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1042
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1044
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.711049"], ["updated_at", "2014-06-05 07:27:39.711049"]]
|
1045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1047
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.712558"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.712558"]]
|
1048
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1049
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
1050
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007fc23bb7eff8 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-13817-65szbc>>}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
1051
|
+
[1m[36mTasks::Taskables::Image::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1052
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1053
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.718059"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:27:39.718059"]]
|
1054
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1055
|
+
Redirected to http://explicit_redirect.org
|
1056
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
|
1057
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1058
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1060
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.724669"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.724669"]]
|
1061
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1062
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1063
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1064
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.726598"], ["updated_at", "2014-06-05 07:27:39.726598"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1067
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.727947"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:39.727947"]]
|
1068
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1069
|
+
Processing by Tasks::TasksController#show as HTML
|
1070
|
+
Parameters: {"id"=>"1"}
|
1071
|
+
[1m[36mTasks::Task Load (0.1ms)[0m [1mSELECT "tasks_tasks".* FROM "tasks_tasks" WHERE "tasks_tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
1072
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
1073
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1075
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1076
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.744743"], ["description", "MyText"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.744743"]]
|
1077
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1078
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1079
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.746202"], ["updated_at", "2014-06-05 07:27:39.746202"]]
|
1080
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1081
|
+
[1m[35mTasks::Taskables::URL::Response Load (0.1ms)[0m SELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
1082
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (5.9ms)
|
1083
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (13.5ms)
|
1084
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1085
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1086
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1087
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "image", "text", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.769567"], ["description", "MyText"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.769567"]]
|
1088
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1089
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1090
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.771565"], ["updated_at", "2014-06-05 07:27:39.771565"]]
|
1091
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1092
|
+
[1m[36mTasks::Taskables::URL::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
1093
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (1.8ms)
|
1094
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (8.9ms)
|
1095
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1096
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1097
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1098
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1099
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1100
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1101
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1102
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.790906"], ["updated_at", "2014-06-05 07:27:39.790906"]]
|
1103
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1105
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.792661"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.792661"]]
|
1106
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1107
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1108
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.797424"], ["question_id", 1], ["text", "atque"], ["updated_at", "2014-06-05 07:27:39.797424"]]
|
1109
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1110
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1111
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
1112
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1113
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1114
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
1115
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1116
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1117
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1118
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.812360"], ["updated_at", "2014-06-05 07:27:39.812360"]]
|
1119
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:39.813270"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:39.813270"]]
|
1120
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1121
|
+
Redirected to http://example.org
|
1122
|
+
Completed 302 Found in 14ms (ActiveRecord: 1.0ms)
|
1123
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1124
|
+
[1m[36m (0.2ms)[0m [1mSELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1)[0m
|
1125
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1128
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.818843"], ["updated_at", "2014-06-05 07:27:39.818843"]]
|
1129
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1130
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1131
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.820743"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.820743"]]
|
1132
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1133
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1134
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.822235"], ["question_id", 1], ["text", "atque"], ["updated_at", "2014-06-05 07:27:39.822235"]]
|
1135
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1136
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1137
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
1138
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1139
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1140
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
1141
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1142
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1143
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1144
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.827741"], ["updated_at", "2014-06-05 07:27:39.827741"]]
|
1145
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:39.828469"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:39.828469"]]
|
1146
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1147
|
+
Redirected to http://after_completion_path.org
|
1148
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.6ms)
|
1149
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1151
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1152
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.832211"], ["updated_at", "2014-06-05 07:27:39.832211"]]
|
1153
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1154
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1155
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.833899"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.833899"]]
|
1156
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1157
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1158
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.835398"], ["question_id", 1], ["text", "atque"], ["updated_at", "2014-06-05 07:27:39.835398"]]
|
1159
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1160
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1161
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
1162
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1163
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1164
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
1165
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1166
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1167
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1168
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.840756"], ["updated_at", "2014-06-05 07:27:39.840756"]]
|
1169
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:39.841679"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:39.841679"]]
|
1170
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1171
|
+
Redirected to http://implicit_redirect.org
|
1172
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.6ms)
|
1173
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1176
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.845175"], ["updated_at", "2014-06-05 07:27:39.845175"]]
|
1177
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1178
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1179
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.846800"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.846800"]]
|
1180
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1182
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.848681"], ["question_id", 1], ["text", "atque"], ["updated_at", "2014-06-05 07:27:39.848681"]]
|
1183
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1184
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1185
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "redirect_to"=>"http://explicit_redirect.org", "question_id"=>"1"}
|
1186
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1188
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1[0m [["id", 1]]
|
1189
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1190
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1191
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1192
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.854855"], ["updated_at", "2014-06-05 07:27:39.854855"]]
|
1193
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:39.855641"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:39.855641"]]
|
1194
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1195
|
+
Redirected to http://explicit_redirect.org
|
1196
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
1197
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1199
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1200
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.861008"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.861008"]]
|
1201
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.861925"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.861925"]]
|
1202
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.862539"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.862539"]]
|
1203
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.863097"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.863097"]]
|
1204
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1205
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1206
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (3.1ms)
|
1207
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1208
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1209
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1210
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1212
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.875559"], ["updated_at", "2014-06-05 07:27:39.875559"]]
|
1213
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1214
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1215
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.877461"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.877461"]]
|
1216
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1217
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1218
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1219
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.879236"], ["updated_at", "2014-06-05 07:27:39.879236"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1220
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1221
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1222
|
+
Parameters: {"verification_id"=>"1"}
|
1223
|
+
[1m[36mTasks::Taskables::Verification Load (0.1ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 1]]
|
1224
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1225
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.887504"], ["updated_at", "2014-06-05 07:27:39.887504"], ["verification_id", 1]]
|
1226
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1227
|
+
Redirected to http://example.org
|
1228
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
1229
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ?[0m [["verification_id", 1]]
|
1230
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1232
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1233
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.892050"], ["updated_at", "2014-06-05 07:27:39.892050"]]
|
1234
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1236
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.894062"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.894062"]]
|
1237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1238
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1239
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1240
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.895897"], ["updated_at", "2014-06-05 07:27:39.895897"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1241
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1242
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1243
|
+
Parameters: {"verification_id"=>"1"}
|
1244
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
1245
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1246
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.898843"], ["updated_at", "2014-06-05 07:27:39.898843"], ["verification_id", 1]]
|
1247
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1248
|
+
Redirected to http://after_completion_path.org
|
1249
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1250
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1252
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1253
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.902429"], ["updated_at", "2014-06-05 07:27:39.902429"]]
|
1254
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1255
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1256
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.904171"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.904171"]]
|
1257
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1258
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1259
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1260
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.905908"], ["updated_at", "2014-06-05 07:27:39.905908"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1261
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1262
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1263
|
+
Parameters: {"verification_id"=>"1"}
|
1264
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
1265
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1266
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.908744"], ["updated_at", "2014-06-05 07:27:39.908744"], ["verification_id", 1]]
|
1267
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1268
|
+
Redirected to http://implicit_redirect.org
|
1269
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1270
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1272
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1273
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.912265"], ["updated_at", "2014-06-05 07:27:39.912265"]]
|
1274
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1276
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.914056"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.914056"]]
|
1277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1279
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1280
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.915879"], ["updated_at", "2014-06-05 07:27:39.915879"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1281
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1282
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1283
|
+
Parameters: {"redirect_to"=>"http://explicit_redirect.org", "verification_id"=>"1"}
|
1284
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
1285
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1286
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:39.918875"], ["updated_at", "2014-06-05 07:27:39.918875"], ["verification_id", 1]]
|
1287
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1288
|
+
Redirected to http://explicit_redirect.org
|
1289
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1290
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1291
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1292
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1293
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.923996"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.923996"]]
|
1294
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1295
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1296
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1297
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.925879"], ["updated_at", "2014-06-05 07:27:39.925879"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1298
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1299
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1300
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1301
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1302
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:39.930763"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.930763"]]
|
1303
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1304
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1305
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.932091"], ["updated_at", "2014-06-05 07:27:39.932091"]]
|
1306
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1307
|
+
[1m[36mTasks::Taskables::Image::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
1308
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (3.9ms)
|
1309
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (9.3ms)
|
1310
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1311
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1312
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1313
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.951516"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.951516"]]
|
1314
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1316
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.953926"], ["updated_at", "2014-06-05 07:27:39.953926"]]
|
1317
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1318
|
+
[1m[35mTasks::Taskables::Image::Response Load (0.0ms)[0m SELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
1319
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (1.6ms)
|
1320
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (7.1ms)
|
1321
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1322
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1324
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:39.968526"], ["updated_at", "2014-06-05 07:27:39.968526"]]
|
1325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1327
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.970936"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.970936"]]
|
1328
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.971817"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.971817"]]
|
1329
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.972488"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.972488"]]
|
1330
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.973105"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.973105"]]
|
1331
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1332
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
1333
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1334
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1335
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1336
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1337
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.979252"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.979252"]]
|
1338
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.980177"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.980177"]]
|
1339
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.980856"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.980856"]]
|
1340
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.981452"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.981452"]]
|
1341
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1342
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1343
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.982540"], ["updated_at", "2014-06-05 07:27:39.982540"]]
|
1344
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1345
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
1346
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1 [["question_id", 1]]
|
1347
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1348
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1349
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1350
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1352
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1353
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.990671"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:39.990671"]]
|
1354
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.991632"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:39.991632"]]
|
1355
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:39.992338"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:39.992338"]]
|
1356
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:39.992918"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:39.992918"]]
|
1357
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1359
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:39.993910"], ["updated_at", "2014-06-05 07:27:39.993910"]]
|
1360
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1361
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
1362
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1 [["question_id", 1]]
|
1363
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1364
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1365
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1366
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1368
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1369
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.001200"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.001200"]]
|
1370
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.002087"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.002087"]]
|
1371
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.002751"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.002751"]]
|
1372
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.003333"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.003333"]]
|
1373
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1374
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1375
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.004332"], ["updated_at", "2014-06-05 07:27:40.004332"]]
|
1376
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1377
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
1378
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1379
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1380
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1381
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1382
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.008344"], ["updated_at", "2014-06-05 07:27:40.008344"]]
|
1383
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.009036"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.009036"]]
|
1384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1385
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
1386
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1387
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1388
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1389
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1390
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1391
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1392
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.015751"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.015751"]]
|
1393
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.016717"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.016717"]]
|
1394
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.017385"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.017385"]]
|
1395
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.017939"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.017939"]]
|
1396
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1398
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.019202"], ["updated_at", "2014-06-05 07:27:40.019202"]]
|
1399
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1400
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
1401
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1402
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1403
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1404
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1405
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.023120"], ["updated_at", "2014-06-05 07:27:40.023120"]]
|
1406
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.023894"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.023894"]]
|
1407
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1408
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
1409
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1410
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1411
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1412
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1413
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1414
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1415
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.060394"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.060394"]]
|
1416
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.061882"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.061882"]]
|
1417
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.062915"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.062915"]]
|
1418
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.063596"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.063596"]]
|
1419
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1420
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1421
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1422
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:27:40.065668"]]
|
1423
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1424
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1425
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.067814"], ["updated_at", "2014-06-05 07:27:40.067814"]]
|
1426
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1427
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1428
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1429
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1430
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1431
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.072055"], ["updated_at", "2014-06-05 07:27:40.072055"]]
|
1432
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.072989"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.072989"]]
|
1433
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.073798"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:40.073798"]]
|
1434
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1435
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1437
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1438
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.077515"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.077515"]]
|
1439
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.078435"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.078435"]]
|
1440
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.079115"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.079115"]]
|
1441
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.079723"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.079723"]]
|
1442
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1443
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1445
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:27:40.081682"]]
|
1446
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1448
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 2 [["correct", "t"], ["updated_at", "2014-06-05 07:27:40.082706"]]
|
1449
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1450
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1451
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.083750"], ["updated_at", "2014-06-05 07:27:40.083750"]]
|
1452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1453
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1454
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1455
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1456
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1457
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.087409"], ["updated_at", "2014-06-05 07:27:40.087409"]]
|
1458
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.088173"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.088173"]]
|
1459
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.088872"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:40.088872"]]
|
1460
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1461
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1462
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1464
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.092787"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.092787"]]
|
1465
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.093751"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.093751"]]
|
1466
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.094433"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.094433"]]
|
1467
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.095050"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.095050"]]
|
1468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1469
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1470
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1471
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:27:40.096955"]]
|
1472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1473
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1474
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.098147"], ["updated_at", "2014-06-05 07:27:40.098147"]]
|
1475
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1476
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1477
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1478
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1479
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1480
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.101704"], ["updated_at", "2014-06-05 07:27:40.101704"]]
|
1481
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.102421"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.102421"]]
|
1482
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.103087"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:40.103087"]]
|
1483
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1484
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1485
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1486
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1487
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.106678"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.106678"]]
|
1488
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.107584"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.107584"]]
|
1489
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.108301"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.108301"]]
|
1490
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.108904"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.108904"]]
|
1491
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1492
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1493
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1494
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:27:40.110769"]]
|
1495
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1496
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1497
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.111919"], ["updated_at", "2014-06-05 07:27:40.111919"]]
|
1498
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1499
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1500
|
+
[1m[35mTasks::Taskables::Question Load (0.1ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1501
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1502
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
1503
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.115364"], ["updated_at", "2014-06-05 07:27:40.115364"]]
|
1504
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.116168"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.116168"]]
|
1505
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1506
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1507
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1508
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1509
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.120351"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.120351"]]
|
1510
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.121204"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.121204"]]
|
1511
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.121942"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.121942"]]
|
1512
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.122514"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.122514"]]
|
1513
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1514
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1516
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.124599"], ["updated_at", "2014-06-05 07:27:40.124599"]]
|
1517
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1519
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1520
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1521
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1522
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.128490"], ["updated_at", "2014-06-05 07:27:40.128490"]]
|
1523
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.129355"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.129355"]]
|
1524
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1525
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1526
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1527
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1528
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.132409"], ["updated_at", "2014-06-05 07:27:40.132409"]]
|
1529
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1530
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1531
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.135303"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.135303"]]
|
1532
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.136425"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.136425"]]
|
1533
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.137392"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.137392"]]
|
1534
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.138380"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.138380"]]
|
1535
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1536
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
1537
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 1]]
|
1538
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1539
|
+
[1m[36mTasks::Taskables::Question Load (0.1ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1540
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1541
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1542
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.144354"], ["updated_at", "2014-06-05 07:27:40.144354"]]
|
1543
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.145189"], ["option_id", 1], ["updated_at", "2014-06-05 07:27:40.145189"]]
|
1544
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:27:40.146090"], ["option_id", 2], ["updated_at", "2014-06-05 07:27:40.146090"]]
|
1545
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1546
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1547
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.148642"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.148642"]]
|
1548
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.149635"], ["question_id", 2], ["text", "Option 0"], ["updated_at", "2014-06-05 07:27:40.149635"]]
|
1549
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.150383"], ["question_id", 2], ["text", "Option 1"], ["updated_at", "2014-06-05 07:27:40.150383"]]
|
1550
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.151055"], ["question_id", 2], ["text", "Option 2"], ["updated_at", "2014-06-05 07:27:40.151055"]]
|
1551
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1552
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 2]]
|
1553
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 2]]
|
1554
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1555
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 2]]
|
1556
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 2]]
|
1557
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (4, 5, 6) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1558
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.156367"], ["updated_at", "2014-06-05 07:27:40.156367"]]
|
1559
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 2], ["created_at", "2014-06-05 07:27:40.157141"], ["option_id", 4], ["updated_at", "2014-06-05 07:27:40.157141"]]
|
1560
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 2], ["created_at", "2014-06-05 07:27:40.157907"], ["option_id", 5], ["updated_at", "2014-06-05 07:27:40.157907"]]
|
1561
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1562
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1563
|
+
[1m[36m (0.3ms)[0m [1mSELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3)[0m
|
1564
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1566
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1567
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1568
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1569
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.165758"], ["updated_at", "2014-06-05 07:27:40.165758"]]
|
1570
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1571
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1572
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:27:40.167860"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.167860"]]
|
1573
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1574
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
1575
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
1576
|
+
[1m[35mTasks::Taskables::Text::Request Load (0.1ms)[0m SELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1 [["id", 1]]
|
1577
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1578
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.172964"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:40.172964"]]
|
1579
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1580
|
+
Redirected to http://example.org
|
1581
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
1582
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? [["request_id", 1]]
|
1583
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1584
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1586
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.177839"], ["updated_at", "2014-06-05 07:27:40.177839"]]
|
1587
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1589
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.179628"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.179628"]]
|
1590
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1591
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
1592
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
1593
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.1ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1594
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1595
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.183624"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:40.183624"]]
|
1596
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1597
|
+
Redirected to http://after_completion_path.org
|
1598
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1599
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1600
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1601
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1602
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.187768"], ["updated_at", "2014-06-05 07:27:40.187768"]]
|
1603
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1604
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1605
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.189483"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.189483"]]
|
1606
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1607
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
1608
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
1609
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1610
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1611
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.193262"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:40.193262"]]
|
1612
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1613
|
+
Redirected to http://implicit_redirect.org
|
1614
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1615
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1616
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1617
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1618
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.196828"], ["updated_at", "2014-06-05 07:27:40.196828"]]
|
1619
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1620
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1621
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.198537"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.198537"]]
|
1622
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1623
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
1624
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
1625
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.0ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
1626
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1627
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.202119"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:27:40.202119"]]
|
1628
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1629
|
+
Redirected to http://explicit_redirect.org
|
1630
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1631
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1632
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1634
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.205593"], ["updated_at", "2014-06-05 07:27:40.205593"]]
|
1635
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1636
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1637
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.206951"], ["updated_at", "2014-06-05 07:27:40.206951"]]
|
1638
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1639
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1640
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.208720"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.208720"]]
|
1641
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1642
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1643
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1644
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.210368"], ["updated_at", "2014-06-05 07:27:40.210368"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1645
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1646
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1647
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.211411"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:40.211411"]]
|
1648
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1649
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1650
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
1651
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.214348"], ["updated_at", "2014-06-05 07:27:40.214348"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1652
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
1653
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:40.215847"]]
|
1654
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1655
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1656
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.221486"], ["updated_at", "2014-06-05 07:27:40.221486"], ["verification_id", 2]]
|
1657
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1658
|
+
[1m[35mTasks::Taskables::Verification Load (0.1ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1 [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1659
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1660
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1661
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1662
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.225739"], ["updated_at", "2014-06-05 07:27:40.225739"]]
|
1663
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1665
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.227072"], ["updated_at", "2014-06-05 07:27:40.227072"]]
|
1666
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1667
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1668
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.228842"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.228842"]]
|
1669
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1670
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1671
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1672
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.230388"], ["updated_at", "2014-06-05 07:27:40.230388"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1673
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1674
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1675
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.231397"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:40.231397"]]
|
1676
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1677
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1678
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
1679
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.232967"], ["updated_at", "2014-06-05 07:27:40.232967"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1680
|
+
[1m[35mTasks::Taskables::Verification Load (0.0ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
1681
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:40.234129"]]
|
1682
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1683
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1684
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.235412"], ["updated_at", "2014-06-05 07:27:40.235412"], ["verification_id", 2]]
|
1685
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1686
|
+
[1m[35mTasks::Task Load (0.1ms)[0m SELECT "tasks_tasks".* FROM "tasks_tasks" INNER JOIN "tasks_taskables_verifications" ON "tasks_tasks"."taskable_id" = "tasks_taskables_verifications"."id" WHERE "tasks_tasks"."taskable_type" = ? AND "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1 [["taskable_type", "Tasks::Taskables::Verification"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1687
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1688
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1689
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1690
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.240834"], ["updated_at", "2014-06-05 07:27:40.240834"]]
|
1691
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1692
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1693
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.242150"], ["updated_at", "2014-06-05 07:27:40.242150"]]
|
1694
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1695
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1696
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.243903"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.243903"]]
|
1697
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1698
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1699
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1700
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.245488"], ["updated_at", "2014-06-05 07:27:40.245488"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1701
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1702
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1703
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.246559"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:27:40.246559"]]
|
1704
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1706
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
1707
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.248405"], ["updated_at", "2014-06-05 07:27:40.248405"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1708
|
+
[1m[35mTasks::Taskables::Verification Load (0.1ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 2]]
|
1709
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1[0m [["taskable_id", 2], ["updated_at", "2014-06-05 07:27:40.250115"]]
|
1710
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1711
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1712
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.252045"], ["updated_at", "2014-06-05 07:27:40.252045"], ["verification_id", 2]]
|
1713
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1714
|
+
[1m[35mTasks::Taskables::Verification::Confirmation Load (0.2ms)[0m SELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" INNER JOIN "tasks_taskables_verifications" ON "tasks_taskables_verification_confirmations"."verification_id" = "tasks_taskables_verifications"."id" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1715
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1716
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1717
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1718
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:27:40.258081"], ["updated_at", "2014-06-05 07:27:40.258081"]]
|
1719
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1720
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1721
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.259827"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.259827"]]
|
1722
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1723
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1724
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1725
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:27:40.261695"], ["updated_at", "2014-06-05 07:27:40.261695"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1726
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1728
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:27:40.263250"], ["updated_at", "2014-06-05 07:27:40.263250"], ["verification_id", 1]]
|
1729
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1730
|
+
[1m[35mTasks::Taskables::Verification::Confirmation Load (0.1ms)[0m SELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1 [["verification_id", 1]]
|
1731
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1732
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1733
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1734
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.267243"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:27:40.267243"]]
|
1735
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1736
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1737
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1738
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:27:40.269237"], ["updated_at", "2014-06-05 07:27:40.269237"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1739
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1740
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1741
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:27:40.270486"], ["updated_at", "2014-06-05 07:27:40.270486"]]
|
1742
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1743
|
+
[1m[36mTasks::Taskables::Verification::Confirmation Load (0.0ms)[0m [1mSELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1[0m [["verification_id", 1]]
|
1744
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1745
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1746
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1747
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
1748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1749
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "image", "text", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.419636"], ["description", "MyText"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.419636"]]
|
1750
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1751
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1752
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.422919"], ["updated_at", "2014-06-05 07:29:53.422919"]]
|
1753
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1754
|
+
[1m[35mTasks::Taskables::URL::Response Load (0.1ms)[0m SELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
1755
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (10.1ms)
|
1756
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (29.5ms)
|
1757
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1758
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1760
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_url_requests" ("created_at", "description", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.466355"], ["description", "MyText"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.466355"]]
|
1761
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1762
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1763
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.467760"], ["updated_at", "2014-06-05 07:29:53.467760"]]
|
1764
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1765
|
+
[1m[36mTasks::Taskables::URL::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_url_responses".* FROM "tasks_taskables_url_responses" WHERE "tasks_taskables_url_responses"."request_id" = ? AND "tasks_taskables_url_responses"."author_type" = 'User' AND "tasks_taskables_url_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
1766
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/responses/_form.html.erb (2.3ms)
|
1767
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/url/requests/_request.html.erb (9.0ms)
|
1768
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1769
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1770
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1771
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.483743"], ["updated_at", "2014-06-05 07:29:53.483743"]]
|
1772
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1773
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1774
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.485821"], ["updated_at", "2014-06-05 07:29:53.485821"]]
|
1775
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1776
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1777
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.495344"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.495344"]]
|
1778
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1779
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1780
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1781
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.506165"], ["updated_at", "2014-06-05 07:29:53.506165"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1782
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1783
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1784
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.507711"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:29:53.507711"]]
|
1785
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1786
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1787
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
1788
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.514202"], ["updated_at", "2014-06-05 07:29:53.514202"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1789
|
+
[1m[36mTasks::Taskables::Verification Load (0.1ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 2]]
|
1790
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1 [["taskable_id", 2], ["updated_at", "2014-06-05 07:29:53.515613"]]
|
1791
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1792
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1793
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.521957"], ["updated_at", "2014-06-05 07:29:53.521957"], ["verification_id", 2]]
|
1794
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1795
|
+
[1m[36mTasks::Taskables::Verification Load (0.1ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1[0m [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1796
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1797
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1798
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1799
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.528592"], ["updated_at", "2014-06-05 07:29:53.528592"]]
|
1800
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1801
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1802
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.529863"], ["updated_at", "2014-06-05 07:29:53.529863"]]
|
1803
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1804
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1805
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.531564"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.531564"]]
|
1806
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1807
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1808
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1809
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.533145"], ["updated_at", "2014-06-05 07:29:53.533145"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1810
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1812
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.534148"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:29:53.534148"]]
|
1813
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1814
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1815
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
1816
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.535724"], ["updated_at", "2014-06-05 07:29:53.535724"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1817
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 2]]
|
1818
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1 [["taskable_id", 2], ["updated_at", "2014-06-05 07:29:53.536888"]]
|
1819
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1820
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1821
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.538157"], ["updated_at", "2014-06-05 07:29:53.538157"], ["verification_id", 2]]
|
1822
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1823
|
+
[1m[36mTasks::Task Load (0.1ms)[0m [1mSELECT "tasks_tasks".* FROM "tasks_tasks" INNER JOIN "tasks_taskables_verifications" ON "tasks_tasks"."taskable_id" = "tasks_taskables_verifications"."id" WHERE "tasks_tasks"."taskable_type" = ? AND "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ? LIMIT 1[0m [["taskable_type", "Tasks::Taskables::Verification"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1824
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1826
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1827
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.544097"], ["updated_at", "2014-06-05 07:29:53.544097"]]
|
1828
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1830
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.545399"], ["updated_at", "2014-06-05 07:29:53.545399"]]
|
1831
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1832
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1833
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.547196"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.547196"]]
|
1834
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1835
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1836
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1837
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.548827"], ["updated_at", "2014-06-05 07:29:53.548827"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1838
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1839
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1840
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.549856"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:29:53.549856"]]
|
1841
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1843
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
1844
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.551458"], ["updated_at", "2014-06-05 07:29:53.551458"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1845
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 2]]
|
1846
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_tasks" SET "taskable_id" = ?, "updated_at" = ? WHERE "tasks_tasks"."id" = 1 [["taskable_id", 2], ["updated_at", "2014-06-05 07:29:53.552638"]]
|
1847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1848
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1849
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.553919"], ["updated_at", "2014-06-05 07:29:53.553919"], ["verification_id", 2]]
|
1850
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1851
|
+
[1m[36mTasks::Taskables::Verification::Confirmation Load (0.1ms)[0m [1mSELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" INNER JOIN "tasks_taskables_verifications" ON "tasks_taskables_verification_confirmations"."verification_id" = "tasks_taskables_verifications"."id" WHERE "tasks_taskables_verifications"."verifiable_id" = ? AND "tasks_taskables_verifications"."verifiable_type" = ?[0m [["verifiable_id", 1], ["verifiable_type", "Article"]]
|
1852
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1853
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1854
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1856
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1857
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.563632"], ["updated_at", "2014-06-05 07:29:53.563632"]]
|
1858
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1859
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1860
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.565629"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.565629"]]
|
1861
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1862
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1863
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
1864
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.567407"], ["updated_at", "2014-06-05 07:29:53.567407"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1865
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1866
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1867
|
+
Parameters: {"verification_id"=>"1"}
|
1868
|
+
[1m[35mTasks::Taskables::Verification Load (0.1ms)[0m SELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1 [["id", 1]]
|
1869
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1870
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.572762"], ["updated_at", "2014-06-05 07:29:53.572762"], ["verification_id", 1]]
|
1871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1872
|
+
Redirected to http://example.org
|
1873
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1874
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? [["verification_id", 1]]
|
1875
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1876
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1877
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1878
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.577243"], ["updated_at", "2014-06-05 07:29:53.577243"]]
|
1879
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1880
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1881
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.579037"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.579037"]]
|
1882
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1883
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1884
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1885
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.580847"], ["updated_at", "2014-06-05 07:29:53.580847"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1886
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1887
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1888
|
+
Parameters: {"redirect_to"=>"http://explicit_redirect.org", "verification_id"=>"1"}
|
1889
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 1]]
|
1890
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1891
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.584010"], ["updated_at", "2014-06-05 07:29:53.584010"], ["verification_id", 1]]
|
1892
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1893
|
+
Redirected to http://explicit_redirect.org
|
1894
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1895
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1896
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1897
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1898
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.587754"], ["updated_at", "2014-06-05 07:29:53.587754"]]
|
1899
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1900
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1901
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.589550"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.589550"]]
|
1902
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1903
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1904
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1905
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.591336"], ["updated_at", "2014-06-05 07:29:53.591336"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1906
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1907
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1908
|
+
Parameters: {"verification_id"=>"1"}
|
1909
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 1]]
|
1910
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1911
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.594247"], ["updated_at", "2014-06-05 07:29:53.594247"], ["verification_id", 1]]
|
1912
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1913
|
+
Redirected to http://implicit_redirect.org
|
1914
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1915
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1916
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1917
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1918
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.597718"], ["updated_at", "2014-06-05 07:29:53.597718"]]
|
1919
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1920
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1921
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.599772"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.599772"]]
|
1922
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1923
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1924
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
1925
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.601634"], ["updated_at", "2014-06-05 07:29:53.601634"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
1926
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1927
|
+
Processing by Tasks::Taskables::Verifications::ConfirmationsController#create as HTML
|
1928
|
+
Parameters: {"verification_id"=>"1"}
|
1929
|
+
[1m[36mTasks::Taskables::Verification Load (0.0ms)[0m [1mSELECT "tasks_taskables_verifications".* FROM "tasks_taskables_verifications" WHERE "tasks_taskables_verifications"."id" = ? LIMIT 1[0m [["id", 1]]
|
1930
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1931
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.604793"], ["updated_at", "2014-06-05 07:29:53.604793"], ["verification_id", 1]]
|
1932
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1933
|
+
Redirected to http://after_completion_path.org
|
1934
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1935
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1936
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1937
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1938
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1939
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1940
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.610483"], ["updated_at", "2014-06-05 07:29:53.610483"]]
|
1941
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1943
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.612406"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.612406"]]
|
1944
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1945
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1946
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.621819"], ["question_id", 1], ["text", "earum"], ["updated_at", "2014-06-05 07:29:53.621819"]]
|
1947
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1948
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1949
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
1950
|
+
[1m[35mTasks::Taskables::Question Load (0.1ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1951
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1952
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1 [["id", 1]]
|
1953
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1954
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1955
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1956
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.647029"], ["updated_at", "2014-06-05 07:29:53.647029"]]
|
1957
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.648059"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:53.648059"]]
|
1958
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1959
|
+
Redirected to http://example.org
|
1960
|
+
Completed 302 Found in 24ms (ActiveRecord: 1.3ms)
|
1961
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
1962
|
+
[1m[35m (0.2ms)[0m SELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1)
|
1963
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1964
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1965
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1966
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.654419"], ["updated_at", "2014-06-05 07:29:53.654419"]]
|
1967
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1968
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1969
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.656115"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.656115"]]
|
1970
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1972
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.657654"], ["question_id", 1], ["text", "earum"], ["updated_at", "2014-06-05 07:29:53.657654"]]
|
1973
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1974
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1975
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "redirect_to"=>"http://explicit_redirect.org", "question_id"=>"1"}
|
1976
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
1977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1978
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1 [["id", 1]]
|
1979
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
1980
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
1981
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
1982
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.663844"], ["updated_at", "2014-06-05 07:29:53.663844"]]
|
1983
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.664634"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:53.664634"]]
|
1984
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1985
|
+
Redirected to http://explicit_redirect.org
|
1986
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
1987
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1988
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1989
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1990
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.668631"], ["updated_at", "2014-06-05 07:29:53.668631"]]
|
1991
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1992
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1993
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.670242"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.670242"]]
|
1994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1996
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.671768"], ["question_id", 1], ["text", "earum"], ["updated_at", "2014-06-05 07:29:53.671768"]]
|
1997
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1998
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
1999
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
2000
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2001
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2002
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1 [["id", 1]]
|
2003
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2004
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2005
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2006
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.677635"], ["updated_at", "2014-06-05 07:29:53.677635"]]
|
2007
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.678461"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:53.678461"]]
|
2008
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2009
|
+
Redirected to http://implicit_redirect.org
|
2010
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
2011
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2012
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2013
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2014
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.682346"], ["updated_at", "2014-06-05 07:29:53.682346"]]
|
2015
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2016
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2017
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.684133"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.684133"]]
|
2018
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2020
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.685628"], ["question_id", 1], ["text", "earum"], ["updated_at", "2014-06-05 07:29:53.685628"]]
|
2021
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2022
|
+
Processing by Tasks::Taskables::Questions::AnswersController#create as HTML
|
2023
|
+
Parameters: {"taskables_question_answer"=>{"option_ids"=>["1"]}, "question_id"=>"1"}
|
2024
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2025
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2026
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."id" = ? LIMIT 1 [["id", 1]]
|
2027
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2028
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2029
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2030
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.691672"], ["updated_at", "2014-06-05 07:29:53.691672"]]
|
2031
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.692452"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:53.692452"]]
|
2032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2033
|
+
Redirected to http://after_completion_path.org
|
2034
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
2035
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2036
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2037
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2039
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2040
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2041
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2042
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.711634"], ["updated_at", "2014-06-05 07:29:53.711634"]]
|
2043
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2045
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.714582"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.714582"]]
|
2046
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.715479"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:53.715479"]]
|
2047
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.716157"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:53.716157"]]
|
2048
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.716786"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:53.716786"]]
|
2049
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2050
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
2051
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 1]]
|
2052
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2053
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2054
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2055
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2056
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.722637"], ["updated_at", "2014-06-05 07:29:53.722637"]]
|
2057
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.723398"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:53.723398"]]
|
2058
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:53.724094"], ["option_id", 2], ["updated_at", "2014-06-05 07:29:53.724094"]]
|
2059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2060
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2061
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.726238"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.726238"]]
|
2062
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.726944"], ["question_id", 2], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:53.726944"]]
|
2063
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.727604"], ["question_id", 2], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:53.727604"]]
|
2064
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.728182"], ["question_id", 2], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:53.728182"]]
|
2065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2066
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 2]]
|
2067
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 2]]
|
2068
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2069
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 2]]
|
2070
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 2]]
|
2071
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (4, 5, 6) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2072
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.733008"], ["updated_at", "2014-06-05 07:29:53.733008"]]
|
2073
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 2], ["created_at", "2014-06-05 07:29:53.733723"], ["option_id", 4], ["updated_at", "2014-06-05 07:29:53.733723"]]
|
2074
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 2], ["created_at", "2014-06-05 07:29:53.734433"], ["option_id", 5], ["updated_at", "2014-06-05 07:29:53.734433"]]
|
2075
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2076
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2077
|
+
[1m[36m (0.2ms)[0m [1mSELECT DISTINCT COUNT(DISTINCT "tasks_taskables_question_answers"."id") FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3)[0m
|
2078
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2079
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2081
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.740300"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.740300"]]
|
2082
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.741298"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:53.741298"]]
|
2083
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.742090"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:53.742090"]]
|
2084
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.742715"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:53.742715"]]
|
2085
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2086
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2087
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (5.2ms)
|
2088
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2089
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2090
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2091
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2092
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2093
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.757872"], ["updated_at", "2014-06-05 07:29:53.757872"]]
|
2094
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2095
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2096
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.763963"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.763963"]]
|
2097
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2098
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
2099
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007ff529277448 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-14080-t2hy3v>>}, "request_id"=>"1"}
|
2100
|
+
[1m[36mTasks::Taskables::Image::Request Load (0.1ms)[0m [1mSELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
2101
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2102
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.776727"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:29:53.776727"]]
|
2103
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2104
|
+
Redirected to http://example.org
|
2105
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.6ms)
|
2106
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ?[0m [["request_id", 1]]
|
2107
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2109
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2110
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.782844"], ["updated_at", "2014-06-05 07:29:53.782844"]]
|
2111
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2112
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2113
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:53.784512"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.784512"]]
|
2114
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2115
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
2116
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007ff52bade738 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-14080-r69nzp>>}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
2117
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.0ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2118
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2119
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.790026"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:29:53.790026"]]
|
2120
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2121
|
+
Redirected to http://explicit_redirect.org
|
2122
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
|
2123
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2124
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2125
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2126
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.794516"], ["updated_at", "2014-06-05 07:29:53.794516"]]
|
2127
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2129
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:53.796192"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.796192"]]
|
2130
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2131
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
2132
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007ff528b48758 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-14080-b4e26n>>}, "request_id"=>"1"}
|
2133
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2134
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2135
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.803798"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:29:53.803798"]]
|
2136
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2137
|
+
Redirected to http://implicit_redirect.org
|
2138
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
|
2139
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2141
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2142
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.809794"], ["updated_at", "2014-06-05 07:29:53.809794"]]
|
2143
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2144
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2145
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:53.811831"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.811831"]]
|
2146
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2147
|
+
Processing by Tasks::Taskables::Image::ResponsesController#create as HTML
|
2148
|
+
Parameters: {"taskables_image_response"=>{"image"=>#<Rack::Test::UploadedFile:0x007ff528cf7360 @content_type="image/jpg", @original_filename="doge.jpg", @tempfile=#<Tempfile:/var/folders/qx/ytgn89s9695dr9tkqsx2_2kw0000gp/T/doge.jpg20140605-14080-1ljoa6>>}, "request_id"=>"1"}
|
2149
|
+
[1m[35mTasks::Taskables::Image::Request Load (0.1ms)[0m SELECT "tasks_taskables_image_requests".* FROM "tasks_taskables_image_requests" WHERE "tasks_taskables_image_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2150
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2151
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_image_responses" ("author_id", "author_type", "created_at", "image", "request_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.818749"], ["image", "doge.jpg"], ["request_id", 1], ["updated_at", "2014-06-05 07:29:53.818749"]]
|
2152
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2153
|
+
Redirected to http://after_completion_path.org
|
2154
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
2155
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2156
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2157
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2158
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.825106"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.825106"]]
|
2159
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2160
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2161
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
2162
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.828275"], ["updated_at", "2014-06-05 07:29:53.828275"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
2163
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2164
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2165
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2166
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2167
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2168
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2169
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.835853"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.835853"]]
|
2170
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2171
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2172
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
2173
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.839239"], ["updated_at", "2014-06-05 07:29:53.839239"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
2174
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2176
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.841737"], ["updated_at", "2014-06-05 07:29:53.841737"]]
|
2177
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2178
|
+
[1m[36mTasks::Taskables::Verification::Confirmation Load (0.1ms)[0m [1mSELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1[0m [["verification_id", 1]]
|
2179
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2181
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2182
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.846042"], ["updated_at", "2014-06-05 07:29:53.846042"]]
|
2183
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2184
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2185
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.848820"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.848820"]]
|
2186
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2188
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1[0m
|
2189
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.851906"], ["updated_at", "2014-06-05 07:29:53.851906"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
2190
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2191
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2192
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verification_confirmations" ("author_id", "author_type", "created_at", "updated_at", "verification_id") VALUES (?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:53.854313"], ["updated_at", "2014-06-05 07:29:53.854313"], ["verification_id", 1]]
|
2193
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2194
|
+
[1m[36mTasks::Taskables::Verification::Confirmation Load (0.1ms)[0m [1mSELECT "tasks_taskables_verification_confirmations".* FROM "tasks_taskables_verification_confirmations" WHERE "tasks_taskables_verification_confirmations"."verification_id" = ? AND "tasks_taskables_verification_confirmations"."author_type" = 'User' AND "tasks_taskables_verification_confirmations"."author_id" = 1 LIMIT 1[0m [["verification_id", 1]]
|
2195
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2197
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2198
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.861971"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.861971"]]
|
2199
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2200
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2201
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Tasks::Taskables::Question') LIMIT 1
|
2202
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.865245"], ["updated_at", "2014-06-05 07:29:53.865245"], ["verifiable_id", 1], ["verifiable_type", "Tasks::Taskables::Question"]]
|
2203
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2204
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2205
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_tasks" ("created_at", "taskable_id", "taskable_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.867512"], ["taskable_id", 1], ["taskable_type", "Tasks::Taskables::Verification"], ["updated_at", "2014-06-05 07:29:53.867512"]]
|
2206
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2207
|
+
Processing by Tasks::TasksController#show as HTML
|
2208
|
+
Parameters: {"id"=>"1"}
|
2209
|
+
[1m[35mTasks::Task Load (0.2ms)[0m SELECT "tasks_tasks".* FROM "tasks_tasks" WHERE "tasks_tasks"."id" = ? LIMIT 1 [["id", 1]]
|
2210
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms)
|
2211
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2213
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2214
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "image", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.887289"], ["image", "doge.jpg"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.887289"]]
|
2215
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.926685"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:53.926685"]]
|
2216
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.927596"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:53.927596"]]
|
2217
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.928495"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:53.928495"]]
|
2218
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2219
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2220
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.930578"], ["updated_at", "2014-06-05 07:29:53.930578"]]
|
2221
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2222
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2223
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2224
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2225
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (5.6ms)
|
2226
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (15.0ms)
|
2227
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2228
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2229
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2230
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.957938"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.957938"]]
|
2231
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.959748"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:53.959748"]]
|
2232
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.960777"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:53.960777"]]
|
2233
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:53.961406"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:53.961406"]]
|
2234
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2236
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:53.962624"], ["updated_at", "2014-06-05 07:29:53.962624"]]
|
2237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2238
|
+
[1m[35m (0.1ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2239
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2240
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.1ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2241
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/answers/_form.html.erb (5.6ms)
|
2242
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/questions/_question.html.erb (14.8ms)
|
2243
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2245
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2246
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks_taskables_image_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:53.991071"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:53.991071"]]
|
2247
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2248
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2249
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:53.993730"], ["updated_at", "2014-06-05 07:29:53.993730"]]
|
2250
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2251
|
+
[1m[36mTasks::Taskables::Image::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
2252
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (3.8ms)
|
2253
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (9.6ms)
|
2254
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2256
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2257
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks_taskables_image_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.013277"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.013277"]]
|
2258
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2259
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2260
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.014912"], ["updated_at", "2014-06-05 07:29:54.014912"]]
|
2261
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2262
|
+
[1m[35mTasks::Taskables::Image::Response Load (0.1ms)[0m SELECT "tasks_taskables_image_responses".* FROM "tasks_taskables_image_responses" WHERE "tasks_taskables_image_responses"."request_id" = ? AND "tasks_taskables_image_responses"."author_type" = 'User' AND "tasks_taskables_image_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
2263
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/responses/_form.html.erb (2.1ms)
|
2264
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/image/requests/_request.html.erb (7.6ms)
|
2265
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2266
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2267
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2268
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "image", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.039130"], ["image", "doge.jpg"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.039130"]]
|
2269
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2270
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2271
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.041770"], ["updated_at", "2014-06-05 07:29:54.041770"]]
|
2272
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2273
|
+
[1m[36mTasks::Taskables::Text::Response Load (0.1ms)[0m [1mSELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1[0m [["request_id", 1]]
|
2274
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (6.3ms)
|
2275
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (14.3ms)
|
2276
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2277
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2279
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.064617"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.064617"]]
|
2280
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2282
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.065991"], ["updated_at", "2014-06-05 07:29:54.065991"]]
|
2283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2284
|
+
[1m[35mTasks::Taskables::Text::Response Load (0.0ms)[0m SELECT "tasks_taskables_text_responses".* FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ? AND "tasks_taskables_text_responses"."author_type" = 'User' AND "tasks_taskables_text_responses"."author_id" = 1 LIMIT 1 [["request_id", 1]]
|
2285
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/responses/_form.html.erb (1.8ms)
|
2286
|
+
Rendered /Users/jgorset/code/ruby/tasuku/app/views/tasks/taskables/text/requests/_request.html.erb (7.0ms)
|
2287
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2288
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2289
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2290
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2291
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2292
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.082703"], ["updated_at", "2014-06-05 07:29:54.082703"]]
|
2293
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2294
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2295
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.084826"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.084826"]]
|
2296
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2297
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
2298
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
2299
|
+
[1m[36mTasks::Taskables::Text::Request Load (0.1ms)[0m [1mSELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1[0m [["id", 1]]
|
2300
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2301
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.090552"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:29:54.090552"]]
|
2302
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2303
|
+
Redirected to http://example.org
|
2304
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
2305
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks_taskables_text_responses" WHERE "tasks_taskables_text_responses"."request_id" = ?[0m [["request_id", 1]]
|
2306
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2307
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2308
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2309
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.095395"], ["updated_at", "2014-06-05 07:29:54.095395"]]
|
2310
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2311
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2312
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:54.097060"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.097060"]]
|
2313
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2314
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
2315
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "redirect_to"=>"http://explicit_redirect.org", "request_id"=>"1"}
|
2316
|
+
[1m[35mTasks::Taskables::Text::Request Load (0.1ms)[0m SELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2317
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2318
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.100959"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:29:54.100959"]]
|
2319
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2320
|
+
Redirected to http://explicit_redirect.org
|
2321
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
2322
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2323
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2324
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2325
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.104963"], ["updated_at", "2014-06-05 07:29:54.104963"]]
|
2326
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2327
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2328
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:54.106644"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.106644"]]
|
2329
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2330
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
2331
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
2332
|
+
[1m[35mTasks::Taskables::Text::Request Load (0.0ms)[0m SELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2333
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2334
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.110582"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:29:54.110582"]]
|
2335
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2336
|
+
Redirected to http://implicit_redirect.org
|
2337
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2338
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2340
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2341
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.114750"], ["updated_at", "2014-06-05 07:29:54.114750"]]
|
2342
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2343
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2344
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_text_requests" ("created_at", "text", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-05 07:29:54.116939"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.116939"]]
|
2345
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2346
|
+
Processing by Tasks::Taskables::Text::ResponsesController#create as HTML
|
2347
|
+
Parameters: {"taskables_text_response"=>{"text"=>"Yes hello this is dog?"}, "request_id"=>"1"}
|
2348
|
+
[1m[35mTasks::Taskables::Text::Request Load (0.0ms)[0m SELECT "tasks_taskables_text_requests".* FROM "tasks_taskables_text_requests" WHERE "tasks_taskables_text_requests"."id" = ? LIMIT 1 [["id", 1]]
|
2349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2350
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_text_responses" ("author_id", "author_type", "created_at", "request_id", "text", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.121086"], ["request_id", 1], ["text", "Yes hello this is dog?"], ["updated_at", "2014-06-05 07:29:54.121086"]]
|
2351
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2352
|
+
Redirected to http://after_completion_path.org
|
2353
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2354
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2356
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2357
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.124648"], ["updated_at", "2014-06-05 07:29:54.124648"]]
|
2358
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2359
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2360
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.127266"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.127266"]]
|
2361
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.128409"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.128409"]]
|
2362
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.129165"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.129165"]]
|
2363
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.129856"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.129856"]]
|
2364
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2365
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
2366
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2367
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2368
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2369
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2370
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.135603"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.135603"]]
|
2371
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.136511"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.136511"]]
|
2372
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.137143"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.137143"]]
|
2373
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.137808"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.137808"]]
|
2374
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2375
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2376
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.139565"], ["updated_at", "2014-06-05 07:29:54.139565"]]
|
2377
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2378
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
2379
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2380
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2381
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2382
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2383
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.145127"], ["updated_at", "2014-06-05 07:29:54.145127"]]
|
2384
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.145998"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.145998"]]
|
2385
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2386
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
2387
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2388
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2389
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2390
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2391
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2392
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2393
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.153471"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.153471"]]
|
2394
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.154473"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.154473"]]
|
2395
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.155167"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.155167"]]
|
2396
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.155771"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.155771"]]
|
2397
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2398
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2399
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.156817"], ["updated_at", "2014-06-05 07:29:54.156817"]]
|
2400
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2401
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.1ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
2402
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2403
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2404
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2405
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.1ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2406
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.161101"], ["updated_at", "2014-06-05 07:29:54.161101"]]
|
2407
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.161808"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.161808"]]
|
2408
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2409
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1[0m [["question_id", 1]]
|
2410
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2411
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2412
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2413
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2414
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2415
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2416
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.169036"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.169036"]]
|
2417
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.170084"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.170084"]]
|
2418
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.170818"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.170818"]]
|
2419
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.171426"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.171426"]]
|
2420
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2421
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2422
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.172450"], ["updated_at", "2014-06-05 07:29:54.172450"]]
|
2423
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2424
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
2425
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 1]]
|
2426
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2427
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2428
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2429
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2430
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2431
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2432
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.179966"], ["multiple", "f"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.179966"]]
|
2433
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.180971"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.180971"]]
|
2434
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.181676"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.181676"]]
|
2435
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.182278"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.182278"]]
|
2436
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2437
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2438
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.183317"], ["updated_at", "2014-06-05 07:29:54.183317"]]
|
2439
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2440
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 [["question_id", 1]]
|
2441
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? ORDER BY "tasks_taskables_question_options"."id" ASC LIMIT 1 OFFSET 1[0m [["question_id", 1]]
|
2442
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2443
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2444
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2445
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2446
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2448
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.191382"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.191382"]]
|
2449
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.192345"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.192345"]]
|
2450
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.193068"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.193068"]]
|
2451
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.193672"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.193672"]]
|
2452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2453
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2454
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2455
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:29:54.195715"]]
|
2456
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2457
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2458
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 2 [["correct", "t"], ["updated_at", "2014-06-05 07:29:54.196747"]]
|
2459
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2460
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2461
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.197769"], ["updated_at", "2014-06-05 07:29:54.197769"]]
|
2462
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2464
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2465
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2466
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2467
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.201748"], ["updated_at", "2014-06-05 07:29:54.201748"]]
|
2468
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.202570"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.202570"]]
|
2469
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.203300"], ["option_id", 2], ["updated_at", "2014-06-05 07:29:54.203300"]]
|
2470
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2471
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2472
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2473
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2474
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.207126"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.207126"]]
|
2475
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.208060"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.208060"]]
|
2476
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.208748"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.208748"]]
|
2477
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.209371"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.209371"]]
|
2478
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2479
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2481
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1[0m [["correct", "t"], ["updated_at", "2014-06-05 07:29:54.211313"]]
|
2482
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2483
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2484
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-05 07:29:54.212552"], ["updated_at", "2014-06-05 07:29:54.212552"]]
|
2485
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2486
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2487
|
+
[1m[36mTasks::Taskables::Question Load (0.0ms)[0m [1mSELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1[0m [["id", 1]]
|
2488
|
+
[1m[35m (0.0ms)[0m SELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2489
|
+
[1m[36mTasks::Taskables::Question::Answer Load (0.2ms)[0m [1mSELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1[0m
|
2490
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.216539"], ["updated_at", "2014-06-05 07:29:54.216539"]]
|
2491
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.217267"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.217267"]]
|
2492
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.218076"], ["option_id", 2], ["updated_at", "2014-06-05 07:29:54.218076"]]
|
2493
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2494
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2495
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2496
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2497
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.222034"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.222034"]]
|
2498
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.222961"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.222961"]]
|
2499
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.223646"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.223646"]]
|
2500
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.224251"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.224251"]]
|
2501
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2502
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2503
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2504
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:29:54.226207"]]
|
2505
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2506
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2507
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.227404"], ["updated_at", "2014-06-05 07:29:54.227404"]]
|
2508
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2509
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2510
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2511
|
+
[1m[36m (0.1ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2512
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2513
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.230951"], ["updated_at", "2014-06-05 07:29:54.230951"]]
|
2514
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.231721"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.231721"]]
|
2515
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2516
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2517
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2519
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.235659"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.235659"]]
|
2520
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.236554"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.236554"]]
|
2521
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.237231"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.237231"]]
|
2522
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.237838"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.237838"]]
|
2523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2524
|
+
[1m[35mTasks::Taskables::Question::Option Load (0.0ms)[0m SELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ? [["question_id", 1]]
|
2525
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2526
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "tasks_taskables_question_options" SET "correct" = ?, "updated_at" = ? WHERE "tasks_taskables_question_options"."id" = 1 [["correct", "t"], ["updated_at", "2014-06-05 07:29:54.239737"]]
|
2527
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2528
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2529
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.240932"], ["updated_at", "2014-06-05 07:29:54.240932"]]
|
2530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2531
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2532
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2533
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2534
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.1ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2535
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.244564"], ["updated_at", "2014-06-05 07:29:54.244564"]]
|
2536
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.245331"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.245331"]]
|
2537
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.246059"], ["option_id", 2], ["updated_at", "2014-06-05 07:29:54.246059"]]
|
2538
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2539
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2540
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2541
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2542
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "tasks_taskables_questions" ("created_at", "multiple", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.250101"], ["multiple", "t"], ["text", "MyText"], ["updated_at", "2014-06-05 07:29:54.250101"]]
|
2543
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.251009"], ["question_id", 1], ["text", "Option 0"], ["updated_at", "2014-06-05 07:29:54.251009"]]
|
2544
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-05 07:29:54.251701"], ["question_id", 1], ["text", "Option 1"], ["updated_at", "2014-06-05 07:29:54.251701"]]
|
2545
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks_taskables_question_options" ("created_at", "question_id", "text", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.252294"], ["question_id", 1], ["text", "Option 2"], ["updated_at", "2014-06-05 07:29:54.252294"]]
|
2546
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2547
|
+
[1m[36mTasks::Taskables::Question::Option Load (0.0ms)[0m [1mSELECT "tasks_taskables_question_options".* FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2548
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2549
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.254391"], ["updated_at", "2014-06-05 07:29:54.254391"]]
|
2550
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2551
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2552
|
+
[1m[35mTasks::Taskables::Question Load (0.0ms)[0m SELECT "tasks_taskables_questions".* FROM "tasks_taskables_questions" WHERE "tasks_taskables_questions"."id" = ? LIMIT 1 [["id", 1]]
|
2553
|
+
[1m[36m (0.0ms)[0m [1mSELECT "tasks_taskables_question_options"."id" FROM "tasks_taskables_question_options" WHERE "tasks_taskables_question_options"."question_id" = ?[0m [["question_id", 1]]
|
2554
|
+
[1m[35mTasks::Taskables::Question::Answer Load (0.2ms)[0m SELECT DISTINCT "tasks_taskables_question_answers".* FROM "tasks_taskables_question_answers" INNER JOIN "tasks_taskables_question_votes" ON "tasks_taskables_question_votes"."answer_id" = "tasks_taskables_question_answers"."id" WHERE "tasks_taskables_question_votes"."option_id" IN (1, 2, 3) AND "tasks_taskables_question_answers"."author_type" = 'User' AND "tasks_taskables_question_answers"."author_id" = 1 LIMIT 1
|
2555
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tasks_taskables_question_answers" ("author_id", "author_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["author_id", 1], ["author_type", "User"], ["created_at", "2014-06-05 07:29:54.257874"], ["updated_at", "2014-06-05 07:29:54.257874"]]
|
2556
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "tasks_taskables_question_votes" ("answer_id", "created_at", "option_id", "updated_at") VALUES (?, ?, ?, ?) [["answer_id", 1], ["created_at", "2014-06-05 07:29:54.258665"], ["option_id", 1], ["updated_at", "2014-06-05 07:29:54.258665"]]
|
2557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2558
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2559
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2560
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2561
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "articles" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-06-05 07:29:54.261635"], ["updated_at", "2014-06-05 07:29:54.261635"]]
|
2562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2563
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2564
|
+
[1m[35mTasks::Taskables::Verification Exists (0.1ms)[0m SELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1
|
2565
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tasks_taskables_verifications" ("created_at", "updated_at", "verifiable_id", "verifiable_type") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-05 07:29:54.263649"], ["updated_at", "2014-06-05 07:29:54.263649"], ["verifiable_id", 1], ["verifiable_type", "Article"]]
|
2566
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2567
|
+
[1m[36mTasks::Taskables::Verification Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tasks_taskables_verifications" WHERE ("tasks_taskables_verifications"."verifiable_id" = 1 AND "tasks_taskables_verifications"."verifiable_type" = 'Article') LIMIT 1[0m
|
2568
|
+
[1m[35m (0.4ms)[0m rollback transaction
|