cmor_system_backend 0.0.6.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 +28 -0
- data/Rakefile +19 -0
- data/app/assets/config/cmor_system_backend_manifest.js +2 -0
- data/app/assets/javascripts/cmor/system/backend/application/keep.js +0 -0
- data/app/assets/javascripts/cmor/system/backend/application.js +13 -0
- data/app/assets/javascripts/cmor_system_backend.js +1 -0
- data/app/assets/stylesheets/cmor/system/backend/application.css +4 -0
- data/app/assets/stylesheets/cmor_system_backend.css +3 -0
- data/app/controllers/cmor/system/backend/active_storage/attachments_controller.rb +27 -0
- data/app/controllers/cmor/system/backend/active_storage/blobs_controller.rb +27 -0
- data/app/controllers/cmor/system/backend/delayed_backend_active_record_jobs_controller.rb +21 -0
- data/app/controllers/cmor/system/backend/home_controller.rb +8 -0
- data/app/views/cmor/system/backend/active_storage/attachments/_index_table.html.haml +7 -0
- data/app/views/cmor/system/backend/active_storage/blobs/_index_table.html.haml +15 -0
- data/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_index_table_actions.html.haml +16 -0
- data/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml +12 -0
- data/config/initializers/assets.rb +2 -0
- data/config/initializers/cmor.rb +3 -0
- data/config/locales/de.yml +48 -0
- data/config/locales/en.yml +48 -0
- data/config/routes.rb +9 -0
- data/lib/cmor/system/backend/configuration.rb +27 -0
- data/lib/cmor/system/backend/engine.rb +9 -0
- data/lib/cmor/system/backend/version.rb +9 -0
- data/lib/cmor/system/backend.rb +12 -0
- data/lib/cmor_system_backend.rb +3 -0
- data/lib/generators/cmor/system/backend/install/install_generator.rb +32 -0
- data/lib/generators/cmor/system/backend/install/templates/initializer.rb +41 -0
- data/lib/generators/cmor/system/backend/install/templates/routes.source +4 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -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 +2 -0
- data/spec/dummy/app/controllers/backend_controller.rb +2 -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/models/post.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -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/delayed_job +5 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +36 -0
- data/spec/dummy/bin/update +31 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config/application.rb +34 -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 +61 -0
- data/spec/dummy/config/environments/production.rb +94 -0
- data/spec/dummy/config/environments/test.rb +46 -0
- data/spec/dummy/config/initializers/administador.rb +11 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -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_core_backend.rb +12 -0
- data/spec/dummy/config/initializers/cmor_system_backend.rb +35 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -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/i18n.rb +2 -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/route_translator.rb +3 -0
- data/spec/dummy/config/initializers/simple_form.rb +179 -0
- data/spec/dummy/config/initializers/simple_form_bootstrap.rb +439 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/locales/simple_form.en.yml +31 -0
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +11 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20190331094612_create_delayed_jobs.rb +22 -0
- data/spec/dummy/db/migrate/20190331094627_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190331094640_create_posts.rb +9 -0
- data/spec/dummy/db/schema.rb +57 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/haml/scaffold/_form.html.haml +12 -0
- data/spec/dummy/log/development.log +128 -0
- data/spec/dummy/log/test.log +951 -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/dummy/spec/factories/posts.rb +5 -0
- data/spec/dummy/spec/models/post_spec.rb +5 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/--/--kuNDI-qjasSX_vx98FiiJU7t6q9-2uAECZs3_00nA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5_i5Cu4DVWB6u5AzETTDl8QjlOOgMfrD6OzZZ0mlOQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-Y/-Y2SN5PPdcImwSrymEIobBYEZIljDWB3ff0RoGB_TsY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/06/06xXy_R6Nb4tVESoZ8BL7ieC3PsuTXp4Tk8vGlvu0oc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0d/0dEDJ_66n_wUD9IIQuMLmzqwHqX5jYjK_az2B2YB5S4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/10/10LnhyXw-zfOCjNU_dm2pq229XULyOwxJiuJ6PArWEk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1H/1H0sc5Wllu7CW7u2GM7ifu6l0prMHSetI72hfeDIf6U.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1o/1oqLwT_YuYuXdzdc62rRR7PSqDnMwyQGhcD1kOTxPq8.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1v/1vu5o8pZOx49A8FubB147MTuST9ZOG_Z59-V2lhPSds.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2-/2-4XUQU1zOtp2aZbayDkzju-R7COR2JviLRVtr9XzdA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2w/2w3NL7ot0cD6RHAax5qkbNc0N1ZIDdCU-3dVCiFyA80.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3H/3Hufg8DeGcI7D4A4mZquW4BkQwMIPGcyJE45IzAPLoY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3R/3Rr4PAjUqQn6hsghqwfPssfuJptMaHQxIcXMffXI3K4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/47/47sczUK1xuMY-kOX4m2ilscUU31HcipOP2CB4QgeuPo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4A/4AKfWXKo2-p9HLawuhXDUDvJ51li6a7tjamz85DkfeM.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4D/4DqaLJlj0stn256kYPxtSBb6o0SuFEh6B4NuR_J3ooY.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4L/4Lnn2_DBcgTRoYRew5nRbFbJu0QiOP0uc-1V7qiJ08I.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4Q/4QkTCmLzrvTMp7j_lJzL48TLLSMqDb0rOVy3rWLOzQ0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5V/5VLmIs86eSd_hPs5fQKMe6uET535JDQ0dUVamRx0md8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5X/5X1J8UBeIBYVE3m4_5t5-XN3TgrBBN2CfDAKo8G0FZU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5n/5n5srCfPI_1d6miKrdE1dfnZLr2Fm28GRwoRXV7Zzb4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6b/6b3QGbmhzESmm6r7h6Ey2N5VJv6HNPI7s3ky_YPAlxw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6m/6mjspBpf7lbs42h6gX6CDWsr6rZm4Pjvp-l5w7QAOr0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6q/6q5EgfnxHaxpX878fBdHogkT9ULkOk9-b0SsuatjOTE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7B/7BWPuyR0NC4RBxX6DNM_4Yjv5I4H0GEnE2RSur1Rwlg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7T/7THmIrbQdhcWbDN84ICQb9RhnvINJ6bMXTss4ZlA_uI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/84/84__21iiiCxGeG-EouK1OKpeIuZcFKKMT8N1glEOHIc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/89/89JNYJEQM9JZyf7zqejUgoGSe0noDpTGh8xoQWamc9I.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8D/8D_xpDjLaCIEzCSNN2dH0ZQhZsm1AOJQ7FEAxFxHQ0w.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8W/8WtRVFp11m08s36jcIR3QHsTAOwLS-BvldrGYd7NaVQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8f/8fyEWsLyoNl9Fol3NjyOMkmnPZLbySqJ_Cqysly_TgU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8tdDsZkkAFiLUoepQpVLBq_D0eIh01G2HLd3NFDcRs8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/91/91Qk1qA0FrC6hVDekhrlUz00i2leQGCCNhFUwfM2U8I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9o/9o8Qwhpa624CaUIvd0F8htKcM_LKK2RE3hIzHyWlb1c.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9q/9qfFDXVHpk41QG7WtXb9d0vuuBHtyz9oRnJ71uOHZ1M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AR/ARxZknrQslD7H8ebebqkPZiyPtZILG1Rtlq6pgK9zYo.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Am/AmV2YeTLcEu585qtqxINmfRXabST-rXrCzIhJtbf57Q.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ar/Aredar3r6yXFxQOrrapXB81CBRWR596Zv-v1l_ZUHG8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/At/AtbpLF65IYMctIApvHZSYNppMU72buuO8Ua9D5bMPRk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B9/B9z4O4V6Ntfhgr3Z4K9GXevgl-o6_G4OT9Wlbu1CAIw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bo/BoBmJiCerYN_4K4pDinBCcY3B6JFIW1oV4VmU7x8txs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bp/Bpn4o6bMLfsdCzpsMRLTHt0zP-a3sBtapCcKD9SkiSg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C4/C4LLShJFixxoppzlyX_1hOznT5LoPRmHSgurkCjQIDk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CF/CFlbSmnf2Pa_peqpgvcvP0UHK6o-rLtBgcJV3QGLGEI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CN/CNiorCIoliz3Cwq2etLd7Dd0d83sJ1Wfp0j_7n3tERA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cm/Cmwwv8ddr2byZrle-Z3ivJ5WnPPv9kEDhkNJ83gOwYk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cx/CxDxFVtH-HQCIhXkTjj62kfCsbu93FSHzbJkGMOsX_s.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D1/D1yTrkh1wLtA65um5NDZDqgOJYkbnuPB1jJeqn0gveg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DN/DNiaDTrxxV10EWiPegw6Rtwf-jgFjhp7K2TZSUT_aW8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Da/DafvNPQk8SlKSG4ZJjgHHAPlbQLDSVhQ-5b9WMZ4iv4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dx/Dx3aTfrI5VF5MuvCgSBCgbRd4iMdder-8OvMfrtaON0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EK/EKpLfemr_IUowOSnIjCV1QvOvzgYt_SfduE_ZwNyfKI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EQ/EQq51m2tS2-w7UL_mT2dQ-u8vReD7FSiyCmPIdTYRRE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EU/EUMQaSL_lD1Z9R_EAcJLyuNaRL2DICkT4xj5XCS4dwg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Em/Em137X7-MWtcStt_1eIOF418j8dUh7hBC_94vwfVILQ.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ez/EzqaRbf1GGVrgimbcDHQlVxE4aSBeIccfD1myQXqxRg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FO/FOlMxqHy9-dO6zjIOX06fPLY2n3yjiHxmnuJ36yHtQs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F_/F_xrUvfDEGW2HWJlPwVMsszDJST7NMt1o8H3x8Eqjzg.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fd/Fdh8clk4QyqC4tyyDJDlsvQYS4pD8tUJQryNyYirftc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fy/FyXS9zF1yr_zW2vXB6E_CYQIGe1WZgRCEwdLiCnrWfk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/G9/G9AzrpNgt-do2ILa3m6Rm7PaPPuriZXnF4IsUYSc0GQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/GT/GTTZq3-5ucG5FFjk5QvM0gPUnErTXVt9_x0gNovVK_4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gy/GySaRKbEm-CVxrKiAr4iNc6PorLWn1ZPDh_SMXbxxX4.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gz/GzuFtMoPy9ZbQxFv5eDS9uz7VHkUVkDvP4DzP1zfIpA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I2/I2rV-zM_o35vIzVjE6JjN54luUBVqNrxly-4U9C2huU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I8/I8LSZjD849M-zlWFF5_wyM1DnnyIGDQIYFOA4-k7Xzo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IU/IUGIkL3Eu0gXGUtNjJ2KTqp13fBKEhaoMwFuMdTtyG0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IU/IUiOnsp11P0WckGjGe2EZIl31tdgt9gQNwUSERKdm5g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I_/I_eYb3RQOJg5MoeZmN02od4HnFhNDqdYeWS7aHEntpA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Id/IdX1diTu6Ek6UiwgQtTsMM_KOVlndv3_b6-UyDE3qYw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J-/J-Gv_xKM1Nigsi_t5jtQ-5sMjqLAZN2T0o14v9-hI1k.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J2/J2KHJGQwbMl2Q8ETpSynUvJIUQW5bwmYpgScxltdlBo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4P8NPeJOF4V2Q6On9oMqdSFkNcjsrAch9_-rV0tDgs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JD/JD1DuxuAp8u_THuUDDOOi85I35BNWaJoNJOzrGQmvdo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JG/JGstfwqTHlnlh0tlcWM_1s0Ff7pXflOUrM6zlULXD_w.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JH/JH7MnyfP9jO4ML1W7NqC2E3DpFmRab_4KSmXqIFfyAE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JI/JIYHAj6g_qKUgy29WTdI2hsFfH3dFXfFcqXckz27jdg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JN/JNoI9B-x5jHF_qfsa6IIO3DPW8KssxNJsNK9F2qbRFs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jh/Jh77UCfUEd9iwHEF4UsoftMyXg8GyTCTnMtS3vKdOKY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K3/K3MAGk8XcpzS5X0HTuUHgVU0VLM8mWXYgMpwnE5CC5w.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K5/K5EtcC8KageFCflmXNDxhZUtRxqcqoCa28GiMAK5Tlk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KD/KDsjkma1n_FFLNbLLnsvs9xTrucgpgXdO3-5iI2FsVc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/L1/L1-2Ii78nV6I0WDUbCAWkdFWGsus1d_PciKtgydRHQE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lp/Lpu_gbOZtQgoKR4k5IdQI6yBe16T_f2iDKZxyCcNVC4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M7/M7Cqoyak3dy9iCKmThw4HeH5HcFDKU1Uut_LTwgjtx0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MU/MU_g5_uXNVpt-lHFHZPNrFTiW8CpLMePeg5dDTq6uRM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MY/MYeFz-MQYpo2h8J_xKinEHbow05wf40rLnm7I9hiG_4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Md/MdULcMWXvKi83370F6lcp6pVjkaduI1OpPeK_iuHb24.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mw/MwZxF-Ld9kIyAp6hrOzwGBhiDeU2tbiMtKc4lRTR3Hg.cache +5 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NW/NWL1PY76XYJ13P0DC2ZMg-Aj8UU0JPQfEbvuyX06Bds.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Nm/NmXI49AE4TxnUg7GheyHyjugHjK-y63Ec3BklNMXULk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OA/OA72VeQ05pF6Ex57QQi6tDd04ZTA7f4veKvBd_oqs-s.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTBjtEm36amBFx9-OAmOF3EWnr2-YQiZd6IUdKEgHko.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ov/OvN-i6iA8MvqPyfz90O-eNsSEk6ZZTXz1NrfnZZiLsA.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pg/PgSxusnbkJfEIGN7NDIzYs_I5Eel5M2h4LkApeBzqHE.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pn/Pn370aXcRFPGTolqaTrwvvx-6ZBhs6iOIdodCrv6kII.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pq/PqEtzizP8HFsj9SoSc29Yob8DKB8kVltMOPFtp4_cfs.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pq/PqWCNqm1ZMEQMfbxQuJiP5QQEYo8RiisCBHhBmd4Edk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q6/Q6uhfFRQOQA45Z8tgj3oBVfiTDsaiB5jufDdOVqWva0.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QA/QAQoJ0cjBqu547FjbP8SuBDHk6S0yLbd3P4TWbXsmtI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QO/QOtpCYTTAfxmh-JTpnu1T3t4KPKqyWUrUrXPWHQdcZ4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qr/QrrVbn0dg_IYpw9D0Em4t8fhQhf7gCcah2p9ouo6_fI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/R3/R3GdNowIw3hlF0ujvYHDVVWVGlxQVJQFJWbrrEZjmEg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RT/RTh3gNPkgO3l1r7ZQfzEZ3-bJq34TeL9Yeie6Z74sjc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RU/RUljKovpPguUYZlGWwH8Uq3Dz5jooIXpsueQufD9C3A.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RV/RV9h6sSJXZtqJVGTcP631X2wI5diOyzgVvUIuZQrSUI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rg/RgWfDOOQ4XkJRe_DawABG4RvcdJHTuksk681189ei3A.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ru/RukwwJ7Lmi0dwdc9ZNkgrC6pNXzXq651EPDxipa78aU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ry/RyD-qreU4wfJhGfqk9zf--DFGIOQhV17UrGoSxczlco.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S2/S2O2x8-_FGPk-cJlkizaYLOIEqxJw17HPpJSOL0MZYc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S4/S4vBrJvVz1UP01u7LRqNX737hOI_mDd3ZPl7NvnSuoM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SE/SEwkUu1OvHKFh-u8I4obLeh8gqkx2z2JwD1KjVIuaFE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SN/SNgERjuWagfvj5wSayGOtfT95brSc8DDpkFiJdgBxX0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SO/SOb6BxK3G45jgBDbHt17DF9uFa_iABmpWGCw_F0X9pQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SX/SXi6NGOGJdeRoxVwFGXLE36czvrMXo3lHKuBm4eiDaQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZ2zYWjqsBfC15K6UzYAeVK3l0jT1aVAvUmZCezRE4I.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sb/SbzywrP6ah14UVsymNTOPaq4GOTJsp3C9biu17Nxhw8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sr/Sr_aszWSNdB_F6zBKYp23cqTx2qyt3ErPtjpQgfSbPo.cache +4 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TL/TLYNDjXB6--5naO6fE8rh4Wgu-HD19EiF7PdVz_3nCs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TN/TNRLsaNR_OsXAHJRlxtA59_yi0Ywroef-Omoaiy5oyk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ta/Ta1P7jGXWwiSVQjfMezpmdr7NDPagbH8rkuoxkw9tAg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Th/ThoItLPs8mmsOQRD7ZbIN5DH7eGr3UkWjpQ7SBqsPgE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ti/TiJwwmWdA77ftSiKUR9yu0TJemgjtkT4IaauSOyYfL8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tr/TrWdv_oxon9raWNUNzf6rNxU-o7ExWGo0fb9G8tvpPo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwXTNSA_NorVL0xyTpbgWWdb_YotZQCpMnxATglOU98.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ul/UlAQOCevk-ZG1nTs9KCsKfWg6rVS5T4PlHUxpFhgbJI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VW/VWLnz994y7sfZE16oRC22SQ_ucD6mVZcCrIZ_MOBfIQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VY/VYexEwWUWmwml7Etr-Wu1bjQK_9ctDO0Z6l3X6JbxO8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vb/VbcG7sudP_cXC3tT_FWAAfPbS9X-0g8Ek853dOAfy6U.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wl/WlC2AKxOrEunxOipcU1I-f1lihQGby6U8UOEj13hiUs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X9/X98ohuir4hwOrFrzSme4JMDfYnzIsIsGuoaoviV9zhk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XF/XF5tYGblF6MCpWFAhRpHLBfYG6uxb2NN9ypl5nJGyFI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XN/XNHk13lf59pkMPH-W9hh57YnoEQef8vC0ubtkTNBF7I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XT/XTu_OJIoJM_TI94cV3B35O_1aTWIoiOvFMAw9cDuYHU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YG/YG9rrpVBxWFqnCHtcnmar5FvGbh2WFybMTH8LVsguyg.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YH/YH0L_yB0e73CNcd263P29amwGtzCS4Esq7P9FUg2RnI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YU/YUc6fu20FHaK6IP5W7nEgsSbbpFtUvbk6vOIOw5Tr5g.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/Yfre4CR0VDsYqN4th36R5YNDeP7kzZ6_zjG2SKBVBPw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yo/Yo5H4UJHArztqJqSWzAMN2u7YAcm5_HjbiE4WviMGC8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yo/Yoqq3KwrAPNE_-xeJFQeyr-RDVjqlFbxK66BtmXAc5c.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z8/Z8rKwEc3buqlWXgXnoKMqaiVfNARY4ibzhyn1_TQEwo.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z9/Z9EiCrPEJikjwohXGUyZpe3eLFTDEKi7Wj7EQks68so.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zu/Zu5tAoCmNX67puQZaR3Y8TffDKpbwvCbJm4O_LVnb6g.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_p/_pm_0rwTuVS36643Z8915Dqr2NYY8uqbELvAQcH1DsU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aQ/aQnaFh6hQ7VMO52JQBxstVXSrS3-4m9eL_RyTQtGzV0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/at/atAOb41P_Q78sJdwJ_zvtqiWVJjopAeYG4d03crb-tQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ay/ayh76HmqeLRMSghmYXsAI1BfnPqMqZa1oqUjoHk8aBM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/az/azPz0MjaMrptwfd2WrANe0mC8dv4x54NUTZ_RHwB2Fs.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bDGUpl0_kkZgFjHxhyM7wbd1kXwoRu6IMkf_zmKIl7w.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTP3coNpfDpuWOzrgGsuYeL6iZznxseYWquj0UyfDDM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bW/bW1IJ8Jx6pO2ujOW3K6B3vPEtu3CfILTOIZXPZy_OO8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bd/bdfU5B92e9BnbLrGH5Heq1fsYG4Q3gc2xkHUJ3HRPhE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bj/bj9nCcaP7Y34lzTvVSkZa8cyRyMjYCP6M5-_AYCuOeA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cv/cvUFG-iGp3QdaQRB8LcWLeyFk1-ZJj9mAaMiTgNmhy4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cy/cyEecrJPGiaMG_zjQKAC_RG3gQ8x1J6oSTLW5sPN0HA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cz/cz-hTbllFwMLNM6SURv2Gc_iR9DzQiqzcnwrr-vFMy8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d8/d84403iB5YCNNOVMCTOicWh0mY7SobSV3aVd4ro4dDE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d9/d9BdLnODbEl2mT-8qTxCw5d4UxY9Sui2NUicHp-KM6c.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dN/dNpIKXkxeI65UavBtUJ5clskOmoykmDNmP8FlMl_VSE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dV/dVNzuPB4VeyqnKjSmwPXMG6H88bVd2vKsS13PmhQ1tM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dV/dVZWFCqDgyxiTQBlUZgzzGntp17Augle1Z9jMxGFfgY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/di/diu5W6Afjb-wmGjAzMP5pK1awhZK_GYl63WYH4PWU3k.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/du/duGvltO6-z27y85HLAsJENCSx8Ne8UTMzm9-hXjchOs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ep/epqN736SDvOnj4RFxwF8f66bXtB4G3LGwDLCHLmQx_Y.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g2/g25tK__0OFGKPwfTFvU6LMqKD6uThsHFOf_wZNzh-5g.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gH/gHOeZb8z1CTweFFAsXywyR9sV2hC60RZ0A5alXRPYsk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gK/gK7DVkeTH5kaLE4M25UVaEsxbVIXfF8Hzoa7a4NIA_0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gu/guLD08tGuYN9-QyPPMorlv27APHLeGDzaj-vDmzaLXQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gw/gwvv-p7sUqFjoeT8xo5G6aqbp1jXyTczH_uImRqgKw0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/h9/h96mrC7hlEM5BokAayvD9ucfel_sH0mGMZA8maQWGFc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hH/hH5HROywpGMnR19XrnWQsIBTEcR9z26POHR10QfNxVM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hjKZBPi7GkLwXTVyg3IQJNJ41_kEfnko7oq_u4Nmom8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hl/hlhVsn0HtbRUS7SaSI2k2lAz8R_YZStzp6xZOd3-K0w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4OZu7dEwcFP6RiyvrGRH5vXaaKjuHP8ogM6Ex5kq94.cache +34 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4k7wzTTAfiSQBg-4iT_BDC5TLi9Ce5QSib-hMHXuyw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iA/iA_PV-jzE0h7Oqhp4XAZru0XJYbcreWgXm89fBck9Aw.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ic/icnSIKutQMyGC6ldcZtto1RYoeMd5ioRztJnDQ_aIcI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/io/ioMpSl__-tQJZEFn66EuOZggLFncMaagrATjUwG5mWM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j2/j234g8hRsPTcmiYh64h75cGkVJU1uU7x8YU9r4mEqJc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jK/jK8cqSSmB_ojub894xSJsjnMM2NAKChmtYFpzP48XU8.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jT/jTvR7Jp6Mn5r3s0S5DYyIAkacmml4biuCXsRqR-IHQ8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jj/jjQ0o-RtYJK6fGw1F5wrT8xczOCI35N1kylOfeCIPy4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/k-/k-bsTA315sR8iUULydbJ9swQ_sbliU0Z3nmwvFduMoQ.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kC/kClGcEovuXyEHKJSC1hme_H4Krcr3KVFFQCqpYSj0XM.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l2/l2rSS2f4v-n85AJAXSuGlHsR08GH1y4HTzDyVbF_UnU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDQmRr0s6ARcHxzaNaW0RhESK09xHxhmrPcV9p_vGbc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lL/lLGpPEYuJxwFhLyaGWz5L5SNlB-x2eGWF5_H2fNaBqM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljVlagIG2x87dR5D1NSztu6gWmzzawm1nZOE4TmymmU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3RtRdvHROwjpGVwjOd8rEQ_tg8E03UHR12uHkQ5yns.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mV/mV5u08q68IkPm0RFokofH5-kx1UxEZg72azxVXhAlLk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mW/mWUwcqwwOYPtROn-ONyUyM3BPdILAw5l0wvB9JyqsuU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mw/mw7MZKwF7E-7ZSspF4Xlsxode27OUoKRy1z6Pov4oq0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oK/oKJ87oCEPgOfFajJZhDtWonyaKq8uRlO8JYz6-cVDoI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oU/oUMojGzGoi9vWIsLjJ1lkpDHDSg24Ippt3LrUNxXBKE.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oc/ocE5CB1firE1AKd7UYONa7YS3sHpvl3nbEjrdgWc-0g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oj/oj_rjV4KkuJmf-iGvO_hSFT692_PHcvoDvF3O-VQU2c.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oo/oo5PuYWsxB2Bx_gvblY8ml6D3FnXhwEfMm-uUqicAp0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/op/oplkuD78F1Xg0Jh1N-3fbHQp1Vpfe2ybLFLjnK8Kzyw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pH/pHyZ9AbTUNEl1mAoh9pGTiZ3R2etAFRZR7_ym_DWwR8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/py/pygxCScpUQhNEC_KRfCYZcx2l0xRhRMnzPgCRLfp23A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qn/qnqqDu1kS8ig9iEei5CjAYND02unYf-E22-J953_GIc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qo/qomhlVAS_REPvgo7Dtrh7-r4Ni69XLSIykCxSM7wWXY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qp/qpnn4gewy2_0O7aLG1YcbCjdvoFzZxERgl-uAb2NBiU.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qx/qxyGSXnlXlB1hGKL0ReQ-ySdIsxUBR6ZBTW5fZU_9Qg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rN/rNQxz_OgqtJJ20ehUUfYqYAoPenc2Qq3qsdKzpGg1To.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rS-6Ew0r0DBaZoTyAD1yMYRbBiJtFyn6nwxe6G_9ruk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sC/sCtYNlU3vAvVC26ZKDuNgeq31ehn4J6OR31TpQVLAU8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sK/sKvoweUFusZwJ1IUlvNFxobu2z62MY8hwGZVQZlxCyg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPCsm6ym3xm2G7DaEcE8AIICPGqMBlhJuy3WLz2cnkk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPXXSTl0mnL3MC1fHMa_BLVITQ5rYbck0u985DQAe00.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sS/sSkn0HMvM3rLJ_2-w_ulwClVYcJ0XmcH0orH2IQNawo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sl/sls963PmVXZzCIy9Ch2L-HCW41R4KwLFcX--npSGFUY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/su/sutg1rA65QFBgoJD-0HYa5kOAmcUdsYtBHzGbasKyUs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sz/szywK58M4yVzq_ikv80eyFp6W5kBPCipX_Bz83CrCKI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t8/t8jEC5t5VJ5SJpmaePxJ6MAVt1q1wi1iTqQky-b1juE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tM/tMFk2brkn_cv2m4TrPivZL6DI6kTb6iljDzaJAY77NI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tY/tYYp0H86bioOkPFc1RbWFH68qWBtL9S2yA6tuwJgzwE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tz/tzawx9c8FRRG-QmTL-Jtrc8beWTUrYpb30NVV1fKGew.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-3FDQkXVo6TXPl_h-_tlNmZfB_M3W4KLFHeL_PbWVo.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uF/uFmhqcLtlSH6sdigmpsMJIOlbB_xVHd8-fr_sVgWgEA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uQ/uQqnjuuo618wwjt9jXlYcIsldsplSsIN3NshQ5-zMuU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uo/uoYAZRV-R0GhhsrHYTt4drILzKOa3_zSzpBzU6jBeuA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vC/vCTeCTUOGd9Fb26euiorkxjblPbC2BqzbEjoVxvjsRI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vX/vXQAX6wcse5IxAuysExAkVcqi1itMI9X06wcwaMkRZk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vb/vbEKu3SXV3oiwyM0lIW94FHcb81v-HlbMRoIsh8YSgQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w2/w2sLW3Z38joV9ng6paqC1dFBgouTAnChoHQIjK3mQtw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wQ/wQ6JCU93qzbLum7H2llMRi6syrlg4GSiTjLKmb_Pbvk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wa/waiHxrcavi3eaZqtHp_iZa_Xx8A_poK45ivYx73qDnM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ws/wshuOiy0DqCG4PUGL0CPjZhA5sxfnA-jqC7elF3Xbpw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wy/wymDHEbVm2LUuNGSCmMFfaYbe5GGShEdHFd4LIUlACE.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xS/xSWEENE2MwGitZG07bKTXThrda2Y_UoFELvWhAjozKw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xq/xqGZ2SqDZfTputNIngRx7YthNyQg3QPv_PDFT5gb79s.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y5/y5_FzvNNSMpbMmHCIsG4K4Qz8TdMhunGIVqp5nak80I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yK/yK_ltn3FtW6N9iCXqjexaVMHtm9PZtKGfoCgGpLX1tg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yW/yW8j6--nX1z7PyocdbnwtcSwWDE-b0Q2X1tkotvKrdE.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yY/yYwB1Ug3ogrNxQDvt8ueEyzsR32PT1EzRHj_ljxvelQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yy/yyPV0MatlE_6qP8W4KY8vgxiDg_uR6pZRd9U80ZdTV8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z3/z3Js_pcghMRJBt3n7rl9lB8atXrsbV0vbEBNyhsgsj4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ze/zea0MANxU4zQJ4Y3NOpM4O-iDT_oL-ATCyiZ-KRZJ20.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zf/zfPdCqf3PlK-fjEu0zz4CpZoQXvuu_GMkbbUORnAFec.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zl/zlSTYPztqYVdN3sgoh99oDWUs0viPTW9Iaaxc8urz00.cache +2 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/tmp/storage/CF/SH/CFSHNUWFo361eM5eFsjjNSji +0 -0
- data/spec/dummy/tmp/storage/Dh/V1/DhV1MFZAXjHe7jFGjdSaqtzm +0 -0
- data/spec/dummy/tmp/storage/GU/q4/GUq4hFQeJZCBJXy5AkoxL5Pr +0 -0
- data/spec/dummy/tmp/storage/Hs/QV/HsQVZKt2eGhoJj9GhAWNmmrQ +0 -0
- data/spec/dummy/tmp/storage/Kc/EJ/KcEJa9B69qLYhj35pgHb2Cd9 +0 -0
- data/spec/dummy/tmp/storage/Yx/oL/YxoLt4RgE7WkTehRGTPUeXZX +0 -0
- data/spec/dummy/tmp/storage/aM/57/aM57uKLLDGVnFcK91NdWo4A6 +0 -0
- data/spec/dummy/tmp/storage/ap/2Z/ap2Z5QnZtfgLPT8FVW3ev2hE +0 -0
- data/spec/dummy/tmp/storage/d2/fD/d2fD7omgnjuhf87EEt7DFc4c +0 -0
- data/spec/dummy/tmp/storage/kV/6G/kV6GEcNwn15FWgRD5NnFFmBg +0 -0
- data/spec/dummy/tmp/storage/pU/6b/pU6b7pfVADvk6KWM34WCG9pi +0 -0
- data/spec/dummy/tmp/storage/sf/7h/sf7hbKZrqdMSC62Dfkc8rwKe +0 -0
- data/spec/dummy/tmp/storage/uQ/tn/uQtnL9wfUCYQyrfXaqJ3d9gq +0 -0
- data/spec/dummy/tmp/storage/vD/eE/vDeEMqEomB3tB5ktq4FaH67d +0 -0
- data/spec/factories/active_storage/attachments.rb +7 -0
- data/spec/factories/active_storage/blobs.rb +10 -0
- data/spec/factories/delayed/backend_active_record_jobs.rb +5 -0
- data/spec/features/de/backend/system/active_storage/attachments_feature_spec.rb +20 -0
- data/spec/features/de/backend/system/active_storage/blobs_feature_spec.rb +20 -0
- data/spec/features/de/backend/system/delayed_backend_active_record_jobs_feature_spec.rb +55 -0
- data/spec/files/active_storage/blob/example.png +0 -0
- data/spec/models/generic_spec.rb +51 -0
- data/spec/models/i18n_spec.rb +42 -0
- data/spec/rails_helper.rb +62 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/support/capybara.rb +1 -0
- data/spec/support/factory_bot.rb +12 -0
- data/spec/support/pry-rails.rb +1 -0
- data/spec/support/rao-shoulda_matchers.rb +5 -0
- data/spec/support/shoulda_matchers.rb +8 -0
- metadata +731 -0
|
@@ -0,0 +1,951 @@
|
|
|
1
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
2
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3
|
+
[1m[36mPost Create (0.9ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:22.243728"], ["updated_at", "2019-03-31 09:47:22.243728"]]
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
5
|
+
[36m Disk Storage (1.1ms) [0m[32mUploaded file to key: DhV1MFZAXjHe7jFGjdSaqtzm (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
6
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
7
|
+
[1m[36mActiveStorage::Blob Create (0.7ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "DhV1MFZAXjHe7jFGjdSaqtzm"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:22.428302"]]
|
|
8
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
9
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
10
|
+
[1m[36mActiveStorage::Attachment Create (0.6ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:47:22.454039"]]
|
|
11
|
+
[1m[36mPost Update (0.4ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:22.457345"], ["id", 1]]
|
|
12
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
13
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 141c1f87-a4a5-46c6-9101-fda563166dd8) to Async(default) with arguments: #<GlobalID:0x000000060cb5d8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
14
|
+
[1m[36mActiveStorage::Blob Load (3.8ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
15
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] Performing ActiveStorage::AnalyzeJob (Job ID: 141c1f87-a4a5-46c6-9101-fda563166dd8) from Async(default) with arguments: #<GlobalID:0x0000000605da38 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
16
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
17
|
+
[1m[36mPost Create (0.4ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:22.498404"], ["updated_at", "2019-03-31 09:47:22.498404"]]
|
|
18
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
19
|
+
[36m Disk Storage (2.2ms) [0m[32mUploaded file to key: HsQVZKt2eGhoJj9GhAWNmmrQ (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
20
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
21
|
+
[1m[36mActiveStorage::Blob Create (0.7ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "HsQVZKt2eGhoJj9GhAWNmmrQ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:22.511974"]]
|
|
22
|
+
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
23
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
24
|
+
[1m[36mActiveStorage::Attachment Create (0.6ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 2], ["blob_id", 2], ["created_at", "2019-03-31 09:47:22.520510"]]
|
|
25
|
+
[1m[36mPost Update (0.6ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:22.524153"], ["id", 2]]
|
|
26
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
27
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 0193228d-247f-419c-bb09-0d7f72cfb630) to Async(default) with arguments: #<GlobalID:0x00000005e08d50 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
28
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
29
|
+
[1m[36mPost Create (0.4ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:22.532504"], ["updated_at", "2019-03-31 09:47:22.532504"]]
|
|
30
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
31
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] [36m Disk Storage (42.1ms) [0m[34mDownloaded file from key: DhV1MFZAXjHe7jFGjdSaqtzm[0m
|
|
32
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] Skipping image analysis because the mini_magick gem isn't installed
|
|
33
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
34
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
35
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
36
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [141c1f87-a4a5-46c6-9101-fda563166dd8] Performed ActiveStorage::AnalyzeJob (Job ID: 141c1f87-a4a5-46c6-9101-fda563166dd8) from Async(default) in 67.2ms
|
|
37
|
+
[36m Disk Storage (17.5ms) [0m[32mUploaded file to key: pU6b7pfVADvk6KWM34WCG9pi (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
38
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
39
|
+
[1m[36mActiveStorage::Blob Create (0.4ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "pU6b7pfVADvk6KWM34WCG9pi"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:22.566389"]]
|
|
40
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
41
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
42
|
+
[1m[36mActiveStorage::Attachment Create (0.4ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 3], ["blob_id", 3], ["created_at", "2019-03-31 09:47:22.572607"]]
|
|
43
|
+
[1m[36mPost Update (0.4ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:22.575067"], ["id", 3]]
|
|
44
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
45
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 9e255e1d-25f1-45f9-a546-b0a5a1aeafa4) to Async(default) with arguments: #<GlobalID:0x000000047e77d8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
46
|
+
[1m[36mActiveStorage::Blob Load (14.0ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
47
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] Performing ActiveStorage::AnalyzeJob (Job ID: 0193228d-247f-419c-bb09-0d7f72cfb630) from Async(default) with arguments: #<GlobalID:0x00000004888bb0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
|
|
48
|
+
[1m[36mActiveStorage::Blob Load (0.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
49
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] Performing ActiveStorage::AnalyzeJob (Job ID: 9e255e1d-25f1-45f9-a546-b0a5a1aeafa4) from Async(default) with arguments: #<GlobalID:0x00000004941890 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
|
|
50
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] [36m Disk Storage (0.7ms) [0m[34mDownloaded file from key: HsQVZKt2eGhoJj9GhAWNmmrQ[0m
|
|
51
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] Skipping image analysis because the mini_magick gem isn't installed
|
|
52
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
53
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 2]]
|
|
54
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
55
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [0193228d-247f-419c-bb09-0d7f72cfb630] Performed ActiveStorage::AnalyzeJob (Job ID: 0193228d-247f-419c-bb09-0d7f72cfb630) from Async(default) in 18.81ms
|
|
56
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2019-03-31 11:47:22 +0200
|
|
57
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] [36m Disk Storage (215.1ms) [0m[34mDownloaded file from key: pU6b7pfVADvk6KWM34WCG9pi[0m
|
|
58
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] Skipping image analysis because the mini_magick gem isn't installed
|
|
59
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
60
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] [1m[36mActiveStorage::Blob Update (0.8ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 3]]
|
|
61
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] [1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
62
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [9e255e1d-25f1-45f9-a546-b0a5a1aeafa4] Performed ActiveStorage::AnalyzeJob (Job ID: 9e255e1d-25f1-45f9-a546-b0a5a1aeafa4) from Async(default) in 235.78ms
|
|
63
|
+
Processing by Cmor::System::Backend::ActiveStorage::AttachmentsController#index as HTML
|
|
64
|
+
Parameters: {"locale"=>"de"}
|
|
65
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
66
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (7.6ms)
|
|
67
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/active_storage/attachments/_index_table.html.haml (18.4ms)
|
|
68
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (34.2ms)
|
|
69
|
+
[1m[36mActiveStorage::Attachment Load (0.6ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
70
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (12.1ms)
|
|
71
|
+
[1m[36mPost Load (2.8ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
72
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (21.7ms)
|
|
73
|
+
[1m[36mActiveStorage::Blob Load (0.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
74
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
75
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
76
|
+
[1m[36mPost Load (0.4ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
77
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (7.8ms)
|
|
78
|
+
[1m[36mActiveStorage::Blob Load (0.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
79
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.8ms)
|
|
80
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
81
|
+
[1m[36mPost Load (0.2ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
82
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (5.7ms)
|
|
83
|
+
[1m[36mActiveStorage::Blob Load (0.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
84
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
85
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (175.9ms)
|
|
86
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (4.4ms)
|
|
87
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (6.0ms)
|
|
88
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (512.1ms)
|
|
89
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (4.4ms)
|
|
90
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
91
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (14.3ms)
|
|
92
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (5.9ms)
|
|
93
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (9.8ms)
|
|
94
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
95
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
96
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
97
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
98
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (142.4ms)
|
|
99
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (2.5ms)
|
|
100
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
101
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (10.5ms)
|
|
102
|
+
Completed 200 OK in 2397ms (Views: 2362.9ms | ActiveRecord: 6.1ms)
|
|
103
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
104
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
105
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
106
|
+
[1m[36mPost Create (0.6ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:25.345617"], ["updated_at", "2019-03-31 09:47:25.345617"]]
|
|
107
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
108
|
+
[36m Disk Storage (1.7ms) [0m[32mUploaded file to key: d2fD7omgnjuhf87EEt7DFc4c (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
109
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
110
|
+
[1m[36mActiveStorage::Blob Create (0.9ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "d2fD7omgnjuhf87EEt7DFc4c"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:25.358180"]]
|
|
111
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
112
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
113
|
+
[1m[36mActiveStorage::Attachment Create (0.5ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:47:25.368398"]]
|
|
114
|
+
[1m[36mPost Update (0.4ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:25.371009"], ["id", 1]]
|
|
115
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
116
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: f8f9c8f5-0de7-476d-8efc-be0a154a5819) to Async(default) with arguments: #<GlobalID:0x00000005ceb120 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
117
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2019-03-31 11:47:25 +0200
|
|
118
|
+
Processing by Cmor::System::Backend::ActiveStorage::AttachmentsController#show as HTML
|
|
119
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
120
|
+
[1m[36mActiveStorage::Blob Load (14.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
121
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] Performing ActiveStorage::AnalyzeJob (Job ID: f8f9c8f5-0de7-476d-8efc-be0a154a5819) from Async(default) with arguments: #<GlobalID:0x00000005e581c0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
122
|
+
[1m[36mActiveStorage::Attachment Load (1.9ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
123
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
124
|
+
[1m[36mActiveStorage::Blob Load (0.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
125
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] [36m Disk Storage (162.9ms) [0m[34mDownloaded file from key: d2fD7omgnjuhf87EEt7DFc4c[0m
|
|
126
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (5.5ms)
|
|
127
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] Skipping image analysis because the mini_magick gem isn't installed
|
|
128
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] [1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
129
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
130
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
131
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [f8f9c8f5-0de7-476d-8efc-be0a154a5819] Performed ActiveStorage::AnalyzeJob (Job ID: f8f9c8f5-0de7-476d-8efc-be0a154a5819) from Async(default) in 224.87ms
|
|
132
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (5.4ms)
|
|
133
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
134
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
135
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
136
|
+
[1m[36mPost Load (0.4ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
137
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_association.html.haml (16.5ms)
|
|
138
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_association.html.haml (3.1ms)
|
|
139
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (10.4ms)
|
|
140
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (83.1ms)
|
|
141
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (9.1ms)
|
|
142
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (19.3ms)
|
|
143
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (356.3ms)
|
|
144
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (1.1ms)
|
|
145
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
146
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.6ms)
|
|
147
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (1.5ms)
|
|
148
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.3ms)
|
|
149
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
150
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
151
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
152
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
153
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (17.5ms)
|
|
154
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.2ms)
|
|
155
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
156
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.4ms)
|
|
157
|
+
Completed 200 OK in 562ms (Views: 401.4ms | ActiveRecord: 4.1ms)
|
|
158
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
159
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
160
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
161
|
+
[1m[36mPost Create (0.8ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:25.997253"], ["updated_at", "2019-03-31 09:47:25.997253"]]
|
|
162
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
163
|
+
[36m Disk Storage (3.5ms) [0m[32mUploaded file to key: KcEJa9B69qLYhj35pgHb2Cd9 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
164
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
165
|
+
[1m[36mActiveStorage::Blob Create (1.4ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "KcEJa9B69qLYhj35pgHb2Cd9"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:26.016028"]]
|
|
166
|
+
[1m[35m (1.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
167
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
168
|
+
[1m[36mActiveStorage::Attachment Create (0.7ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:47:26.032200"]]
|
|
169
|
+
[1m[36mPost Update (2.0ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:26.045307"], ["id", 1]]
|
|
170
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
171
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: db4e7775-1f90-4174-aef1-10a65a6c43d0) to Async(default) with arguments: #<GlobalID:0x00000008812ad8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
172
|
+
Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2019-03-31 11:47:26 +0200
|
|
173
|
+
Processing by Cmor::System::Backend::ActiveStorage::AttachmentsController#show as HTML
|
|
174
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
175
|
+
[1m[36mActiveStorage::Blob Load (45.6ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
176
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] Performing ActiveStorage::AnalyzeJob (Job ID: db4e7775-1f90-4174-aef1-10a65a6c43d0) from Async(default) with arguments: #<GlobalID:0x00000008771f20 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
177
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] [36m Disk Storage (0.3ms) [0m[34mDownloaded file from key: KcEJa9B69qLYhj35pgHb2Cd9[0m
|
|
178
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] Skipping image analysis because the mini_magick gem isn't installed
|
|
179
|
+
[1m[36mActiveStorage::Attachment Load (0.4ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
180
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
181
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] [1m[35m (1.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
182
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] [1m[36mActiveStorage::Blob Update (1.0ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
183
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] [1m[35m (1.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
184
|
+
[1m[36mActiveStorage::Blob Load (0.4ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
185
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.3ms)
|
|
186
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [db4e7775-1f90-4174-aef1-10a65a6c43d0] Performed ActiveStorage::AnalyzeJob (Job ID: db4e7775-1f90-4174-aef1-10a65a6c43d0) from Async(default) in 49.12ms
|
|
187
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (1.1ms)
|
|
188
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
189
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
190
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
191
|
+
[1m[36mPost Load (0.4ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
192
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_association.html.haml (6.0ms)
|
|
193
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_association.html.haml (1.0ms)
|
|
194
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.0ms)
|
|
195
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (18.7ms)
|
|
196
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (1.4ms)
|
|
197
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (4.4ms)
|
|
198
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (62.9ms)
|
|
199
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.4ms)
|
|
200
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
201
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.5ms)
|
|
202
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (1.1ms)
|
|
203
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
|
|
204
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
205
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
206
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
207
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
208
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (19.8ms)
|
|
209
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.4ms)
|
|
210
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
211
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.4ms)
|
|
212
|
+
Completed 200 OK in 151ms (Views: 118.8ms | ActiveRecord: 3.6ms)
|
|
213
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
214
|
+
Started DELETE "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2019-03-31 11:47:26 +0200
|
|
215
|
+
Processing by Cmor::System::Backend::ActiveStorage::AttachmentsController#destroy as HTML
|
|
216
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
217
|
+
[1m[36mActiveStorage::Attachment Load (0.2ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
218
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
219
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
220
|
+
[1m[36mActiveStorage::Attachment Destroy (0.4ms)[0m [1m[31mDELETE FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ?[0m [["id", 1]]
|
|
221
|
+
[1m[36mPost Load (0.3ms)[0m [1m[34mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
222
|
+
[1m[36mPost Update (0.4ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:26.316106"], ["id", 1]]
|
|
223
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
224
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/attachments
|
|
225
|
+
Completed 302 Found in 92ms (ActiveRecord: 1.8ms)
|
|
226
|
+
Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2019-03-31 11:47:26 +0200
|
|
227
|
+
Processing by Cmor::System::Backend::ActiveStorage::AttachmentsController#index as HTML
|
|
228
|
+
Parameters: {"locale"=>"de"}
|
|
229
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
|
|
230
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
231
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.2ms)
|
|
232
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/active_storage/attachments/_index_table.html.haml (0.5ms)
|
|
233
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.2ms)
|
|
234
|
+
[1m[36mActiveStorage::Attachment Load (0.4ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments"[0m
|
|
235
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (4.7ms)
|
|
236
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
|
|
237
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.2ms)
|
|
238
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (12.6ms)
|
|
239
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
|
|
240
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
241
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.3ms)
|
|
242
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
243
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.4ms)
|
|
244
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
245
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
246
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
247
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
248
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (13.0ms)
|
|
249
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.3ms)
|
|
250
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
251
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
252
|
+
Completed 200 OK in 50ms (Views: 44.5ms | ActiveRecord: 2.2ms)
|
|
253
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
254
|
+
[1m[35m (1.3ms)[0m [1m[31mrollback transaction[0m
|
|
255
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
256
|
+
[36m Disk Storage (1.7ms) [0m[32mUploaded file to key: sf7hbKZrqdMSC62Dfkc8rwKe (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
257
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
258
|
+
[1m[36mActiveStorage::Blob Create (2.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "sf7hbKZrqdMSC62Dfkc8rwKe"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:26.500688"]]
|
|
259
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
260
|
+
[36m Disk Storage (6.2ms) [0m[32mUploaded file to key: uQtnL9wfUCYQyrfXaqJ3d9gq (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
261
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
262
|
+
[1m[36mActiveStorage::Blob Create (1.1ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "uQtnL9wfUCYQyrfXaqJ3d9gq"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:26.526088"]]
|
|
263
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
264
|
+
[36m Disk Storage (18.1ms) [0m[32mUploaded file to key: YxoLt4RgE7WkTehRGTPUeXZX (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
265
|
+
[1m[35m (0.7ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
266
|
+
[1m[36mActiveStorage::Blob Create (0.5ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "YxoLt4RgE7WkTehRGTPUeXZX"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:26.565541"]]
|
|
267
|
+
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
268
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2019-03-31 11:47:26 +0200
|
|
269
|
+
Processing by Cmor::System::Backend::ActiveStorage::BlobsController#index as HTML
|
|
270
|
+
Parameters: {"locale"=>"de"}
|
|
271
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
272
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.3ms)
|
|
273
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/active_storage/blobs/_index_table.html.haml (18.9ms)
|
|
274
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (2.0ms)
|
|
275
|
+
[1m[36mActiveStorage::Blob Load (0.4ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
276
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
277
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
278
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
279
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.3ms)
|
|
280
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
281
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
282
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.3ms)
|
|
283
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
284
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
285
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
286
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
287
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.8ms)
|
|
288
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (130.6ms)
|
|
289
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (2.2ms)
|
|
290
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.4ms)
|
|
291
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (247.8ms)
|
|
292
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
293
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
294
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.3ms)
|
|
295
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (1.5ms)
|
|
296
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.5ms)
|
|
297
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
298
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
299
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
300
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
301
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (17.7ms)
|
|
302
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.4ms)
|
|
303
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
304
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (4.0ms)
|
|
305
|
+
Completed 200 OK in 371ms (Views: 348.4ms | ActiveRecord: 1.5ms)
|
|
306
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
307
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
308
|
+
[36m Disk Storage (2.3ms) [0m[32mUploaded file to key: GUq4hFQeJZCBJXy5AkoxL5Pr (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
309
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
310
|
+
[1m[36mActiveStorage::Blob Create (2.0ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "GUq4hFQeJZCBJXy5AkoxL5Pr"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:27.010053"]]
|
|
311
|
+
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
312
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2019-03-31 11:47:27 +0200
|
|
313
|
+
Processing by Cmor::System::Backend::ActiveStorage::BlobsController#show as HTML
|
|
314
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
315
|
+
[1m[36mActiveStorage::Blob Load (0.7ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
316
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
317
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.8ms)
|
|
318
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (4.0ms)
|
|
319
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.8ms)
|
|
320
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.6ms)
|
|
321
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.7ms)
|
|
322
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
323
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
324
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
325
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.4ms)
|
|
326
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.9ms)
|
|
327
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (43.9ms)
|
|
328
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.9ms)
|
|
329
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (8.5ms)
|
|
330
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (155.5ms)
|
|
331
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.3ms)
|
|
332
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
333
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.4ms)
|
|
334
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
|
|
335
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.3ms)
|
|
336
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
337
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
338
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
339
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
340
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (26.5ms)
|
|
341
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.3ms)
|
|
342
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
343
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
344
|
+
Completed 200 OK in 276ms (Views: 233.0ms | ActiveRecord: 2.4ms)
|
|
345
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
346
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
347
|
+
[36m Disk Storage (1.7ms) [0m[32mUploaded file to key: aM57uKLLDGVnFcK91NdWo4A6 (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
348
|
+
[1m[35m (3.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
349
|
+
[1m[36mActiveStorage::Blob Create (1.5ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "aM57uKLLDGVnFcK91NdWo4A6"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:27.356169"]]
|
|
350
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
351
|
+
Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2019-03-31 11:47:27 +0200
|
|
352
|
+
Processing by Cmor::System::Backend::ActiveStorage::BlobsController#show as HTML
|
|
353
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
354
|
+
[1m[36mActiveStorage::Blob Load (0.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
355
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
356
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
357
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (14.0ms)
|
|
358
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
359
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
360
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
361
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.2ms)
|
|
362
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
363
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
364
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
365
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
366
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (26.0ms)
|
|
367
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (1.2ms)
|
|
368
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (3.6ms)
|
|
369
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (59.9ms)
|
|
370
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.3ms)
|
|
371
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
372
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (1.1ms)
|
|
373
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
|
|
374
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
375
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
376
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
377
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
378
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
379
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (20.3ms)
|
|
380
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.3ms)
|
|
381
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
382
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.8ms)
|
|
383
|
+
Completed 200 OK in 127ms (Views: 120.8ms | ActiveRecord: 1.6ms)
|
|
384
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
385
|
+
Started DELETE "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2019-03-31 11:47:27 +0200
|
|
386
|
+
Processing by Cmor::System::Backend::ActiveStorage::BlobsController#destroy as HTML
|
|
387
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
388
|
+
[1m[36mActiveStorage::Blob Load (1.3ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
389
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
390
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
391
|
+
[1m[36mActiveStorage::Attachment Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "active_storage_attachments" WHERE "active_storage_attachments"."blob_id" = ? LIMIT ?[0m [["blob_id", 1], ["LIMIT", 1]]
|
|
392
|
+
[1m[36mActiveStorage::Blob Destroy (0.3ms)[0m [1m[31mDELETE FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ?[0m [["id", 1]]
|
|
393
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
394
|
+
[1m[36mActiveStorage::Attachment Load (0.8ms)[0m [1m[34mSELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = ? AND "active_storage_attachments"."record_type" = ? AND "active_storage_attachments"."name" = ? LIMIT ?[0m [["record_id", 1], ["record_type", "ActiveStorage::Blob"], ["name", "preview_image"], ["LIMIT", 1]]
|
|
395
|
+
Redirected to http://www.example.com/de/backend/system/active_storage/blobs
|
|
396
|
+
Completed 302 Found in 96ms (ActiveRecord: 3.4ms)
|
|
397
|
+
Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2019-03-31 11:47:27 +0200
|
|
398
|
+
Processing by Cmor::System::Backend::ActiveStorage::BlobsController#index as HTML
|
|
399
|
+
Parameters: {"locale"=>"de"}
|
|
400
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
|
|
401
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
402
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.2ms)
|
|
403
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/active_storage/blobs/_index_table.html.haml (2.7ms)
|
|
404
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.3ms)
|
|
405
|
+
[1m[36mActiveStorage::Blob Load (0.2ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs"[0m
|
|
406
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (8.9ms)
|
|
407
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
|
|
408
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
|
|
409
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (22.3ms)
|
|
410
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
411
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
412
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (1.7ms)
|
|
413
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.6ms)
|
|
414
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
|
|
415
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
416
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
417
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
418
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
419
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (15.8ms)
|
|
420
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.2ms)
|
|
421
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
422
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (1.2ms)
|
|
423
|
+
Completed 200 OK in 72ms (Views: 64.0ms | ActiveRecord: 1.4ms)
|
|
424
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
425
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
426
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
427
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
428
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (1.1ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:27.803927"], ["created_at", "2019-03-31 09:47:27.804268"], ["updated_at", "2019-03-31 09:47:27.804268"]]
|
|
429
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
430
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
431
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (3.0ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:27.814610"], ["created_at", "2019-03-31 09:47:27.814960"], ["updated_at", "2019-03-31 09:47:27.814960"]]
|
|
432
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
433
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
434
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.5ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:27.826993"], ["created_at", "2019-03-31 09:47:27.827270"], ["updated_at", "2019-03-31 09:47:27.827270"]]
|
|
435
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
436
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2019-03-31 11:47:27 +0200
|
|
437
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#index as HTML
|
|
438
|
+
Parameters: {"locale"=>"de"}
|
|
439
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
440
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
|
|
441
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (5.5ms)
|
|
442
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_index_table_actions.html.haml (17.2ms)
|
|
443
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.5ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
444
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
445
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
446
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
447
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
448
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
449
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
450
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
451
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
452
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
453
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
454
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
455
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
456
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
457
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
458
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
459
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.2ms)
|
|
460
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
461
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
462
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
463
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
464
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
465
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
466
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.7ms)
|
|
467
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
468
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
469
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
470
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
471
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
472
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
473
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.6ms)
|
|
474
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
475
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
476
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
477
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
478
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
479
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
480
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (79.0ms)
|
|
481
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
|
|
482
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.9ms)
|
|
483
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (192.7ms)
|
|
484
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
485
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
486
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (1.1ms)
|
|
487
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.6ms)
|
|
488
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
489
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
490
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
491
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
492
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
493
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (11.7ms)
|
|
494
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.1ms)
|
|
495
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
496
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
497
|
+
Completed 200 OK in 284ms (Views: 262.7ms | ActiveRecord: 1.3ms)
|
|
498
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
499
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
500
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/new" for 127.0.0.1 at 2019-03-31 11:47:28 +0200
|
|
501
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#new as HTML
|
|
502
|
+
Parameters: {"locale"=>"de"}
|
|
503
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application
|
|
504
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (6.5ms)
|
|
505
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form.html.haml (82.7ms)
|
|
506
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (5.1ms)
|
|
507
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_new_actions.html.haml (5.5ms)
|
|
508
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application (492.9ms)
|
|
509
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
510
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
511
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.3ms)
|
|
512
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.7ms)
|
|
513
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
|
|
514
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
515
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
516
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
517
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
518
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (9.2ms)
|
|
519
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.1ms)
|
|
520
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
521
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
522
|
+
Completed 200 OK in 581ms (Views: 526.6ms | ActiveRecord: 1.1ms)
|
|
523
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
524
|
+
Started POST "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2019-03-31 11:47:28 +0200
|
|
525
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#create as HTML
|
|
526
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"", "last_error"=>"", "run_at(3i)"=>"31", "run_at(2i)"=>"3", "run_at(1i)"=>"2019", "run_at(4i)"=>"09", "run_at(5i)"=>"47", "locked_at(3i)"=>"31", "locked_at(2i)"=>"3", "locked_at(1i)"=>"2019", "locked_at(4i)"=>"09", "locked_at(5i)"=>"47", "failed_at(3i)"=>"31", "failed_at(2i)"=>"3", "failed_at(1i)"=>"2019", "failed_at(4i)"=>"09", "failed_at(5i)"=>"47", "locked_by"=>"", "queue"=>""}, "commit"=>"Hintergrundjob erstellen", "locale"=>"de"}
|
|
527
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
528
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
529
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (1.0ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "last_error", "run_at", "locked_at", "failed_at", "locked_by", "queue", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["handler", ""], ["last_error", ""], ["run_at", "2019-03-31 09:47:00"], ["locked_at", "2019-03-31 09:47:00"], ["failed_at", "2019-03-31 09:47:00"], ["locked_by", ""], ["queue", ""], ["created_at", "2019-03-31 09:47:28.797019"], ["updated_at", "2019-03-31 09:47:28.797019"]]
|
|
530
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
531
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
532
|
+
Completed 302 Found in 98ms (ActiveRecord: 1.6ms)
|
|
533
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:28 +0200
|
|
534
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#show as HTML
|
|
535
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
536
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (1.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
537
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
|
|
538
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
539
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.4ms)
|
|
540
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (1.0ms)
|
|
541
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
542
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
543
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
544
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
545
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
546
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.9ms)
|
|
547
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
548
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
549
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
550
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
551
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.1ms)
|
|
552
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
553
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (21.7ms)
|
|
554
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.2ms)
|
|
555
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml (14.6ms)
|
|
556
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (100.7ms)
|
|
557
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
558
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
559
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.3ms)
|
|
560
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.6ms)
|
|
561
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.3ms)
|
|
562
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
563
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
564
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
565
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
566
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (11.7ms)
|
|
567
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.1ms)
|
|
568
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
569
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
|
|
570
|
+
Completed 200 OK in 159ms (Views: 134.1ms | ActiveRecord: 2.2ms)
|
|
571
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
572
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.4ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY "delayed_jobs"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
573
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
574
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
575
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
576
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.8ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:29.077678"], ["created_at", "2019-03-31 09:47:29.077794"], ["updated_at", "2019-03-31 09:47:29.077794"]]
|
|
577
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
578
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:29 +0200
|
|
579
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#show as HTML
|
|
580
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
581
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
582
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
583
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.5ms)
|
|
584
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
|
|
585
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
586
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
587
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
588
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
589
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
590
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
|
|
591
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
592
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
593
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.0ms)
|
|
594
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
595
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.4ms)
|
|
596
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
597
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (17.7ms)
|
|
598
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.7ms)
|
|
599
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml (10.0ms)
|
|
600
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (48.9ms)
|
|
601
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.4ms)
|
|
602
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
603
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (1.2ms)
|
|
604
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (2.1ms)
|
|
605
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
|
|
606
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
607
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
608
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
609
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
610
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (15.2ms)
|
|
611
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.3ms)
|
|
612
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
613
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.4ms)
|
|
614
|
+
Completed 200 OK in 104ms (Views: 99.0ms | ActiveRecord: 1.4ms)
|
|
615
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
|
616
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
617
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
618
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.7ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:29.231613"], ["created_at", "2019-03-31 09:47:29.231910"], ["updated_at", "2019-03-31 09:47:29.231910"]]
|
|
619
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
620
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1/edit" for 127.0.0.1 at 2019-03-31 11:47:29 +0200
|
|
621
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#edit as HTML
|
|
622
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
623
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
624
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application
|
|
625
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (0.6ms)
|
|
626
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form.html.haml (158.0ms)
|
|
627
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (3.1ms)
|
|
628
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_edit_actions.html.haml (28.8ms)
|
|
629
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application (273.1ms)
|
|
630
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (1.0ms)
|
|
631
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
632
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.4ms)
|
|
633
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (1.8ms)
|
|
634
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
|
|
635
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
636
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
637
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
638
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
639
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (15.7ms)
|
|
640
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.4ms)
|
|
641
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
642
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.4ms)
|
|
643
|
+
Completed 200 OK in 381ms (Views: 321.9ms | ActiveRecord: 1.2ms)
|
|
644
|
+
Started PATCH "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:29 +0200
|
|
645
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#update as HTML
|
|
646
|
+
Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"handler", "last_error"=>"", "run_at(3i)"=>"31", "run_at(2i)"=>"3", "run_at(1i)"=>"2019", "run_at(4i)"=>"09", "run_at(5i)"=>"47", "locked_at(3i)"=>"31", "locked_at(2i)"=>"3", "locked_at(1i)"=>"2019", "locked_at(4i)"=>"09", "locked_at(5i)"=>"47", "failed_at(3i)"=>"31", "failed_at(2i)"=>"3", "failed_at(1i)"=>"2019", "failed_at(4i)"=>"09", "failed_at(5i)"=>"47", "locked_by"=>"", "queue"=>"different_queue"}, "commit"=>"Hintergrundjob aktualisieren", "locale"=>"de", "id"=>"1"}
|
|
647
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
648
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
649
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
650
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Update (0.6ms)[0m [1m[33mUPDATE "delayed_jobs" SET "last_error" = ?, "locked_by" = ?, "queue" = ?, "run_at" = ?, "locked_at" = ?, "failed_at" = ?, "updated_at" = ? WHERE "delayed_jobs"."id" = ?[0m [["last_error", ""], ["locked_by", ""], ["queue", "different_queue"], ["run_at", "2019-03-31 09:47:00"], ["locked_at", "2019-03-31 09:47:00"], ["failed_at", "2019-03-31 09:47:00"], ["updated_at", "2019-03-31 09:47:29.731074"], ["id", 1]]
|
|
651
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
652
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
|
|
653
|
+
Completed 302 Found in 99ms (ActiveRecord: 1.6ms)
|
|
654
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:29 +0200
|
|
655
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#show as HTML
|
|
656
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
657
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (1.0ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
658
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
|
|
659
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
660
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
|
|
661
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.8ms)
|
|
662
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
663
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
664
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
665
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
666
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.0ms)
|
|
667
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
668
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
669
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.4ms)
|
|
670
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
671
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.0ms)
|
|
672
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.7ms)
|
|
673
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
|
|
674
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (24.4ms)
|
|
675
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
|
|
676
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml (4.2ms)
|
|
677
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (35.9ms)
|
|
678
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
|
|
679
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
680
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.5ms)
|
|
681
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
|
|
682
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (1.1ms)
|
|
683
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
684
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
685
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
686
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
687
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (14.2ms)
|
|
688
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.2ms)
|
|
689
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
690
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
691
|
+
Completed 200 OK in 82ms (Views: 75.7ms | ActiveRecord: 2.3ms)
|
|
692
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
693
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
694
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
695
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
696
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (1.5ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:29.938028"], ["created_at", "2019-03-31 09:47:29.938214"], ["updated_at", "2019-03-31 09:47:29.938214"]]
|
|
697
|
+
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
698
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:29 +0200
|
|
699
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#show as HTML
|
|
700
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
701
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
702
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
|
|
703
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.4ms)
|
|
704
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.8ms)
|
|
705
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
|
|
706
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
|
|
707
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
708
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
709
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.8ms)
|
|
710
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (7.4ms)
|
|
711
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
712
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
|
|
713
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
714
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
|
|
715
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.0ms)
|
|
716
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.9ms)
|
|
717
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_resource_table.html.haml (47.9ms)
|
|
718
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.3ms)
|
|
719
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml (8.0ms)
|
|
720
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (65.6ms)
|
|
721
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.3ms)
|
|
722
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
723
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (0.7ms)
|
|
724
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.9ms)
|
|
725
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
|
|
726
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
727
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
728
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
729
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
730
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (24.8ms)
|
|
731
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.3ms)
|
|
732
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
733
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
734
|
+
Completed 200 OK in 139ms (Views: 131.0ms | ActiveRecord: 2.0ms)
|
|
735
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
736
|
+
Started DELETE "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2019-03-31 11:47:30 +0200
|
|
737
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#destroy as HTML
|
|
738
|
+
Parameters: {"locale"=>"de", "id"=>"1"}
|
|
739
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.7ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
740
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
741
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
742
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Destroy (2.4ms)[0m [1m[31mDELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ?[0m [["id", 1]]
|
|
743
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
744
|
+
Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs
|
|
745
|
+
Completed 302 Found in 33ms (ActiveRecord: 3.4ms)
|
|
746
|
+
Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2019-03-31 11:47:30 +0200
|
|
747
|
+
Processing by Cmor::System::Backend::DelayedBackendActiveRecordJobsController#index as HTML
|
|
748
|
+
Parameters: {"locale"=>"de"}
|
|
749
|
+
[LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
|
|
750
|
+
Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
|
|
751
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.2ms)
|
|
752
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (0.7ms)
|
|
753
|
+
Rendered /home/vagrant/rails/cmor/cmor/cmor_system_backend/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_index_table_actions.html.haml (0.2ms)
|
|
754
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.3ms)[0m [1m[34mSELECT "delayed_jobs".* FROM "delayed_jobs"[0m
|
|
755
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.16.pre/app/views/rao/component/_collection_table.html.haml (6.3ms)
|
|
756
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
|
|
757
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (3.5ms)
|
|
758
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (20.0ms)
|
|
759
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
|
|
760
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
761
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/_navbar.html.haml (2.1ms)
|
|
762
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/breadcrumbs/_render.html.haml (0.7ms)
|
|
763
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.3ms)
|
|
764
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
765
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_blobs"[0m
|
|
766
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "active_storage_attachments"[0m
|
|
767
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :resource_controllers.
|
|
768
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application/sidebars/_engine.html.haml (18.3ms)
|
|
769
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/offcanvas_view_helper/_offcanvas.html.erb (0.2ms)
|
|
770
|
+
Administrador: The namespace Cmor::System::Backend either does not define a Configuration class or the class Cmor::System::Backend::Configuration does not respond_to :sidebar_controllers.
|
|
771
|
+
Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.6.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
|
|
772
|
+
Completed 200 OK in 77ms (Views: 68.4ms | ActiveRecord: 1.9ms)
|
|
773
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "delayed_jobs"[0m
|
|
774
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
775
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
776
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
777
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
778
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
779
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
780
|
+
[36m Disk Storage (1.4ms) [0m[32mUploaded file to key: kV6GEcNwn15FWgRD5NnFFmBg (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
781
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
782
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
783
|
+
[36m Disk Storage (0.9ms) [0m[32mUploaded file to key: ap2Z5QnZtfgLPT8FVW3ev2hE (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
784
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
785
|
+
[1m[36mPost Create (0.7ms)[0m [1m[32mINSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["title", "MyString"], ["created_at", "2019-03-31 09:47:30.389503"], ["updated_at", "2019-03-31 09:47:30.389503"]]
|
|
786
|
+
[1m[36mActiveStorage::Blob Create (0.6ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "ap2Z5QnZtfgLPT8FVW3ev2hE"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:30.393264"]]
|
|
787
|
+
[1m[36mActiveStorage::Attachment Create (1.0ms)[0m [1m[32mINSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-03-31 09:47:30.398743"]]
|
|
788
|
+
[1m[36mPost Update (1.6ms)[0m [1m[33mUPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ?[0m [["updated_at", "2019-03-31 09:47:30.414134"], ["id", 1]]
|
|
789
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
790
|
+
[ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 75d8c37a-f26f-484e-987f-420ea0301a52) to Async(default) with arguments: #<GlobalID:0x00000009fe5480 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
791
|
+
[1m[36mActiveStorage::Blob Load (3.8ms)[0m [1m[34mSELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
|
792
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] Performing ActiveStorage::AnalyzeJob (Job ID: 75d8c37a-f26f-484e-987f-420ea0301a52) from Async(default) with arguments: #<GlobalID:0x0000000918eb48 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
|
|
793
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
794
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
795
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
796
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
797
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
798
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
799
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] [36m Disk Storage (290.8ms) [0m[34mDownloaded file from key: ap2Z5QnZtfgLPT8FVW3ev2hE[0m
|
|
800
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] Skipping image analysis because the mini_magick gem isn't installed
|
|
801
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] [1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
802
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] [1m[36mActiveStorage::Blob Update (0.4ms)[0m [1m[33mUPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ?[0m [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
|
|
803
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
804
|
+
[ActiveJob] [ActiveStorage::AnalyzeJob] [75d8c37a-f26f-484e-987f-420ea0301a52] Performed ActiveStorage::AnalyzeJob (Job ID: 75d8c37a-f26f-484e-987f-420ea0301a52) from Async(default) in 338.39ms
|
|
805
|
+
[36m Disk Storage (18.6ms) [0m[32mUploaded file to key: vDeEMqEomB3tB5ktq4FaH67d (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
806
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
807
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
808
|
+
[36m Disk Storage (2.2ms) [0m[32mUploaded file to key: CFSHNUWFo361eM5eFsjjNSji (checksum: LRgZFfo35M6x3xVHGOISeQ==)[0m
|
|
809
|
+
[1m[35m (1.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
810
|
+
[1m[36mActiveStorage::Blob Create (0.5ms)[0m [1m[32mINSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["key", "CFSHNUWFo361eM5eFsjjNSji"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2019-03-31 09:47:30.816625"]]
|
|
811
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
812
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
813
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
814
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
815
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
816
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
817
|
+
[1m[35m (10.3ms)[0m [1m[36mbegin transaction[0m
|
|
818
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
819
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
820
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
821
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Create (0.4ms)[0m [1m[32mINSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["handler", "handler"], ["run_at", "2019-03-31 09:47:30.964234"], ["created_at", "2019-03-31 09:47:30.964377"], ["updated_at", "2019-03-31 09:47:30.964377"]]
|
|
822
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
823
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
824
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
825
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
826
|
+
[1m[35m (1.3ms)[0m [1m[36mbegin transaction[0m
|
|
827
|
+
[1m[35m (1.2ms)[0m [1m[31mrollback transaction[0m
|
|
828
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
829
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
830
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
831
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
832
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
833
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
834
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
|
835
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
836
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
837
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
838
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
839
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
840
|
+
[1m[35m (0.6ms)[0m [1m[36mbegin transaction[0m
|
|
841
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
842
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
843
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
844
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
845
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
846
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
847
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
848
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
849
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
850
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
851
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
852
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
853
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
854
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
855
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
856
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
857
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
858
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
859
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
860
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
861
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
862
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
863
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
864
|
+
[1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
|
|
865
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
866
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
867
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
868
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
869
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
870
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
871
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
872
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
873
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
874
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
875
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
876
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
877
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
878
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
879
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
880
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
881
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
882
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
883
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
|
884
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
885
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
886
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
887
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
888
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
889
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
890
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
891
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
892
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
893
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
894
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
895
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
896
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
897
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
898
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
899
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
900
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
901
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
902
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
903
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
904
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
905
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
906
|
+
[1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
|
|
907
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
908
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
909
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
910
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
911
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
912
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
913
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
914
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
915
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
916
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
917
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
918
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
919
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
920
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
921
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
922
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
923
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
924
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
925
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
926
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
927
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
928
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
929
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
930
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
931
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
932
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
933
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
934
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
935
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
936
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
937
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
938
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
939
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
940
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
941
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
942
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
943
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
944
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
945
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
946
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
947
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
948
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
949
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
950
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
951
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|