cmor_contact 0.0.1.pre
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/MIT-LICENSE +20 -0
- data/README.md +32 -0
- data/Rakefile +19 -0
- data/app/assets/config/cmor_contact_manifest.js +2 -0
- data/app/assets/javascripts/cmor/contact/application.js +13 -0
- data/app/assets/javascripts/cmor/contact/application/keep.js +0 -0
- data/app/assets/stylesheets/cmor/contact/application.css +15 -0
- data/app/assets/stylesheets/cmor/contact/application/keep.css +0 -0
- data/app/controllers/cmor/contact/application_controller.rb +7 -0
- data/app/controllers/cmor/contact/contact_requests_controller.rb +57 -0
- data/app/helpers/cmor/contact/application_helper.rb +6 -0
- data/app/jobs/cmor/contact/application_job.rb +6 -0
- data/app/jobs/cmor/contact/notify_new_contact_request_job.rb +25 -0
- data/app/mailers/cmor/contact/application_mailer.rb +8 -0
- data/app/mailers/cmor/contact/contact_request_mailer.rb +31 -0
- data/app/models/cmor/contact/application_record.rb +7 -0
- data/app/models/cmor/contact/contact_request.rb +36 -0
- data/app/views/cmor/contact/contact_request_mailer/notify.html.haml +7 -0
- data/app/views/cmor/contact/contact_request_mailer/notify.text.erb +5 -0
- data/app/views/cmor/contact/contact_requests/_form.haml +6 -0
- data/app/views/cmor/contact/contact_requests/_form_errors.haml +6 -0
- data/app/views/cmor/contact/contact_requests/new.haml +8 -0
- data/app/views/layouts/cmor/contact/application.html.erb +14 -0
- data/app/views/layouts/cmor/contact/mailer.html.erb +13 -0
- data/app/views/layouts/cmor/contact/mailer.text.erb +1 -0
- data/config/locales/de.yml +50 -0
- data/config/locales/en.yml +50 -0
- data/config/routes.rb +9 -0
- data/db/migrate/20170813142704_create_cmor_contact_contact_requests.rb +15 -0
- data/lib/cmor/contact.rb +10 -0
- data/lib/cmor/contact/configuration.rb +60 -0
- data/lib/cmor/contact/engine.rb +16 -0
- data/lib/cmor/contact/version.rb +7 -0
- data/lib/cmor_contact.rb +3 -0
- data/lib/generators/cmor/contact/install/install_generator.rb +26 -0
- data/lib/generators/cmor/contact/install/templates/initializer.rb +83 -0
- data/lib/generators/cmor/contact/install/templates/routes.source +3 -0
- data/lib/tasks/cmor_contact_tasks.rake +4 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/initializers/i18n.rb +2 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20190325174020_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190325174040_create_cmor_contact_contact_requests.cmor_contact.rb +16 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +108 -0
- data/spec/dummy/log/test.log +345 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy~/Rakefile +6 -0
- data/spec/dummy~/app/assets/config/manifest.js +5 -0
- data/spec/dummy~/app/assets/javascripts/application.js +13 -0
- data/spec/dummy~/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy~/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy~/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy~/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy~/app/controllers/application_controller.rb +3 -0
- data/spec/dummy~/app/helpers/application_helper.rb +2 -0
- data/spec/dummy~/app/jobs/application_job.rb +2 -0
- data/spec/dummy~/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy~/app/models/application_record.rb +3 -0
- data/spec/dummy~/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy~/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy~/app/views/layouts/mailer.text.erb +1 -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~/bin/setup +38 -0
- data/spec/dummy~/bin/update +29 -0
- data/spec/dummy~/bin/yarn +11 -0
- data/spec/dummy~/config.ru +5 -0
- data/spec/dummy~/config/application.rb +26 -0
- data/spec/dummy~/config/boot.rb +5 -0
- data/spec/dummy~/config/cable.yml +10 -0
- data/spec/dummy~/config/database.yml +25 -0
- data/spec/dummy~/config/environment.rb +5 -0
- data/spec/dummy~/config/environments/development.rb +54 -0
- data/spec/dummy~/config/environments/production.rb +91 -0
- data/spec/dummy~/config/environments/test.rb +42 -0
- data/spec/dummy~/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy~/config/initializers/assets.rb +14 -0
- data/spec/dummy~/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy~/config/initializers/cmor_contact.rb +83 -0
- data/spec/dummy~/config/initializers/cookies_serializer.rb +5 -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 +4 -0
- data/spec/dummy~/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy~/config/locales/en.yml +33 -0
- data/spec/dummy~/config/puma.rb +56 -0
- data/spec/dummy~/config/routes.rb +3 -0
- data/spec/dummy~/config/secrets.yml +32 -0
- data/spec/dummy~/config/spring.rb +6 -0
- data/spec/dummy~/db/development.sqlite3 +0 -0
- data/spec/dummy~/db/migrate/20170813150718_create_cmor_contact_contact_requests.cmor_contact.rb +16 -0
- data/spec/dummy~/db/schema.rb +27 -0
- data/spec/dummy~/db/test.sqlite3 +0 -0
- data/spec/dummy~/log/test.log +0 -0
- data/spec/dummy~/package.json +5 -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/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy~/public/apple-touch-icon.png +0 -0
- data/spec/dummy~/public/favicon.ico +0 -0
- data/spec/factories/cmor_contact_contact_requests.rb +10 -0
- data/spec/fixtures/cmor/contact/contact_request_mailer/notify +3 -0
- data/spec/jobs/cmor/contact/notify_new_contact_request_job_spec.rb +22 -0
- data/spec/mailers/cmor/contact/contact_request_mailer_spec.rb +24 -0
- data/spec/mailers/previews/cmor/contact/contact_request_mailer_preview.rb +11 -0
- data/spec/models/cmor/contact/contact_request_spec.rb +48 -0
- data/spec/models/generic_spec.rb +49 -0
- data/spec/models/i18n_spec.rb +40 -0
- data/spec/rails_helper.rb +62 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/support/action_mailer.rb +13 -0
- data/spec/support/active_job.rb +9 -0
- data/spec/support/capybara.rb +1 -0
- data/spec/support/factory_bot.rb +9 -0
- data/spec/support/rao-shoulda_matchers.rb +5 -0
- data/spec/support/shoulda_matchers.rb +8 -0
- metadata +429 -0
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.9ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:35:48.213672"], ["created_at", "2019-03-25 17:40:48.244850"], ["updated_at", "2019-03-25 17:40:48.244850"]]
|
|
4
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
5
|
+
[1m[36mCmor::Contact::ContactRequest Load (0.5ms)[0m [1m[34mSELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
6
|
+
[1m[35m (1.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
7
|
+
[1m[36mCmor::Contact::ContactRequest Update (0.5ms)[0m [1m[33mUPDATE "cmor_contact_contact_requests" SET "notified_at" = ?, "updated_at" = ? WHERE "cmor_contact_contact_requests"."id" = ?[0m [["notified_at", "2019-03-25 17:40:48.305406"], ["updated_at", "2019-03-25 17:40:48.309237"], ["id", 1]]
|
|
8
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
9
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
10
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
11
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
12
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:35:48.322554"], ["created_at", "2019-03-25 17:40:48.324169"], ["updated_at", "2019-03-25 17:40:48.324169"]]
|
|
13
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
14
|
+
[1m[36mCmor::Contact::ContactRequest Load (0.1ms)[0m [1m[34mSELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
15
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
16
|
+
[1m[36mCmor::Contact::ContactRequest Update (0.1ms)[0m [1m[33mUPDATE "cmor_contact_contact_requests" SET "notified_at" = ?, "updated_at" = ? WHERE "cmor_contact_contact_requests"."id" = ?[0m [["notified_at", "2019-03-25 17:40:48.329542"], ["updated_at", "2019-03-25 17:40:48.330900"], ["id", 1]]
|
|
17
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
18
|
+
[1m[36mCmor::Contact::ContactRequest Load (0.3ms)[0m [1m[34mSELECT "cmor_contact_contact_requests".* FROM "cmor_contact_contact_requests" WHERE "cmor_contact_contact_requests"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
19
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
20
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
21
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
22
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.6ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:35:48.342502"], ["created_at", "2019-03-25 17:40:48.345210"], ["updated_at", "2019-03-25 17:40:48.345210"]]
|
|
23
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
24
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 07a17818-9724-4225-8aa0-004483ee0b5f) to Test(contact_requests) with arguments: 1
|
|
25
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
26
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
27
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
28
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "notified_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:35:48.387006"], ["created_at", "2019-03-25 17:40:48.388437"], ["updated_at", "2019-03-25 17:40:48.388437"]]
|
|
29
|
+
[1m[35m (11.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
30
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 62ffef2a-af2a-477d-a59b-4ef84e3489cb) to Test(contact_requests) with arguments: 1
|
|
31
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
32
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
33
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
34
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:48.973355"], ["updated_at", "2019-03-25 17:40:48.973355"]]
|
|
35
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: f7d652cc-a2e6-4459-b05f-883f72c1d4e7) to Test(contact_requests) with arguments: 1
|
|
36
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
37
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
38
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.4ms)
|
|
39
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 42.5ms
|
|
40
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
41
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
42
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
43
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.3ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.029652"], ["updated_at", "2019-03-25 17:40:49.029652"]]
|
|
44
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 2986361f-a9c0-442e-8b6b-f1b20e2e2064) to Test(contact_requests) with arguments: 1
|
|
45
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
46
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
47
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.7ms)
|
|
48
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 6.4ms
|
|
49
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
50
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
51
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
52
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.5ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.050934"], ["updated_at", "2019-03-25 17:40:49.050934"]]
|
|
53
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 9db5b590-53ec-4253-a595-ce6fb0cdae25) to Test(contact_requests) with arguments: 1
|
|
54
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
55
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
56
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.7ms)
|
|
57
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.9ms
|
|
58
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
59
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
60
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
61
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.5ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.071254"], ["updated_at", "2019-03-25 17:40:49.071254"]]
|
|
62
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 53f2e1eb-65f4-42f3-8a5c-fa5e26f2fba7) to Test(contact_requests) with arguments: 1
|
|
63
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
64
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
65
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.2ms)
|
|
66
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.1ms
|
|
67
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
68
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
69
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
70
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.7ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.108924"], ["updated_at", "2019-03-25 17:40:49.108924"]]
|
|
71
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: f8748e90-d425-4656-b731-d2473f408cac) to Test(contact_requests) with arguments: 1
|
|
72
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
73
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
74
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.5ms)
|
|
75
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 12.0ms
|
|
76
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
77
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
78
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
79
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.133301"], ["updated_at", "2019-03-25 17:40:49.133301"]]
|
|
80
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: a3d2f422-3337-4d2c-99c4-ddda0949476e) to Test(contact_requests) with arguments: 1
|
|
81
|
+
[1m[35m (0.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
82
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
83
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (13.1ms)
|
|
84
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 16.9ms
|
|
85
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
86
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
87
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
88
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.6ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.163159"], ["updated_at", "2019-03-25 17:40:49.163159"]]
|
|
89
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 735416c0-5778-423b-ba29-7dab1223986b) to Test(contact_requests) with arguments: 1
|
|
90
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
91
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
92
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.7ms)
|
|
93
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 6.6ms
|
|
94
|
+
[1m[35m (6.6ms)[0m [1m[31mrollback transaction[0m
|
|
95
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
96
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
97
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.7ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.189098"], ["updated_at", "2019-03-25 17:40:49.189098"]]
|
|
98
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 6a7453a5-f6a4-42f7-af30-3928d065732c) to Test(contact_requests) with arguments: 1
|
|
99
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
100
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
101
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.0ms)
|
|
102
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 19.2ms
|
|
103
|
+
[1m[35m (1.1ms)[0m [1m[31mrollback transaction[0m
|
|
104
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
105
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
106
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.0ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.229030"], ["updated_at", "2019-03-25 17:40:49.229030"]]
|
|
107
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: d4b93c32-fc37-4100-a65d-0a77a223b317) to Test(contact_requests) with arguments: 1
|
|
108
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
109
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
110
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.0ms)
|
|
111
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.5ms
|
|
112
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
113
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
114
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
115
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.1ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.248436"], ["updated_at", "2019-03-25 17:40:49.248436"]]
|
|
116
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: f41c79dc-88ac-4cd3-a4e7-71b93784ee40) to Test(contact_requests) with arguments: 1
|
|
117
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
118
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
119
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.5ms)
|
|
120
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 17.4ms
|
|
121
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
122
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
123
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
124
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.278298"], ["updated_at", "2019-03-25 17:40:49.278298"]]
|
|
125
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 8b9af28a-d80b-417c-be32-f811a33d8860) to Test(contact_requests) with arguments: 1
|
|
126
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
127
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
128
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (9.9ms)
|
|
129
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 13.4ms
|
|
130
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
131
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
132
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
133
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.5ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.299993"], ["updated_at", "2019-03-25 17:40:49.299993"]]
|
|
134
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: a624e0cc-7824-4b64-b5ea-12d0a03d527b) to Test(contact_requests) with arguments: 1
|
|
135
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
136
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
137
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.1ms)
|
|
138
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.4ms
|
|
139
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
140
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
141
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
142
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.3ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.335702"], ["updated_at", "2019-03-25 17:40:49.335702"]]
|
|
143
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: afeeea6b-3c89-4d4e-88f3-8291d90a99ae) to Test(contact_requests) with arguments: 1
|
|
144
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
145
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
146
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.8ms)
|
|
147
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.5ms
|
|
148
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
149
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
150
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
151
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.5ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.354681"], ["updated_at", "2019-03-25 17:40:49.354681"]]
|
|
152
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 6a135388-e358-459c-a7e0-e93d6e84e114) to Test(contact_requests) with arguments: 1
|
|
153
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
154
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
155
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.6ms)
|
|
156
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.1ms
|
|
157
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
|
158
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
159
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
160
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.7ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.384109"], ["updated_at", "2019-03-25 17:40:49.384109"]]
|
|
161
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 20909d7d-ad0f-4427-a856-b08f60d56a38) to Test(contact_requests) with arguments: 1
|
|
162
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
163
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
164
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.3ms)
|
|
165
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 6.0ms
|
|
166
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
167
|
+
[1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
|
|
168
|
+
[1m[35m (0.8ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
169
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.3ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.411629"], ["updated_at", "2019-03-25 17:40:49.411629"]]
|
|
170
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: b2de7c23-3523-457b-a042-62c5a362f3a9) to Test(contact_requests) with arguments: 1
|
|
171
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
172
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
173
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.9ms)
|
|
174
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 7.2ms
|
|
175
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
176
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
177
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
178
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.439473"], ["updated_at", "2019-03-25 17:40:49.439473"]]
|
|
179
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: d78c212d-a2f6-4c45-afbd-69999eec36c1) to Test(contact_requests) with arguments: 1
|
|
180
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
181
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
182
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.0ms)
|
|
183
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 6.5ms
|
|
184
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
185
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
186
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
187
|
+
[1m[36mCmor::Contact::ContactRequest Create (9.1ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.456031"], ["updated_at", "2019-03-25 17:40:49.456031"]]
|
|
188
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: ae1cf728-c3d1-4614-a3a0-205dcd754603) to Test(contact_requests) with arguments: 1
|
|
189
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
190
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
191
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (6.0ms)
|
|
192
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 11.3ms
|
|
193
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
194
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
195
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
196
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.493107"], ["updated_at", "2019-03-25 17:40:49.493107"]]
|
|
197
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: e1ea429d-68b6-427b-871b-fd4dd8981fdd) to Test(contact_requests) with arguments: 1
|
|
198
|
+
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
199
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
200
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (4.2ms)
|
|
201
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 9.1ms
|
|
202
|
+
[1m[35m (1.3ms)[0m [1m[31mrollback transaction[0m
|
|
203
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
204
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
205
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.536738"], ["updated_at", "2019-03-25 17:40:49.536738"]]
|
|
206
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: cda4adfc-7530-4d50-9390-04078e41d6c5) to Test(contact_requests) with arguments: 1
|
|
207
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
208
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
209
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (3.8ms)
|
|
210
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 12.0ms
|
|
211
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
212
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
213
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
214
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.5ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.557355"], ["updated_at", "2019-03-25 17:40:49.557355"]]
|
|
215
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: e02d9ac6-0e4c-4e5d-8a77-dfc19872158a) to Test(contact_requests) with arguments: 1
|
|
216
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
217
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
218
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (8.6ms)
|
|
219
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 11.9ms
|
|
220
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
221
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
222
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
223
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.7ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.582694"], ["updated_at", "2019-03-25 17:40:49.582694"]]
|
|
224
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: c6a0f666-8bd0-4e70-9969-f9203759f692) to Test(contact_requests) with arguments: 1
|
|
225
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
226
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
227
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (5.0ms)
|
|
228
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 9.2ms
|
|
229
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
230
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
231
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
232
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.0ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.602087"], ["updated_at", "2019-03-25 17:40:49.602087"]]
|
|
233
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: 65ebd476-6720-4363-8f30-2b784d31afc6) to Test(contact_requests) with arguments: 1
|
|
234
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
235
|
+
Rendering /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer
|
|
236
|
+
Rendered /home/vagrant/rails/ecm/cmor/cmor_contact/app/views/cmor/contact/contact_request_mailer/notify.text.erb within layouts/mailer (8.3ms)
|
|
237
|
+
Cmor::Contact::ContactRequestMailer#notify: processed outbound mail in 11.2ms
|
|
238
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
239
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
|
240
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
241
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
242
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
243
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
244
|
+
[1m[35m (3.2ms)[0m [1m[31mrollback transaction[0m
|
|
245
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
246
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
247
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
248
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
|
249
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
250
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
251
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
252
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
253
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
254
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
255
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
256
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
257
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
258
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT COUNT(*) FROM "cmor_contact_contact_requests"[0m
|
|
259
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "cmor_contact_contact_requests"[0m
|
|
260
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
|
261
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
262
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
263
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
264
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
265
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.862281"], ["updated_at", "2019-03-25 17:40:49.862281"]]
|
|
266
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: c068c327-9f6a-419d-a6ba-f2c6a1546da9) to Test(contact_requests) with arguments: 1
|
|
267
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
268
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
269
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
270
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
271
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
272
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "cmor_contact_contact_requests"[0m
|
|
273
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
274
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.0ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.877886"], ["updated_at", "2019-03-25 17:40:49.877886"]]
|
|
275
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: b658c94e-9b46-416b-bb6d-057262bf9fc5) to Test(contact_requests) with arguments: 1
|
|
276
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
277
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "cmor_contact_contact_requests"[0m
|
|
278
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
279
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
280
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
281
|
+
[1m[36mCmor::Contact::ContactRequest Create (0.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.919790"], ["updated_at", "2019-03-25 17:40:49.919790"]]
|
|
282
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
283
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
284
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
285
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
286
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
287
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
288
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
289
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
290
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
291
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
292
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
293
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
294
|
+
[1m[36mCmor::Contact::ContactRequest Create (1.4ms)[0m [1m[32mINSERT INTO "cmor_contact_contact_requests" ("name", "email", "phone", "ip_address", "message", "accept_terms_of_service", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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-25 17:40:49.960083"], ["updated_at", "2019-03-25 17:40:49.960083"]]
|
|
295
|
+
[ActiveJob] Enqueued Cmor::Contact::NotifyNewContactRequestJob (Job ID: bdcb4998-d44d-42fa-adb3-e652069483ea) to Test(contact_requests) with arguments: 1
|
|
296
|
+
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
297
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
298
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
299
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
300
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
301
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
302
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
303
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
304
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
305
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
306
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
307
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
308
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
309
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
310
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
311
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
312
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
313
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
314
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
315
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
316
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
317
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
318
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
319
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
320
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
321
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
322
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
323
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
324
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
325
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
326
|
+
[1m[35m (1.9ms)[0m [1m[36mbegin transaction[0m
|
|
327
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
328
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
329
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
330
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
331
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
332
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
333
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
334
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
335
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
336
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
338
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
339
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
340
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
341
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
342
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
343
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
344
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
345
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
c78e016d62c981db6a510a177981b04b0e4f6000958d8ce0d543ff0623d371fbf54bfc2e8d8803cd403665ea203150e4d2d43bf2edbe7099a61e9b2e95574b2c
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Action Cable provides the framework to deal with WebSockets in Rails.
|
|
2
|
+
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
|
|
3
|
+
//
|
|
4
|
+
//= require action_cable
|
|
5
|
+
//= require_self
|
|
6
|
+
//= require_tree ./channels
|
|
7
|
+
|
|
8
|
+
(function() {
|
|
9
|
+
this.App || (this.App = {});
|
|
10
|
+
|
|
11
|
+
App.cable = ActionCable.createConsumer();
|
|
12
|
+
|
|
13
|
+
}).call(this);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
11
|
+
* It is generally better to create a new file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|