cmor_contact 0.0.5.pre → 0.0.6.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/spec/dummy/Rakefile +6 -0
  3. data/spec/dummy/app/assets/config/manifest.js +3 -0
  4. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  5. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  6. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  7. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  8. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  9. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  10. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  11. data/spec/dummy/app/jobs/application_job.rb +2 -0
  12. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  13. data/spec/dummy/app/models/application_record.rb +3 -0
  14. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  15. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  16. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  17. data/spec/dummy/bin/bundle +3 -0
  18. data/spec/dummy/bin/rails +4 -0
  19. data/spec/dummy/bin/rake +4 -0
  20. data/spec/dummy/bin/setup +36 -0
  21. data/spec/dummy/bin/update +31 -0
  22. data/spec/dummy/bin/yarn +11 -0
  23. data/spec/dummy/config/application.rb +30 -0
  24. data/spec/dummy/config/boot.rb +5 -0
  25. data/spec/dummy/config/cable.yml +10 -0
  26. data/spec/dummy/config/database.yml +25 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/development.rb +61 -0
  29. data/spec/dummy/config/environments/production.rb +94 -0
  30. data/spec/dummy/config/environments/test.rb +46 -0
  31. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  32. data/spec/dummy/config/initializers/assets.rb +14 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/cmor_contact.rb +83 -0
  35. data/spec/dummy/config/initializers/{content_security_policy.rb~ → content_security_policy.rb} +0 -0
  36. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  37. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/spec/dummy/config/initializers/inflections.rb +16 -0
  39. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  40. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/spec/dummy/config/locales/en.yml +33 -0
  42. data/spec/dummy/config/puma.rb +34 -0
  43. data/spec/dummy/config/routes.rb +6 -0
  44. data/spec/dummy/config/spring.rb +6 -0
  45. data/spec/dummy/config.ru +5 -0
  46. data/spec/dummy/db/development.sqlite3 +0 -0
  47. data/spec/dummy/db/migrate/{20190325174020_create_active_storage_tables.active_storage.rb → 20190331090317_create_active_storage_tables.active_storage.rb} +0 -0
  48. data/spec/dummy/db/migrate/{20190325174040_create_cmor_contact_contact_requests.cmor_contact.rb → 20190331090346_create_cmor_contact_contact_requests.cmor_contact.rb} +0 -0
  49. data/spec/dummy/db/schema.rb +48 -0
  50. data/spec/dummy/db/test.sqlite3 +0 -0
  51. data/spec/dummy/log/development.log +108 -0
  52. data/spec/dummy/log/test.log +345 -0
  53. data/spec/dummy/package.json +5 -0
  54. data/spec/dummy/public/404.html +67 -0
  55. data/spec/dummy/public/422.html +67 -0
  56. data/spec/dummy/public/500.html +66 -0
  57. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  58. data/spec/dummy/public/apple-touch-icon.png +0 -0
  59. data/spec/dummy/public/favicon.ico +0 -0
  60. data/spec/dummy/tmp/development_secret.txt +1 -1
  61. metadata +70 -17
@@ -0,0 +1,345 @@
1
+  (0.3ms) begin transaction
2
+  (0.4ms) SAVEPOINT active_record_1
3
+ Cmor::Contact::ContactRequest Create (1.1ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["notified_at", "2019-03-31 08:58:58.347012"], ["created_at", "2019-03-31 09:03:58.434931"], ["updated_at", "2019-03-31 09:03:58.434931"]]
4
+  (0.3ms) RELEASE SAVEPOINT active_record_1
5
+ Cmor::Contact::ContactRequest Load (0.5ms) SELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
6
+  (0.3ms) SAVEPOINT active_record_1
7
+ Cmor::Contact::ContactRequest Update (0.7ms) UPDATE "cmor_contact_contact_requests" SET "notified_at" = ?, "updated_at" = ? WHERE "cmor_contact_contact_requests"."id" = ? [["notified_at", "2019-03-31 09:03:58.502251"], ["updated_at", "2019-03-31 09:03:58.505461"], ["id", 1]]
8
+  (0.2ms) RELEASE SAVEPOINT active_record_1
9
+  (0.3ms) rollback transaction
10
+  (0.2ms) begin transaction
11
+  (0.2ms) SAVEPOINT active_record_1
12
+ Cmor::Contact::ContactRequest Create (3.4ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["notified_at", "2019-03-31 08:58:58.538058"], ["created_at", "2019-03-31 09:03:58.541738"], ["updated_at", "2019-03-31 09:03:58.541738"]]
13
+  (0.3ms) RELEASE SAVEPOINT active_record_1
14
+ Cmor::Contact::ContactRequest Load (0.3ms) SELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
15
+  (0.3ms) SAVEPOINT active_record_1
16
+ Cmor::Contact::ContactRequest Update (1.0ms) UPDATE "cmor_contact_contact_requests" SET "notified_at" = ?, "updated_at" = ? WHERE "cmor_contact_contact_requests"."id" = ? [["notified_at", "2019-03-31 09:03:58.550379"], ["updated_at", "2019-03-31 09:03:58.554534"], ["id", 1]]
17
+  (0.2ms) RELEASE SAVEPOINT active_record_1
18
+ Cmor::Contact::ContactRequest Load (1.1ms) SELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
19
+  (1.2ms) rollback transaction
20
+  (0.3ms) begin transaction
21
+  (0.7ms) SAVEPOINT active_record_1
22
+ Cmor::Contact::ContactRequest Create (65.3ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["notified_at", "2019-03-31 08:58:58.618719"], ["created_at", "2019-03-31 09:03:58.631340"], ["updated_at", "2019-03-31 09:03:58.631340"]]
23
+  (0.4ms) RELEASE SAVEPOINT active_record_1
24
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 9a81fc01-c5cf-467a-94ec-229dedc749ee) to Test(contact_requests) with arguments: 1
25
+  (0.9ms) rollback transaction
26
+  (0.4ms) begin transaction
27
+  (0.4ms) SAVEPOINT active_record_1
28
+ Cmor::Contact::ContactRequest Create (1.5ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["notified_at", "2019-03-31 08:58:58.729475"], ["created_at", "2019-03-31 09:03:58.734982"], ["updated_at", "2019-03-31 09:03:58.734982"]]
29
+  (0.4ms) RELEASE SAVEPOINT active_record_1
30
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 53740d7a-0f2e-4f90-a56b-20c682e523a5) to Test(contact_requests) with arguments: 1
31
+  (0.9ms) rollback transaction
32
+  (0.3ms) begin transaction
33
+  (0.2ms) SAVEPOINT active_record_1
34
+ Cmor::Contact::ContactRequest Create (0.7ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:03:59.636312"], ["updated_at", "2019-03-31 09:03:59.636312"]]
35
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 49a77870-c4fd-4160-b97b-42ace3421556) to Test(contact_requests) with arguments: 1
36
+  (0.4ms) RELEASE SAVEPOINT active_record_1
37
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
38
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.7ms)
39
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 46.5ms
40
+  (0.4ms) rollback transaction
41
+  (0.2ms) begin transaction
42
+  (0.1ms) SAVEPOINT active_record_1
43
+ Cmor::Contact::ContactRequest Create (1.2ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:03:59.711434"], ["updated_at", "2019-03-31 09:03:59.711434"]]
44
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 60117eb5-08a7-41f9-b7c3-a361eb91cc7e) to Test(contact_requests) with arguments: 1
45
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
47
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (2.9ms)
48
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 6.5ms
49
+  (0.4ms) rollback transaction
50
+  (0.5ms) begin transaction
51
+  (0.5ms) SAVEPOINT active_record_1
52
+ Cmor::Contact::ContactRequest Create (0.7ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:03:59.771245"], ["updated_at", "2019-03-31 09:03:59.771245"]]
53
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 7f392c09-84f3-4ab9-8494-5ce25d3029c7) to Test(contact_requests) with arguments: 1
54
+  (0.5ms) RELEASE SAVEPOINT active_record_1
55
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
56
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.9ms)
57
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 16.9ms
58
+  (1.1ms) rollback transaction
59
+  (0.4ms) begin transaction
60
+  (0.5ms) SAVEPOINT active_record_1
61
+ Cmor::Contact::ContactRequest Create (1.4ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:03:59.843348"], ["updated_at", "2019-03-31 09:03:59.843348"]]
62
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 18678d94-d508-482a-bfee-30a6dd8f894d) to Test(contact_requests) with arguments: 1
63
+  (0.4ms) RELEASE SAVEPOINT active_record_1
64
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
65
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.7ms)
66
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 25.9ms
67
+  (0.7ms) rollback transaction
68
+  (0.8ms) begin transaction
69
+  (2.1ms) SAVEPOINT active_record_1
70
+ Cmor::Contact::ContactRequest Create (1.7ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:03:59.922936"], ["updated_at", "2019-03-31 09:03:59.922936"]]
71
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 7a61bf63-a211-41be-9cac-da13882dc6be) to Test(contact_requests) with arguments: 1
72
+  (0.6ms) RELEASE SAVEPOINT active_record_1
73
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
74
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.5ms)
75
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 24.5ms
76
+  (0.5ms) rollback transaction
77
+  (0.0ms) begin transaction
78
+  (0.6ms) SAVEPOINT active_record_1
79
+ Cmor::Contact::ContactRequest Create (2.9ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.006635"], ["updated_at", "2019-03-31 09:04:00.006635"]]
80
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 41605e23-30d8-43f0-83b1-df2d01b1fd27) to Test(contact_requests) with arguments: 1
81
+  (0.2ms) RELEASE SAVEPOINT active_record_1
82
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
83
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (13.2ms)
84
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 18.8ms
85
+  (3.6ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+  (0.8ms) SAVEPOINT active_record_1
88
+ Cmor::Contact::ContactRequest Create (4.0ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.088028"], ["updated_at", "2019-03-31 09:04:00.088028"]]
89
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 9550c4b0-2e93-408b-b500-64cf75058241) to Test(contact_requests) with arguments: 1
90
+  (0.3ms) RELEASE SAVEPOINT active_record_1
91
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
92
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (12.0ms)
93
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 18.9ms
94
+  (1.7ms) rollback transaction
95
+  (0.2ms) begin transaction
96
+  (0.2ms) SAVEPOINT active_record_1
97
+ Cmor::Contact::ContactRequest Create (2.7ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.150323"], ["updated_at", "2019-03-31 09:04:00.150323"]]
98
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 6c8da5fb-7d95-4030-adc3-e288b0d36574) to Test(contact_requests) with arguments: 1
99
+  (0.4ms) RELEASE SAVEPOINT active_record_1
100
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
101
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.7ms)
102
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 8.1ms
103
+  (1.8ms) rollback transaction
104
+  (0.4ms) begin transaction
105
+  (0.4ms) SAVEPOINT active_record_1
106
+ Cmor::Contact::ContactRequest Create (5.2ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.221706"], ["updated_at", "2019-03-31 09:04:00.221706"]]
107
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: deed37ff-322f-49af-af97-c678388a2268) to Test(contact_requests) with arguments: 1
108
+  (0.4ms) RELEASE SAVEPOINT active_record_1
109
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
110
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.7ms)
111
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.8ms
112
+  (2.4ms) rollback transaction
113
+  (0.4ms) begin transaction
114
+  (0.3ms) SAVEPOINT active_record_1
115
+ Cmor::Contact::ContactRequest Create (3.3ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.303551"], ["updated_at", "2019-03-31 09:04:00.303551"]]
116
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 85260726-35d6-41ac-a0d6-b77bbaecd5f1) to Test(contact_requests) with arguments: 1
117
+  (0.3ms) RELEASE SAVEPOINT active_record_1
118
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
119
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.1ms)
120
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 19.0ms
121
+  (2.7ms) rollback transaction
122
+  (0.2ms) begin transaction
123
+  (0.2ms) SAVEPOINT active_record_1
124
+ Cmor::Contact::ContactRequest Create (2.5ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.355985"], ["updated_at", "2019-03-31 09:04:00.355985"]]
125
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 2a4bda1a-95c2-4753-bf0a-a3a4f9152e22) to Test(contact_requests) with arguments: 1
126
+  (0.2ms) RELEASE SAVEPOINT active_record_1
127
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
128
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.7ms)
129
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 14.3ms
130
+  (2.6ms) rollback transaction
131
+  (0.2ms) begin transaction
132
+  (0.2ms) SAVEPOINT active_record_1
133
+ Cmor::Contact::ContactRequest Create (3.0ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.430545"], ["updated_at", "2019-03-31 09:04:00.430545"]]
134
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: b8a1936e-29f0-4a4b-b05f-7977713cba68) to Test(contact_requests) with arguments: 1
135
+  (0.5ms) RELEASE SAVEPOINT active_record_1
136
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
137
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (8.4ms)
138
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 16.5ms
139
+  (2.7ms) rollback transaction
140
+  (0.4ms) begin transaction
141
+  (0.2ms) SAVEPOINT active_record_1
142
+ Cmor::Contact::ContactRequest Create (2.3ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.490137"], ["updated_at", "2019-03-31 09:04:00.490137"]]
143
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 90631e8c-b38b-44ca-b70b-a630a9f26aa4) to Test(contact_requests) with arguments: 1
144
+  (0.4ms) RELEASE SAVEPOINT active_record_1
145
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
146
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.1ms)
147
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 17.6ms
148
+  (0.9ms) rollback transaction
149
+  (0.4ms) begin transaction
150
+  (0.3ms) SAVEPOINT active_record_1
151
+ Cmor::Contact::ContactRequest Create (1.8ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.566607"], ["updated_at", "2019-03-31 09:04:00.566607"]]
152
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 30cc156a-1dbe-49b9-8b68-a00596a652b3) to Test(contact_requests) with arguments: 1
153
+  (0.6ms) RELEASE SAVEPOINT active_record_1
154
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
155
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.8ms)
156
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 25.9ms
157
+  (1.0ms) rollback transaction
158
+  (0.4ms) begin transaction
159
+  (0.2ms) SAVEPOINT active_record_1
160
+ Cmor::Contact::ContactRequest Create (1.2ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.643355"], ["updated_at", "2019-03-31 09:04:00.643355"]]
161
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 611925e0-d56b-48a4-a5ad-ed5d0123be85) to Test(contact_requests) with arguments: 1
162
+  (0.3ms) RELEASE SAVEPOINT active_record_1
163
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
164
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.6ms)
165
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 12.0ms
166
+  (0.4ms) rollback transaction
167
+  (0.4ms) begin transaction
168
+  (0.5ms) SAVEPOINT active_record_1
169
+ Cmor::Contact::ContactRequest Create (2.7ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.698188"], ["updated_at", "2019-03-31 09:04:00.698188"]]
170
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: d1caddb9-7c2e-43e0-afb0-5e5d07a3370f) to Test(contact_requests) with arguments: 1
171
+  (0.2ms) RELEASE SAVEPOINT active_record_1
172
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
173
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.6ms)
174
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 15.7ms
175
+  (0.9ms) rollback transaction
176
+  (0.6ms) begin transaction
177
+  (0.3ms) SAVEPOINT active_record_1
178
+ Cmor::Contact::ContactRequest Create (4.1ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.769881"], ["updated_at", "2019-03-31 09:04:00.769881"]]
179
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: b73eb242-97b9-45a3-8a7a-a565f60ad346) to Test(contact_requests) with arguments: 1
180
+  (0.2ms) RELEASE SAVEPOINT active_record_1
181
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
182
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.4ms)
183
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 13.2ms
184
+  (1.1ms) rollback transaction
185
+  (0.2ms) begin transaction
186
+  (0.5ms) SAVEPOINT active_record_1
187
+ Cmor::Contact::ContactRequest Create (2.0ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.830292"], ["updated_at", "2019-03-31 09:04:00.830292"]]
188
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 1b0fc4b3-7824-4acc-9bb1-217c3b50c5ee) to Test(contact_requests) with arguments: 1
189
+  (0.4ms) RELEASE SAVEPOINT active_record_1
190
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
191
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.5ms)
192
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 11.4ms
193
+  (1.1ms) rollback transaction
194
+  (0.2ms) begin transaction
195
+  (0.4ms) SAVEPOINT active_record_1
196
+ Cmor::Contact::ContactRequest Create (1.1ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.900080"], ["updated_at", "2019-03-31 09:04:00.900080"]]
197
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: e6211054-cb4e-45f3-a11f-0006b9aa578a) to Test(contact_requests) with arguments: 1
198
+  (0.2ms) RELEASE SAVEPOINT active_record_1
199
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
200
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (20.8ms)
201
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 26.6ms
202
+  (10.8ms) rollback transaction
203
+  (0.7ms) begin transaction
204
+  (0.5ms) SAVEPOINT active_record_1
205
+ Cmor::Contact::ContactRequest Create (0.9ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:00.985656"], ["updated_at", "2019-03-31 09:04:00.985656"]]
206
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 332f7cdb-9c51-40ab-966c-248b9abd737d) to Test(contact_requests) with arguments: 1
207
+  (0.2ms) RELEASE SAVEPOINT active_record_1
208
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
209
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.3ms)
210
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 10.9ms
211
+  (10.3ms) rollback transaction
212
+  (0.3ms) begin transaction
213
+  (0.3ms) SAVEPOINT active_record_1
214
+ Cmor::Contact::ContactRequest Create (0.9ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:01.043096"], ["updated_at", "2019-03-31 09:04:01.043096"]]
215
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 9b7acf64-14b1-4dcb-a888-1ba492911d28) to Test(contact_requests) with arguments: 1
216
+  (0.2ms) RELEASE SAVEPOINT active_record_1
217
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
218
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.2ms)
219
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 18.1ms
220
+  (0.6ms) rollback transaction
221
+  (0.3ms) begin transaction
222
+  (0.7ms) SAVEPOINT active_record_1
223
+ Cmor::Contact::ContactRequest Create (2.2ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:01.100820"], ["updated_at", "2019-03-31 09:04:01.100820"]]
224
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 682db2b7-0ac8-4743-bb84-a837eb30cb2b) to Test(contact_requests) with arguments: 1
225
+  (0.4ms) RELEASE SAVEPOINT active_record_1
226
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
227
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.1ms)
228
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 12.1ms
229
+  (0.5ms) rollback transaction
230
+  (0.2ms) begin transaction
231
+  (0.7ms) SAVEPOINT active_record_1
232
+ Cmor::Contact::ContactRequest Create (0.5ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:01.164602"], ["updated_at", "2019-03-31 09:04:01.164602"]]
233
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: beffb53d-4d21-456e-a817-6b22a44ed50b) to Test(contact_requests) with arguments: 1
234
+  (0.3ms) RELEASE SAVEPOINT active_record_1
235
+ Rendering /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
236
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (9.9ms)
237
+ Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 15.0ms
238
+  (0.5ms) rollback transaction
239
+  (0.2ms) begin transaction
240
+  (0.5ms) rollback transaction
241
+  (2.2ms) begin transaction
242
+  (12.0ms) rollback transaction
243
+  (0.3ms) begin transaction
244
+  (0.7ms) rollback transaction
245
+  (0.5ms) begin transaction
246
+  (1.2ms) rollback transaction
247
+  (0.5ms) begin transaction
248
+  (0.2ms) rollback transaction
249
+  (0.4ms) begin transaction
250
+  (0.2ms) rollback transaction
251
+  (0.3ms) begin transaction
252
+  (0.2ms) rollback transaction
253
+  (0.2ms) begin transaction
254
+  (0.2ms) rollback transaction
255
+  (0.7ms) begin transaction
256
+  (0.5ms) rollback transaction
257
+  (0.5ms) begin transaction
258
+  (0.8ms) SELECT COUNT(*) FROM "cmor_contact_contact_requests"
259
+  (0.4ms) SELECT COUNT(*) FROM "cmor_contact_contact_requests"
260
+  (0.6ms) rollback transaction
261
+  (0.4ms) begin transaction
262
+  (0.4ms) rollback transaction
263
+  (0.2ms) begin transaction
264
+  (0.8ms) SAVEPOINT active_record_1
265
+ Cmor::Contact::ContactRequest Create (0.9ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:01.915149"], ["updated_at", "2019-03-31 09:04:01.915149"]]
266
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 73078296-ed21-4a9c-b374-8a915bff4648) to Test(contact_requests) with arguments: 1
267
+  (0.3ms) RELEASE SAVEPOINT active_record_1
268
+  (14.3ms) rollback transaction
269
+  (0.1ms) begin transaction
270
+  (0.3ms) rollback transaction
271
+  (0.5ms) begin transaction
272
+  (1.7ms) SELECT COUNT(*) FROM "cmor_contact_contact_requests"
273
+  (0.8ms) SAVEPOINT active_record_1
274
+ Cmor::Contact::ContactRequest Create (0.6ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:02.018622"], ["updated_at", "2019-03-31 09:04:02.018622"]]
275
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 2af75d33-1447-492f-9593-3e56f9d1d254) to Test(contact_requests) with arguments: 1
276
+  (1.2ms) RELEASE SAVEPOINT active_record_1
277
+  (0.5ms) SELECT COUNT(*) FROM "cmor_contact_contact_requests"
278
+  (0.4ms) rollback transaction
279
+  (0.2ms) begin transaction
280
+  (0.5ms) SAVEPOINT active_record_1
281
+ Cmor::Contact::ContactRequest Create (1.5ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:02.164546"], ["updated_at", "2019-03-31 09:04:02.164546"]]
282
+  (0.8ms) RELEASE SAVEPOINT active_record_1
283
+  (0.7ms) rollback transaction
284
+  (0.3ms) begin transaction
285
+  (0.2ms) rollback transaction
286
+  (0.2ms) begin transaction
287
+  (0.2ms) rollback transaction
288
+  (0.4ms) begin transaction
289
+  (0.3ms) rollback transaction
290
+  (0.3ms) begin transaction
291
+  (0.2ms) rollback transaction
292
+  (0.2ms) begin transaction
293
+  (0.3ms) SAVEPOINT active_record_1
294
+ Cmor::Contact::ContactRequest Create (1.5ms) INSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "John Doe"], ["email", "john.doe@example.com"], ["phone", "+491234567890"], ["ip_address", "127.0.0.1"], ["message", "Please callback!"], ["accept_terms_of_service", 1], ["created_at", "2019-03-31 09:04:02.420097"], ["updated_at", "2019-03-31 09:04:02.420097"]]
295
+ [ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 8fb1517a-0084-4a88-b7ea-e94150f6adfa) to Test(contact_requests) with arguments: 1
296
+  (0.4ms) RELEASE SAVEPOINT active_record_1
297
+  (0.7ms) rollback transaction
298
+  (1.1ms) begin transaction
299
+  (0.2ms) rollback transaction
300
+  (0.3ms) begin transaction
301
+  (0.4ms) rollback transaction
302
+  (0.5ms) begin transaction
303
+  (0.5ms) rollback transaction
304
+  (0.4ms) begin transaction
305
+  (0.6ms) rollback transaction
306
+  (0.5ms) begin transaction
307
+  (0.4ms) rollback transaction
308
+  (0.3ms) begin transaction
309
+  (0.3ms) rollback transaction
310
+  (0.4ms) begin transaction
311
+  (0.6ms) rollback transaction
312
+  (0.4ms) begin transaction
313
+  (10.7ms) rollback transaction
314
+  (0.2ms) begin transaction
315
+  (0.5ms) rollback transaction
316
+  (0.2ms) begin transaction
317
+  (0.1ms) rollback transaction
318
+  (0.2ms) begin transaction
319
+  (0.1ms) rollback transaction
320
+  (0.2ms) begin transaction
321
+  (0.1ms) rollback transaction
322
+  (0.4ms) begin transaction
323
+  (0.4ms) rollback transaction
324
+  (0.2ms) begin transaction
325
+  (0.1ms) rollback transaction
326
+  (0.2ms) begin transaction
327
+  (0.5ms) rollback transaction
328
+  (0.4ms) begin transaction
329
+  (0.1ms) rollback transaction
330
+  (0.2ms) begin transaction
331
+  (0.2ms) rollback transaction
332
+  (0.3ms) begin transaction
333
+  (0.2ms) rollback transaction
334
+  (0.3ms) begin transaction
335
+  (0.3ms) rollback transaction
336
+  (0.9ms) begin transaction
337
+  (0.5ms) rollback transaction
338
+  (0.2ms) begin transaction
339
+  (0.1ms) rollback transaction
340
+  (0.3ms) begin transaction
341
+  (0.3ms) rollback transaction
342
+  (0.2ms) begin transaction
343
+  (0.1ms) rollback transaction
344
+  (0.5ms) begin transaction
345
+  (0.7ms) rollback transaction
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
@@ -1 +1 @@
1
- c78e016d62c981db6a510a177981b04b0e4f6000958d8ce0d543ff0623d371fbf54bfc2e8d8803cd403665ea203150e4d2d43bf2edbe7099a61e9b2e95574b2c
1
+ e002953ce5791ed511775947462639f29e58a2b1c68637662a2a67c18a6f9650c8dc3fdccbb6be1f44246b3b0bb6a82c7e97291e07d3e12e83c7482147dc282b