cmor_system 0.0.44.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.
Files changed (557) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +34 -0
  4. data/Rakefile +19 -0
  5. data/app/assets/config/cmor_system_manifest.js +2 -0
  6. data/app/assets/javascripts/cmor/system/application.js +13 -0
  7. data/app/assets/javascripts/cmor/system/application/keep.js +0 -0
  8. data/app/assets/javascripts/cmor_system.js +1 -0
  9. data/app/assets/stylesheets/cmor/system/application.css +4 -0
  10. data/app/assets/stylesheets/cmor/system/application/keep.css +0 -0
  11. data/app/assets/stylesheets/cmor_system.css +3 -0
  12. data/app/controllers/cmor/system/active_storage/attachments_controller.rb +29 -0
  13. data/app/controllers/cmor/system/active_storage/blobs_controller.rb +29 -0
  14. data/app/controllers/cmor/system/changelogs_controller.rb +21 -0
  15. data/app/controllers/cmor/system/delayed_backend_active_record_jobs_controller.rb +19 -0
  16. data/app/controllers/cmor/system/home_controller.rb +6 -0
  17. data/app/models/cmor/system/changelog.rb +161 -0
  18. data/app/views/cmor/system/active_storage/attachments/_index_table.html.haml +7 -0
  19. data/app/views/cmor/system/active_storage/blobs/_index_table.html.haml +15 -0
  20. data/app/views/cmor/system/changelogs/_after_show_table.html.haml +1 -0
  21. data/app/views/cmor/system/changelogs/_index_table.html.haml +9 -0
  22. data/app/views/cmor/system/changelogs/_show_table.html.haml +7 -0
  23. data/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml +16 -0
  24. data/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml +12 -0
  25. data/config/initializers/assets.rb +2 -0
  26. data/config/initializers/cmor.rb +3 -0
  27. data/config/locales/de.yml +59 -0
  28. data/config/locales/en.yml +48 -0
  29. data/config/routes.rb +10 -0
  30. data/lib/cmor/system.rb +10 -0
  31. data/lib/cmor/system/configuration.rb +25 -0
  32. data/lib/cmor/system/engine.rb +7 -0
  33. data/lib/cmor/system/version.rb +7 -0
  34. data/lib/cmor_system.rb +4 -0
  35. data/lib/generators/cmor/system/install/install_generator.rb +30 -0
  36. data/lib/generators/cmor/system/install/templates/initializer.rb +41 -0
  37. data/lib/generators/cmor/system/install/templates/routes.source +4 -0
  38. data/spec/dummy/Rakefile +6 -0
  39. data/spec/dummy/app/assets/config/manifest.js +3 -0
  40. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  41. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  42. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  43. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  44. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  45. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  46. data/spec/dummy/app/controllers/backend_controller.rb +2 -0
  47. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  48. data/spec/dummy/app/jobs/application_job.rb +2 -0
  49. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  50. data/spec/dummy/app/models/application_record.rb +3 -0
  51. data/spec/dummy/app/models/post.rb +2 -0
  52. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  53. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  54. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  55. data/spec/dummy/bin/bundle +3 -0
  56. data/spec/dummy/bin/delayed_job +5 -0
  57. data/spec/dummy/bin/rails +4 -0
  58. data/spec/dummy/bin/rake +4 -0
  59. data/spec/dummy/bin/setup +36 -0
  60. data/spec/dummy/bin/update +31 -0
  61. data/spec/dummy/bin/yarn +11 -0
  62. data/spec/dummy/config.ru +5 -0
  63. data/spec/dummy/config/application.rb +34 -0
  64. data/spec/dummy/config/boot.rb +5 -0
  65. data/spec/dummy/config/cable.yml +10 -0
  66. data/spec/dummy/config/database.yml +25 -0
  67. data/spec/dummy/config/environment.rb +5 -0
  68. data/spec/dummy/config/environments/development.rb +61 -0
  69. data/spec/dummy/config/environments/production.rb +94 -0
  70. data/spec/dummy/config/environments/test.rb +46 -0
  71. data/spec/dummy/config/initializers/administador.rb +24 -0
  72. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  73. data/spec/dummy/config/initializers/assets.rb +14 -0
  74. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  75. data/spec/dummy/config/initializers/cmor_core_backend.rb +12 -0
  76. data/spec/dummy/config/initializers/cmor_system.rb +41 -0
  77. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  78. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  79. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  80. data/spec/dummy/config/initializers/i18n.rb +2 -0
  81. data/spec/dummy/config/initializers/inflections.rb +16 -0
  82. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  83. data/spec/dummy/config/initializers/route_translator.rb +3 -0
  84. data/spec/dummy/config/initializers/simple_form.rb +176 -0
  85. data/spec/dummy/config/initializers/simple_form_bootstrap.rb +440 -0
  86. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  87. data/spec/dummy/config/locales/en.yml +33 -0
  88. data/spec/dummy/config/locales/simple_form.en.yml +31 -0
  89. data/spec/dummy/config/puma.rb +34 -0
  90. data/spec/dummy/config/routes.rb +11 -0
  91. data/spec/dummy/config/spring.rb +6 -0
  92. data/spec/dummy/config/storage.yml +34 -0
  93. data/spec/dummy/db/development.sqlite3 +0 -0
  94. data/spec/dummy/db/migrate/20200128171009_create_delayed_jobs.rb +22 -0
  95. data/spec/dummy/db/migrate/20200128171022_create_active_storage_tables.active_storage.rb +27 -0
  96. data/spec/dummy/db/migrate/20200128171034_create_posts.rb +9 -0
  97. data/spec/dummy/db/schema.rb +57 -0
  98. data/spec/dummy/db/test.sqlite3 +0 -0
  99. data/spec/dummy/lib/templates/haml/scaffold/_form.html.haml +12 -0
  100. data/spec/dummy/log/development.log +128 -0
  101. data/spec/dummy/log/test.log +2225 -0
  102. data/spec/dummy/package.json +5 -0
  103. data/spec/dummy/public/404.html +67 -0
  104. data/spec/dummy/public/422.html +67 -0
  105. data/spec/dummy/public/500.html +66 -0
  106. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  107. data/spec/dummy/public/apple-touch-icon.png +0 -0
  108. data/spec/dummy/public/favicon.ico +0 -0
  109. data/spec/dummy/spec/factories/posts.rb +5 -0
  110. data/spec/dummy/spec/models/post_spec.rb +5 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5_i5Cu4DVWB6u5AzETTDl8QjlOOgMfrD6OzZZ0mlOQ.cache +3 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-6/-6dxSYe9e36D0EVILIP9LBEHr0lk2FPQkUQNs4SoxIw.cache +1 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-c/-cuKPPwHZkwFd6IgxQE8O3NIcz1BxcEtj8_Li4tO65A.cache +0 -0
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-m/-mQa7zqqtbdB7FYvF0_wmlh9kjiEKYO72Kqb29DyAVA.cache +1 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-q/-qT2H9URu2uQFbXrHjQZ1UWIy1JE3ysLaHOAuk-CFrU.cache +0 -0
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-v/-vqwyPj59JOSyS3Sk4xKZRkClOMbCiGw_38cBSeG68k.cache +1 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/02/02DabTMmAuZUB9q0bwGJUXBvgyXeYOm4vMjhg1YWMpY.cache +1 -0
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/02/02Ze8SHycSwbMZP9lyIsj5GESCYii_2CH4otWIRV7Tw.cache +1 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/04/04dUee9qaqng_NvyuuvCTIuenXkMc-xyNIj6ei_HIBQ.cache +3 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0C/0Crqhz_JZcPbgegzAwSurAtQASJ3lZ5Pb86vMaSQsrA.cache +0 -0
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0K/0KvSE3yWzJBqg9znmhBA_nxzkeOxLyg_g_2K5VcolEg.cache +2 -0
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0P/0PTGQhqiTGEzvLIpTyKmo9LDifeDEVlc15GlCVV3Va0.cache +1 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0V/0VFVJ-JhrAzykBRXIU470to_I4dPSdwlkqqk0Wdu9aw.cache +1 -0
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1R/1RHriwhRiLExhw_VQRJFTuc3lBCUzJSygGsaawFbldQ.cache +3 -0
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1T/1TIed_wRBc9-maFhym4h3LQy9nEhbVexrAH3pr_fiW8.cache +2 -0
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1Y/1Y6UM8haLzxwWDFiyIVjZCR8pPVtLupffkOLuj04P_4.cache +0 -0
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1l/1lH1cKFCkBhJPILUECkUqVAqA2Kv1punSFJJpCUAAds.cache +1 -0
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1y/1yiB5d4-uZNpUULiOIFVrk_B8miWAr7_Q1dG1erFVu8.cache +2 -0
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/23/23hSbI4TkxHE3c92vHvqj1G71WzFn6RMHTvoboYASRk.cache +1 -0
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/29/29rUZJRduNBoVpGHPYXKlYhbURJaxXCe4wWbadLbDag.cache +1 -0
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2P/2PHPPPMFi42XmUrvNieCmjNcgWroCXeTanmnQ-vT62g.cache +1 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2a/2a4UxJj5d3OF_6_R3QTT4Szqu_OB1NWJ9pn3bGAqJsk.cache +1 -0
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2b/2bx1L2-xt8rtV5Dg7tPula-e21bS_uE2oUusCkeLubc.cache +0 -0
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2h/2hAQyAN1-WEBSeywTp8gcwsl5OGy4w6AexGslYneQ9w.cache +1 -0
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2w/2wXTGFrI9NrZd7AiowbDEc2TpfjATaxz3xZJs3NsF_w.cache +3 -0
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2y/2yVloV81WMxl8ebvYzrPFoVPOotvJvZvvYFputC8Yqs.cache +1 -0
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/31/31cCXY8R-FnCCqJAD6hoe8VKPhWxNgGzCJKsRC45ymw.cache +2 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3O/3OpspJoEdog7RTfShUwv-qDtfHAUFZkmc7TQqlvKChk.cache +0 -0
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3s/3sgq41WxlfXUiNt3O_wUC4NYr9KeP-zfYN2f1Igm7Po.cache +0 -0
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3u/3uLIfdfI18Y3iE7LCMW1gzieVf9ext_nyINnWTKzF28.cache +0 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3u/3udCZ2gOuMWi6dbr-ZmMaA2cSgobuQwXzVa9p2HEx6o.cache +1 -0
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/48/48OU-puLjWtSeVmtcnX24CoUtBBbKJLf9nC3zB0T7u0.cache +1 -0
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4J/4JX7Guiz_225C5rtNnQ6UuwtVr9qc2sZGD-B1RL3Ql8.cache +2 -0
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4K/4Kao-IxQD15Wswhz66QRjODa424WitShVn-OOZ8Zll8.cache +2 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4K/4KzsstwBPR7ApHGkoqSVftp-Cye3_ES6I9Q_vzJ7SJo.cache +1 -0
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5K/5Kh5RevuIQpUVSDW-EilhDsPlutdytHspzHRGTC9IDU.cache +2 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5Y/5Yc7L6NFfY9iVJotsutQije5ztn1zyPwiAQugnuZTM0.cache +2 -0
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5u/5u1ELCUbEc7CF4FUsghC2d0Q_asRAc3V76aKdkYN1vs.cache +0 -0
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-3s_8cjOysSrylQXqa9RQAzi4hX54xtE_znNLDQa10.cache +3 -0
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/64/64WfrNuqkHsbPnNt6yIGke1q7OBs7K7HPTetoiQuot0.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6J/6JPJuvpZ59F-V0rTu8QMpyKP0ULh8itm455QsV4MhH0.cache +0 -0
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6K/6Kfk5m9bAGq0gRDTJ0Kclh-5DdQ_NcYEps0wD6tSChw.cache +1 -0
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6S/6SFuZlU_k5nLcXkznz858TLFtin4nStiV57c2j44fwk.cache +1 -0
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6S/6SQxDDkUlIM30LpReGj_1UgdXJMyZBddyceqm6eng_o.cache +1 -0
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6X/6XZ9aeVA69Nw9ZF8dz9aORRKHWLrU6HDymTu0S_-zCQ.cache +2 -0
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6X/6XlU_7qCWJ8Z0S6wGcO26gKhEj2Tjh6FZqs3I0MrrUw.cache +0 -0
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6g/6g6ojv_uQnOA-4q8WWr_-zHJ2b1sN77Hy2BZ0g_Gapc.cache +1 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7Q/7QCb_ld5iv9ET05-M8vSUDLc3to1KNcMzhMMl8Z6tUs.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7f/7fR29uVaSCOat8TioCpwdTmWe31Zy9B_8mveHVTupts.cache +0 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7n/7nW7ygcJhfx-HXDib7vV7mXBRzxm_R84hGUKQcJngjM.cache +0 -0
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qc-at4HoP97tgi7GiVj3uOeE-fVo5RA4OL6z5enQ-I.cache +1 -0
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8S/8SyJOAN9ggJTpzv1o4xptaFo7ML5oPVteO8y_ktIr80.cache +1 -0
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8q/8qugTVvjVCLSBEy9hXYs5ny7jzv55P8hi2SJYoOrDuc.cache +0 -0
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9-/9-CubmYcjo4tgi05cuORyOE_tUGjmkL-W-6675sL6-4.cache +0 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/96/96AKMQyOhgiRFPEftvCdr1QPeolPwnluN4iOduAeRI0.cache +1 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9N/9N9_9TWwcxG4H1WjAvkxn_l02Hvc-eyhxMvrAklpf-0.cache +0 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9Q/9Q8nyMrX6QNvFppy2RQTlT3kGuSWrqTm5bE9bjCasYE.cache +0 -0
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9l/9lff_vi5jwF4Xw6fzf4_YJ7j1MvVAVCxXrjlwyeO2-o.cache +1 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9m/9mH683ReMxS1s1La-OZOUk6XgEeCyjzpBNPv2VD3TjQ.cache +0 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A3/A3DwjfvhCLSUj6BizZ4XZu4kLpVFcOdR7WqrI7zivgg.cache +0 -0
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A3/A3r1s9ui6crk_F8tv1jihFHQILko-7yQMvAfbrpQ370.cache +2 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A4/A4RdQDS3Fr5sOVjp_c0u-zNsJMnXWEifE8YyTd2Zkug.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AM/AMmCzd0FPCP7ucqJXDVzTxISKuicH3nbG9zmnk0B8XI.cache +2 -0
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AS/AS25IquXQqrcT2uYB7M1YVr_FVc7zrmKs8Ned8OuuIQ.cache +1 -0
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AU/AUdQ_orcPYtVO_phLT0dCsS1fcvZm8BkrnaGYNgWF7Y.cache +1 -0
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ab/Ab11GDY_QKY0fvSS8xRb1pZcPeAxL3C3FyBZw0XusB8.cache +1 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ag/AgztiLKToosHoODuhp9haw-puyrSA40GH8__rSSAsZE.cache +0 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ar/Aredar3r6yXFxQOrrapXB81CBRWR596Zv-v1l_ZUHG8.cache +2 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/At/AtbpLF65IYMctIApvHZSYNppMU72buuO8Ua9D5bMPRk.cache +2 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ax/AxP5nvn4nM3_bBtoaeHKZtVZQSs1lo0lXmwVzDAyR44.cache +2 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B3/B3Gbbl3JRUH98pv8lS29fHiyhx2RE3VwAn5AWssNqxQ.cache +1 -0
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BL/BLDi2348Czk9CHuW5axnWHxW0rzYV_DcggviOB50KOY.cache +1 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BV/BVNwC4HIOJpZc_OqORY-G1RZbuhapHpQkZElIYSQFaI.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bi/BiN2Ha5hUOMTb50aSS144igMPB701e-AeXzEiuq4ibY.cache +3 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bu/Bu9Y96-ku0Ek5qGzDaPjJ0mFIw81Uk01jRAZGnnBb68.cache +3 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CI/CIMa7_5ZkYQ9L5JZ4oVtmYr6pvGgm6lVbfsGZmx0-5U.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CS/CSHd7CLupX52IYR78ou_LD84gPfpTRxFlZx6ilRUYFI.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C_/C_UFZBwAyeOC1Kg2KkKxvUSuN3iGETzBXx-iWxV3jRo.cache +1 -0
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cc/CcF40aGSsUTK5V5Ib_PlE-Puo-ItdYypzD4QedOq1F8.cache +1 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ck/Ckc20byuPOUrT0ES3Oldd5GC2FusE8-R_AuMMiE_VNs.cache +1 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D8/D8z79fqDZvJYYVt5JDzVKeXmbFLFDQmo1yT34YuCg_M.cache +1 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DW/DWwZ_AmLApnE0wo9pVtt0rLNbT1he1pMsTMvG4jlSoI.cache +0 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Db/Db9vbRcPbG0Gs2jAdsj6aXS4cNYX3RiO-mQjOlA5uEw.cache +1 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Db/DbCcoOIUA3VaRV9eVcyl6kXaieYt-deGqJvJ1Ii-JVY.cache +1 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dd/DdjmUhuPW7EX_IftXXE5N9KUoBTVv2B-7cQYVbqXAUI.cache +2 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dp/Dpc8SQj4bmOKokkdkZ7zsoFHJg_fiH54Bkw-Hy3D6F0.cache +0 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E4/E4a5H2939WmaPzdEBuWeyf1JMN9MSvTeCtM7g-GPhQs.cache +2 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJ3-kITbfjpL3lOwiKqfBvvkHom6-cq03EdOoY-0KQ0.cache +0 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJ9Doqnr3lMq0UkOEBCPTSxEOcmoT6NvVnJF7rE8XwQ.cache +3 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EJ/EJvWzkIygc8TCRwWL_o59Ph6f_4W7KSA2pZrNO6PFTo.cache +1 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Es/EszSDXt82n84XMTMEIBC_LBZCqiRigZg_DTXoBNVx8g.cache +1 -0
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F4/F4e_qu4WlKrexY5axbziYLQsQpM6Cqw2xuUU-t1HQpk.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNadC17Fjn31cNub608HO79L8TxoeE9gk1o_nTEZ4Oc.cache +1 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNyjcBZA6hdlZbpnzV0BR2OOFc65g4_q2mRH2BeXnbI.cache +1 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FQ/FQPLdti9vN-JiXx74Jh0DAJIcvCOKzhrxAnUj79HPmc.cache +1 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fg/FgyWYtvb6SjPjFfphgVNw-x35STu1R0XjMpe9XWKwIw.cache +1 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fn/FnI5FklwyFpEwbO090f2cNElxeN8PIGQ5OiqUUMYEOU.cache +1 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fy/FyVlXLnlaNMWRX5grjh0B42s00q-j01bmvuLbJqnGs4.cache +1 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/G4/G4i1rk0ZuIkhNeJ9mqG_xsofohoTMuIys6vJqPcCpnE.cache +0 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/GD/GDn4ZVU4zGHot9CXAIKRpAMBG5lnykcp8v36w3uoLrE.cache +2 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gf/Gfy6KzAW-SIViIck1N0aJ7T6G7xWHJkxWQdap_kXRtg.cache +0 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gm/GmkGW_aKzTsiHd7JndhKDLVrMtXFUkgKEnbfE_VWRq4.cache +1 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gr/GrOIoAD0J7i1nfhUHyQOnFHosQS9MobWHbrk8pKaRDw.cache +1 -0
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gt/Gt2Rt2JcJ_PIfiAJ8J-IOAMvI8S_znAkvc7RPYfkNaw.cache +0 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +3 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IF/IFPLTnmNTu94H0MYgMV1nLnPCyrxcuzgR7Q3lZF-qn8.cache +1 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IO/IOpwwMC49uuigpYQLioYRxnSE1GAc5BLxwLwuP4DO_I.cache +3 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I_/I_CkS0KkEgMvoRZsDtDhTAPFwqtMdFClBJRfLHxHzTI.cache +2 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/If/IfjuVHwDs3o1_4wuUYL8Q6C4G57uRvoah_vChE0pUco.cache +1 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ix/Ix3v63lfcA-5lZo39oABaUENSvGOCTbejnRvO3l-Gbs.cache +1 -0
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JF/JF0mWI4aUOZTtjNOusonuDdE1_fPrZy6so_hH7cQ6ak.cache +1 -0
  222. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ji/JiIb0aCoV_ddk9jRMSRoPr67SzAtk1THg76UjU7EbjM.cache +1 -0
  223. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jl/JlSmoe3olMGPiPWzkJFX1_xH2-EppNc1WuJJBiPG4eU.cache +1 -0
  224. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K0/K05IjH6-qmpyWYl5MEN-kbdRpXhu-FOv6WNRqFoDsZs.cache +1 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K5/K5pQS47JukM9TJrOPskmFKWMCS4vkK5m-aCi4mEbMYM.cache +0 -0
  226. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KBVIax4tuHVrfaZaaZU2tZprPbghtDLm1V7ce59tDz4.cache +1 -0
  227. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KE/KEj_SDYbV_vVLxmOHuu2FYmu7y866ZnvjMhBHbGLvFs.cache +1 -0
  228. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KK/KKCAgUk6-1aiTnylw_Gr-hAOC0-smzasGdttWdcIF9w.cache +0 -0
  229. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K_/K_6tsdcGKf50KtE8WwcJ9nnU4nBeniufkUNP67eFUJY.cache +1 -0
  230. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Kg/KgeauJT_kD8huHBMgxDyU0vtTB3R9_wQ3bNT4jDHaWM.cache +1 -0
  231. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ko/Ko0JYNtgI8OPDBxvT3zpCEAbF8RE5yoI4Co9IhQVYHY.cache +1 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LX/LXH86YOK0hMeLIdYeFyeeJs1dTbB-fkNtZcI7UdwXGw.cache +1 -0
  233. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lh/LhwDHh1f52RgY6ijoM2MA-UwC2-MqVEbXe4-sR5kftM.cache +0 -0
  234. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lj/Ljf_6cXAWRrbqPCOSKlSeemiKx7eTetiT2uLB0peRlU.cache +2 -0
  235. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lu/LuDp4Zgge37cH6dWN0ArAH8k-MstZzNguuN3UE5p4gk.cache +3 -0
  236. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ly/LyZi_6FUEuNOJDZBTgn9mRKm7ryjds9GEZxvkBplYXA.cache +0 -0
  237. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M-/M-Xc6A57vBhv9iYfX1MALqrKnuOzVwz9kH-YdUuUscw.cache +1 -0
  238. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MG/MGb4E7Cemjzxbwiqr9vnAnto597cwiqGSc4QwE8sYFE.cache +1 -0
  239. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MH/MHHOPPnBf3FMGdJWzyfarWOJK4hLHjvTUSrN-ObmX0M.cache +1 -0
  240. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MJ/MJpMSxwTPlgXPK2QAuNgeFK5HpN3PXY1lPG14HXkSx4.cache +1 -0
  241. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mm/Mmq5owhyzPOQJPe4e_-9PG-ZpnvZCtnjJewd5U5T20k.cache +3 -0
  242. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mn/MnxOH2wTr2ql_LY_cyaQeqdhMRWLBwoFq_sngaE-CEg.cache +1 -0
  243. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/N2/N20O8XTXqnylUGjGTjyccg-oSdyTn8pfvvvohG09CX0.cache +1 -0
  244. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NN/NNk6NE3QDLsYPDxmyKRykzF62tNRyhhSUAurZtVKdoQ.cache +2 -0
  245. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/O5/O5L6y8ok-vkhtGGRn3z7h_pgZ8yivzPnYSjgS_E3Kq4.cache +0 -0
  246. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ON/ON7MDlILe7OWn1krxW8g-KcNKdHJpqTTCVU9uIY3Pm0.cache +1 -0
  247. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTBjtEm36amBFx9-OAmOF3EWnr2-YQiZd6IUdKEgHko.cache +3 -0
  248. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ov/OvN-i6iA8MvqPyfz90O-eNsSEk6ZZTXz1NrfnZZiLsA.cache +2 -0
  249. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/P5/P5WvV2bMYda_P4gHeDDN1gy4w5uGocBYeno26tH90Ss.cache +0 -0
  250. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PB/PBd2daBdHfGbnIFTqvR3pz4IghMbymzBEj3enx5ONbQ.cache +0 -0
  251. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PI/PIM4Cq31T2-Vv6vbvXFkNtHJrfrIhYlnGJQ7iyTT3pQ.cache +0 -0
  252. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PJ/PJMEITmfVzw-Y0-0cyTgxKIyare8MWbInTyLBHb3YFw.cache +0 -0
  253. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PL/PLfEo435QLMF_0dbruNRpZGiQE7mRK70b8whfIJZnRc.cache +3 -0
  254. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PL/PLjoveEaKIdQjDN83NknY7PDhw4jc1AAm2X6TG80mhM.cache +0 -0
  255. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PO/POmj8dlVlzA34lZmYKCp9s37zbxnH5phfRZ2ZImo1ZM.cache +1 -0
  256. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PY/PY8MlEPGHFn5VBci09tK7yPjxtUiLLZe7_MMXff2oW8.cache +1 -0
  257. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ph/Phha7I9IMAXISDBC4moxCLf8WbZ04Sm91y-ZWX8-R6o.cache +0 -0
  258. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pp/PpyxEBP0WfIGl1x3lVDbNowf8hic0X8pybCIiPMHRlY.cache +3 -0
  259. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QF/QFn9vUraAba0IZE2UOZp2nYbwG8bADFaifsp_BGnATE.cache +0 -0
  260. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qg/QglMmarCF4QnVJ7ZoCAPwtAa4GiqS_cNOA2Zir60Yc4.cache +0 -0
  261. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qk/QkYUu9GUrVh4HOsZ9Y44Ia95eGnJRDrRlxwIgi7BHzU.cache +0 -0
  262. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qp/QpalW_Kul_wfgZh1VSM7ItMon8MGv_fKzSVIN5dreLo.cache +0 -0
  263. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RL/RLNiYb5vOkKRiqrrUH028pwxIZHSc3XVqu3GkZz_WGM.cache +2 -0
  264. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RO/ROYpxeB1C6xiJMdHK07FfuDIfQ3yunnqtEt9lkV7E8E.cache +0 -0
  265. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rb/RbzlGbmGJhvSiPr3l-Fu5Oth6tLKSmZk7AX8c5hqsvg.cache +1 -0
  266. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rq/RqHO9XMKK56g4Zn0qie4FNr_SVfkh8x-xg1BuAhRyms.cache +6 -0
  267. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ru/RukwwJ7Lmi0dwdc9ZNkgrC6pNXzXq651EPDxipa78aU.cache +2 -0
  268. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S5/S5IGTmTHG6HnlgQMrfczysncJUE5IP8kGRM0M8UqxPc.cache +1 -0
  269. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZL0ywvWKfWzuQulJe_aONBkF-dQkfuXUVVWxWnJbJo.cache +1 -0
  270. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZmy4G3WyzboCFNWFqKdlOyNf4msnegqNOnO7bvfuGM.cache +1 -0
  271. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S_/S_ZgDTMxLmuGZETorAqLOlGwUjrSS3guo4rMhj6YnKw.cache +1 -0
  272. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Si/SiRE3bqYCET97MJkwnglKhKk8lcZzNzL3UWNf6R5urs.cache +0 -0
  273. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sj/SjEcKZ6vuf6ylfkUa--akQA0ahhw2_zGABY1t2tH5_g.cache +3 -0
  274. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sj/Sjmh2uI5o-38CODETx5moVzPy2MXUDSJbbHoJCOwPqA.cache +1 -0
  275. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sl/SltCbntAE684RbklB2Tk4vlE6kVdmCiZhN7ijDIOh4s.cache +1 -0
  276. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Su/SuBuermsrsKuLY0UBpIY_vTAC1z6tBqkFL0KZElb3T4.cache +1 -0
  277. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Su/SuVHVGuM2KPNMMTae21_lbLrYsVHdJgSryrA2OLlsQk.cache +0 -0
  278. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/T-/T-vRWL6z1aVV7DWboJ8YZyH1Gf2j-KF3l3wAY4LaIgo.cache +0 -0
  279. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TO/TOUKkWugjfwjkmu4n9e1CM70iSq9Cx4kI4-AuU3V_yE.cache +2 -0
  280. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TV/TVsS3E15vDIjFHXmNbV2yXwTsD4ar-7dTFPxrXhe9qs.cache +1 -0
  281. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Te/TeGfSQhoa2ACOYPhMD6HndJtj46ln3A0yPhts2IyilQ.cache +1 -0
  282. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tg/TgramDhiGab63vQAtO09X8vvDog9pmImRV9vorroz7w.cache +1 -0
  283. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/U1/U1GxO7eSJhH2rO6oUFuOrXMGevStpfGdWfoklikSnvM.cache +1 -0
  284. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UJ/UJQzzpDcUu0_i8VFjWKSKnszk-FZXBidk4_MxQBY_UM.cache +2 -0
  285. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UT/UT8n0uUnaNi60DrOHMM0jKefbf48xzuBj0s8sjSRCRs.cache +1 -0
  286. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ua/UaJ4LkopmA4HN6g_OtKo3KTFNm_rpV1aVGHg1wmSHgI.cache +1 -0
  287. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ua/Uaj8rRUC-VagGWiKql1eX4TFWw9ErNBvd3OVIIWEN_M.cache +1 -0
  288. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ub/UbhUGqS4h6eCH56zcc8TSl3HH3E-sd3DGstMa0bWCLk.cache +3 -0
  289. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhSANpl7ayCugMDV64lEMetWxB-RHF52ppsC6quFPyw.cache +1 -0
  290. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhdgpKGJKqnjccQRM6NFfQ2DspAJfyy8RRp_5-MLP34.cache +0 -0
  291. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uh/UhytyGrpiFsa7ukPXc-LSg13rH7IS8aUpNROS7vpQtc.cache +1 -0
  292. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uk/UkLZU8MBWP20LyOpTuNsGrRdCTcoBtE_6VUPKfZXA2A.cache +1 -0
  293. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V9/V99EfSaCz3piQ9qb9vICLZ-gmlxEeqXIkLqm-bFZxcM.cache +1 -0
  294. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W7/W7qcMC4wDGqabV-9yK-RHbNSJ_afr0JtbAEJKUCpWzM.cache +0 -0
  295. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WC/WC5mOU3VtqHMi_9PmnqNsBc1s3kNuw3S3u6NkV5YIcA.cache +3 -0
  296. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WJ/WJVYXO_fhsF6jkyuCj7a4unVLTePIcWnLlXUwoXPGtQ.cache +2 -0
  297. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WR/WRqx9-ZAtHd88Kbm66hMV2C7F4SOeZGgf0Jb7mZ_bkM.cache +1 -0
  298. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wh/WhiTlo_kRkgCyzSTZkfMZu3oBnMOivSHdg9qRi9qLAc.cache +1 -0
  299. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wk/WkhyG7oAHtO_eC2JiEWsMKeoeUtRAgrh1I6WEoCGMko.cache +0 -0
  300. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wn/WnIdutzWyoWrukYleTKHY7TI4YmQ869iyEPv2y2F01w.cache +1 -0
  301. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wr/Wri4UoHrvzG0kRiXSvB4bIYW_SzDP9X4x3Qy5K-ElpY.cache +0 -0
  302. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsvUQ6g5vi4-7Y0DzsF6lKrS5GyQXfOHmCbSfAYkzic.cache +0 -0
  303. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XD/XDUlhz2uMGkXU1PeD6SYJxb3Tbl8FoNdr6bqJx6xAxo.cache +0 -0
  304. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XG/XGA6iVh9IinZZjLyCzO1RomvFDN-dWSUquFJ_FObTIU.cache +0 -0
  305. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xo/XokQGPJOtxrIzCBSKpUdJnJiZ3BYxYjBY6dwo1C84CE.cache +1 -0
  306. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xp/XpshzEB1CzWK6q8-_Fw27qzGD2zgpZRhe9vFc9du8mY.cache +1 -0
  307. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xq/XqkLuENMTUW2nzcPyJZyEuy_5F8K-ICotABR7RArwvA.cache +0 -0
  308. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xz/XzDOdqI_qdQ7aVkbMzL2sw2GY6RM2dxMXfM8-pcaFHo.cache +0 -0
  309. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y0/Y0XhFSd0l-AvJDATrWAz0qCBoqAjEXEs2WrQPF2oaao.cache +1 -0
  310. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YM/YMSkijO4OqF-va090LsCh_f3AaiBWZcHyXM4hqlhuhU.cache +1 -0
  311. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YW/YWei97rAlk5As02FKgRsUDayGivKC-2aFgaSwcgXwHw.cache +1 -0
  312. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/Yl-SzqjaIwyPYnb8cnGfD8Ej3qPO5YJLflMZju084Jg.cache +1 -0
  313. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/YlukUsyujAODdc0yapT61cXvvVIQ_M9YWUgpTpQTa_Y.cache +1 -0
  314. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yp/YpR5ql0CmWPYb7RdjDLYp-HOisXAKu4I9KvolOytlhM.cache +2 -0
  315. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z9/Z9YD3kJSdsORk_qhzt8yEic3wmIYtbll3IWWxzrPq_c.cache +0 -0
  316. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZP/ZPbS7YvaVoiPofGU7eyoINUxgyZJyBq2W4jmJXDs0g8.cache +1 -0
  317. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Za/ZaTA8ls3ubsRQfoArGvZQPNyAW_IurIDdFHQwvN3RzE.cache +1 -0
  318. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ze/ZeVwDGv8IU-XZB2kgh3tW3R5guwv8wqY-nHyVy4zijw.cache +0 -0
  319. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvJ3ssS60YvVm7uvqQ6M9yzxpH91VGwxdrgMiqzwt44.cache +4 -0
  320. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8QB2t_-fqGijyjFZrXJYq12HVuuOlESUQrkDi5vFHg.cache +1 -0
  321. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_E/_E0g95qavolysFM8rvrGjt0V6XJlAPm4GKFjL1hdaiU.cache +0 -0
  322. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_N/_NF1y7yWsAj3MqCUNImSZPYOTGOOfwHVR8CBDXEz2n8.cache +0 -0
  323. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_T/_TSnukkoKWW8VtUMnQD_ABk-Hmg5lf6Zrztp_KnOb6c.cache +1 -0
  324. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_V/_VvNdAqkk_M3hIqqQyldmE7uWXCqP1vYTesQKU95tYc.cache +1 -0
  325. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_j/_jWc_Bdt59CzVcmRnExHGBjAdWgGP4g9mvQFewFlwT4.cache +2 -0
  326. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_n/_ntSSL5pBuDCIAMwyIjmAfkrmx_pwfN_pianqvnNsRw.cache +35 -0
  327. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_o/_oUFNl23NJwwOszoVmYKvsgbk13q7i4lEI-67r2t9iE.cache +0 -0
  328. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a6/a6c2fElJyz52FG1bzR1lcV7uaAsWFsR7vgCx-9C3Auk.cache +0 -0
  329. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a9/a9AbcO7bHCvM_zzrZ7GY22eAdaWYE3P7D7NHlc_bqdQ.cache +1 -0
  330. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aW/aWQeAPz6dTOyZXx839NK0cxOoRNwiI7O-z_0lz2dcLE.cache +1 -0
  331. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aa/aaAUmeyp0O3BI5DPQlzx7JBYOCNa_MmOKyjvYm8ygwA.cache +0 -0
  332. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/af/afH0NERXsGZbhGZbnzZ2RSHPL0akjVVEvot7K42YMX0.cache +0 -0
  333. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ao/aoXyhfIRh2a02aX-5jhrBS1laWFe6m0N3wnqdicUcp8.cache +1 -0
  334. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/az/azPz0MjaMrptwfd2WrANe0mC8dv4x54NUTZ_RHwB2Fs.cache +3 -0
  335. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/b3/b3QTpEFTJ_PZU61euiKJDosQb3B7Hjoy-81QKxxc_UE.cache +1 -0
  336. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bA/bAr5Ll6uV1l3NlTjm_XrT6sEzCG79rhNs3fFnEJeLc0.cache +1 -0
  337. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bB/bBiBLvniLSn4IqAL2WHHgVa2R1HEddBiDIOlScha2DE.cache +1 -0
  338. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bDGI5ILX8WGxUO1ypLb8i4xJjgOSD9E3xnfe81K2dL0.cache +1 -0
  339. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bG/bGfLOnvumDGZXfcnUpD9eblIGg8zESjbxlYDOUbvvr8.cache +1 -0
  340. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bJ/bJjoQd7Q5h6ySZ59lUMbm1ebESimCxaxByrEE2Oi5VI.cache +1 -0
  341. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTVLI9FBW0mTALaS7SqXXzzoaeYjNaULZ0k3BJg3tqU.cache +1 -0
  342. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTtjJ8INAyvnSIMspWhd0Q5wpgwQes-LjEFz2_bTlBk.cache +0 -0
  343. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bW/bWVobaniHKYgaOqmGsY-3lWkoYfettvyRvN-al6k8mw.cache +1 -0
  344. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bX/bX8dsQ7NETR4UjFmKSl4Bgcj__stmPD_Q_ZyVNyvS5g.cache +1 -0
  345. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/biqjJ3cP_d-VEB9qaAix6-DE104ZFZrowfSkkHfm1GM.cache +2 -0
  346. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bq/bqX4j_zZbeV8LgllrusWMRjlCAKnQopwGmBpRlR0RVo.cache +1 -0
  347. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cD/cDhceJCud3ytmx4KAapGNY9E4GGIxFLHRXUF4gDYxlY.cache +0 -0
  348. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cU/cUL6wF4KDBndJmV_lWkqpVPIHxEQaRTZJ8BvwDopYE4.cache +1 -0
  349. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cd/cdvdtHJSzK--vX3Iey52cBkjKGcR8fcMJN612HR9Bxo.cache +0 -0
  350. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cj/cjK2Q1o5BnizOZSx4IphUNmw7vghh9G75FppXFPLUqw.cache +3 -0
  351. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cs/csUWBJUbJc2qsWWiGviL0r3BqffL9uG02-9EP8AfWtE.cache +1 -0
  352. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cz/czrZ-Wp0Xjs7aITUJZldPMl6eAnccxfOEUrIwjoOsOo.cache +1 -0
  353. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d2/d2WhBXZNPOYmKsTzwvFPudVH0yRvHBUVdrEgkvKrhZY.cache +0 -0
  354. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dI/dIUxL2dHOPknD8i1L7K6jWfRuEK3VDnY39O09KoyNdA.cache +1 -0
  355. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dO/dOZc58tPCSl81XiqbwrLeA6UBDexijjQ0TuaVeYlA-k.cache +1 -0
  356. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dR/dRUr3fS0gOk6MifE73gXaEVw0R0HQQEn-ssDRYD4pO0.cache +1 -0
  357. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/db/db8h3O1MzvfSjVlvsmhBQjbeqmUUYD_NL866tTGSBjs.cache +0 -0
  358. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/de/deP2QzNEGXKnCefB-g1zM2taDyU3CjzDjcWF2mLkG08.cache +3 -0
  359. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dp/dpYfWRNwhMBvM4r0LC7pRLwCmYyDyXmo-W16YLyUkEY.cache +1 -0
  360. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/du/duSlAnriPjgsPvZtgBZTgQAZg_U5CVYiA6oNHajH_Co.cache +1 -0
  361. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dz/dzDxB08NnHQ4oCQE6Cq_bl0fWvDXbCuIEutuPDgiJUg.cache +1 -0
  362. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e8/e8GiayPJHb2_acrCNnrEDTa7JmxjSEMzyvG-hYK-7vA.cache +1 -0
  363. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e9/e9KzPfL5eEcjvHdReoFYyt_a_q-1idB-Vvh2TBNo9kM.cache +1 -0
  364. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eB/eBV39nHMcVgiw55P19Yot68rIP9KwJA9Ul2iwI1PV4I.cache +2 -0
  365. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eO/eOHu2nGcsXgjovu-tzLmFDIfE_7GFcREEuM8R3IUESc.cache +1 -0
  366. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e_/e_E_TGxTxApSvDE3nc5l3ApDhvU67wcaXUNjcuRagyE.cache +0 -0
  367. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fB/fBZ0wNaPUuOAnD_aJpwR6T_IB55EGzl9ZH3ERt_0Ntw.cache +0 -0
  368. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fM/fMKXmCgsyRnk2JTxk6Jr8_lv3Y56n9K01cLEQ8mG-SQ.cache +0 -0
  369. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fU/fU5DWUU-JvDFpe70dVGtAnWRJGQJ6V1TSdq2Rjicb3o.cache +1 -0
  370. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fX/fXzQhgJjIk-9Ewhk0QEOAY6cgvEhaSQIP6IxcTWGIXE.cache +0 -0
  371. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fy/fy7tDBZI-exmL6P5ucBDvhDJS6u2u9C-YBc0asnfc-o.cache +2 -0
  372. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g8/g8GXGG6855WO5fmq9ZYX80B0tTToBkJNTjIF0au9PN4.cache +1 -0
  373. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gB/gB8RYXBYgK_ro7CaAm8Q2srpAeNj0K3FR4PGs81nyjY.cache +0 -0
  374. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gU/gUvXN3P0h_XTrC-g9vztEcFaStlUITNznI6gymhzNAI.cache +1 -0
  375. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g_/g_GHqMv-tY1dAearG5Oi0zS-ggNd5-tfByx9JLVtUuI.cache +2 -0
  376. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gb/gb1t0kex46Po5WohUHW9qGekA7QssftJZG8GY5gY6ko.cache +1 -0
  377. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gm/gmUq8njyPBvQFhNCe-JKC8xQptF-aeS31GYQ6Az8HqE.cache +1 -0
  378. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/go/gof5cOJtYc_lSB1X4RdzjU8qmOeFHuAU3uySXgvBYfc.cache +0 -0
  379. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/go/gom_Z0UCH-u-vnj22bgJ22B9BJu2aU3AksDUrjA_iBk.cache +1 -0
  380. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gs/gs8O-hnSVTNtAMoD9-yrTB7WC2L1NXNBheKKW_4t_xw.cache +2 -0
  381. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hA/hAaWp60N8Z30vvAx-6P5G8teJClOv5cmHRVizAuJip8.cache +2 -0
  382. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hE/hEfqVpUEZekaAwq2WfcTahAURqOqs8qMJRVAMBLJBbk.cache +0 -0
  383. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hH/hHjkl-8rfn66AukqclNV4Y9M_eZFFZGKQmh5XJsF1sU.cache +2 -0
  384. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hV/hV518O9EIBNsElloD9OmtKMfbpuG0iJar6WWqHv52RY.cache +0 -0
  385. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4OZu7dEwcFP6RiyvrGRH5vXaaKjuHP8ogM6Ex5kq94.cache +34 -0
  386. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i8/i8FK11_VmjBkH3nN6CiSoNUTetROs8InQhLJFX2Feuo.cache +1 -0
  387. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iK/iKD_EVENnAK9F4ZbyFFVRdJs479d65nJ_KqAzUR5Jv4.cache +0 -0
  388. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iS/iSj1-JtKjw3gRN_udETVAvgOWYtIWksqFRyeRFb8JT0.cache +0 -0
  389. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iY/iYhimmRrdDOmXCdoOoOMlvf5hLfXlGLdIiEAuxsah00.cache +2 -0
  390. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iZ/iZddZAo83yMIxT5XrZQn_qOzOldCeWUGlKzM4a4iHi0.cache +1 -0
  391. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ik/ikqi0IrytERlPVbeJrNZnd1jaKMHIIc5Blerf_4lbh4.cache +2 -0
  392. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iv/iv6T1gN5PeXsPqcKZfJmugUyfCfzNfKc3a_kuNIAGkg.cache +1 -0
  393. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jOoARY0_H16bOncdSljrZHIez-0i3Aa7pkOmoMD4V94.cache +0 -0
  394. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jo/joNuCo28WIUI2Quu8ZNIysH_naxu3QaxSmBMl0__S3A.cache +1 -0
  395. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jy/jyvFLTwfd-GBTXz0Ij5UfLGipNU5E7DnnR7-3QzlIqk.cache +1 -0
  396. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jzPyFfRUoJtNBspAPe406gy5b-je7mVI8Iljtqx-D_s.cache +1 -0
  397. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jzhWwPjPTZ2AHnbPndzvxEHg4vGMd5MyQ1zr5eEKLIQ.cache +0 -0
  398. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/k-/k-bsTA315sR8iUULydbJ9swQ_sbliU0Z3nmwvFduMoQ.cache +3 -0
  399. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kC/kClGcEovuXyEHKJSC1hme_H4Krcr3KVFFQCqpYSj0XM.cache +2 -0
  400. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kV/kVHN4A4zYggs4nTdUBOLo32CBWEdxaSYqxfBHOY-uiw.cache +4 -0
  401. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kY/kYKwZY52fIqpIfkH7ACYcQTG4f3zVELbXnyLM9urL4E.cache +1 -0
  402. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kZ/kZxWUPfRKbr-qPNpO0Ua0NhCyUzuNxAOw_mb50LtDKk.cache +1 -0
  403. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kd/kdL50jtZVyoRsQsM0qPl7knJBuDCwyB57SSqw0HSQ7M.cache +1 -0
  404. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kj/kjoRhWOMx9fK5AQMQkXgphV2ejz_k4U0Yad6cZK9T8Y.cache +0 -0
  405. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kt/ktRSOHf8LmLBcctML1pWSKZe7EPp0XQvvllnUcMxo9E.cache +0 -0
  406. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l-/l-i3cCbRAB-1xXgi556PZ7nf3l9mASREJlZt3oWG9i4.cache +1 -0
  407. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDUZEswtA28Grc4uEjhh59oCte6togsAgVdNUVzVaV4.cache +0 -0
  408. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOIWXFLRjbYyI9mLVkvye3Q5Wnm6ITE9YT0-GfF_7gM.cache +3 -0
  409. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +0 -0
  410. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lb/lbCIe-_wBeUNLgqEjndiqzpP2-wU0xCegZZX6Pb4sjI.cache +0 -0
  411. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lo/lotZ2_nrSJoe_Pk7oUuBG2dPM5eb21dzmhIlS_8o32o.cache +1 -0
  412. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lu/luWp4WzF2hyzqRLszkLOcO2OsS4BNJrwN5qkemrz5d8.cache +1 -0
  413. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ly/lybWKD--tFmTeFPk7wPFXI-W3ML-fcFvJvgpIzCtnIg.cache +0 -0
  414. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lz/lzrbYKw8sFEeiyZX1Ubi1ipIOqLU1twifxKMI7pjFQ4.cache +0 -0
  415. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m5/m5cGvQXpnfkv2Z3KxK5jj3puniMbCp3S_KZgiX8mBeE.cache +2 -0
  416. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ma/mazExAryROL99lB5loLr35pKKQdItgO0HGbJuM9LckY.cache +1 -0
  417. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mg/mgKQfCNtf8r-ZBapE8bOEFMzHCe5vL3gXf2pwytxr24.cache +0 -0
  418. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mt/mti_Jdr3zlygSo4F5-1sh1eE_lSBfg23UMyg7ntjZhs.cache +1 -0
  419. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n2/n2_eb7-0_P3GbGfeuHM1itcSYYqaH07WA6pxkWSZ4tA.cache +0 -0
  420. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n5/n5I7_qSJhpK5lyGIithQ6GZQ27QqHTpfkbM3e6lcalo.cache +1 -0
  421. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nC/nCPthWYsu-ebO0lkcVdEr6JYDBRzQSXvBsKlUi-Vywc.cache +2 -0
  422. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nF/nF2VsahVKvj5ttjplShxWAS6o-QrYP39aNCYM1bhA_0.cache +0 -0
  423. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nJ/nJePY9ytiYb512436eGT54JwgRoiM2bONQuGyhI7NAw.cache +0 -0
  424. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nP/nPNoRp8-Rd2esnw33idQQzsqPQmPpdaML6aMhnPiIBQ.cache +1 -0
  425. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
  426. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ne/ne1rW0U7Iur1T5TReRJl_oVcWo2mfWHg2rEaYvr_puA.cache +3 -0
  427. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/np/np-WWCJWkPeCSA0XMyTen8X-M4z0t2KuDptKsuCwtEc.cache +1 -0
  428. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ns/nsKR7KKkNmslVYgFDHHSEYDRKx7VTDnVsHWssvfUXSw.cache +1 -0
  429. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
  430. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oI/oId3KhirWQ-C-oCpGpopbJvBxg1omuycDiPQO9QoidU.cache +2 -0
  431. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oU/oUMojGzGoi9vWIsLjJ1lkpDHDSg24Ippt3LrUNxXBKE.cache +3 -0
  432. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oa/oa8BEUBHD__7PZO3Dkm4vYmayf15lXnx4Hbde4YhED0.cache +0 -0
  433. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oa/oaULzROl-EIKUX1wtv--qdSk2Ob4waf1uDtUvH8cRhI.cache +1 -0
  434. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oi/oijeUTPOYSNJUXrc99EGSI1JkAlpfdstQ7sHZSrw3FI.cache +1 -0
  435. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ot/otmFaWx5df8QrUNC49Uw9vqPyqtaXFoIuIRQWF2n7Fg.cache +1 -0
  436. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/p5/p5esSXhHrBSUI5j-4U7e8BOHHy3_ngiC7w8OFMR48B4.cache +1 -0
  437. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pN/pNg_LbDFbq9OxIY0sa8HbGsYgXGZa9e6Q8QcUwQWm04.cache +1 -0
  438. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZuHmfLtBIWEUZGf0WieL_w49dPPYVbylJ8T73mqnJ0.cache +0 -0
  439. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZxVHLMx7khLtIMo9fjhCqdlwacpJaH7-64N3c2rfOg.cache +1 -0
  440. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pa/paGfyV5vhQ_RcOi1ne7TXOCpHHfFhFm7A88zsEsKbTI.cache +0 -0
  441. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pw/pwlaRT9R5RKaIfmyiLuMGJdydm-woI1jiYFRtVonBE4.cache +1 -0
  442. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/px/pxP13aR-_9cgGr5oko9dPte7a6lOHdYROyuL0M5WO_Q.cache +1 -0
  443. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pz/pzeOADCHHzI7Ea3YEGm19QuVSvSo4SseTLyMnNcyX3g.cache +1 -0
  444. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qH/qHfRjbU6haHtXIzDHnX5WooVTpvUFQNlQ0W2P0N9ZB8.cache +1 -0
  445. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qZ/qZNeYLsLXppm7FXm6ypF4TkEHiRlTGzaQfu11Jenk0w.cache +0 -0
  446. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qn/qnqqDu1kS8ig9iEei5CjAYND02unYf-E22-J953_GIc.cache +2 -0
  447. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qp/qpnn4gewy2_0O7aLG1YcbCjdvoFzZxERgl-uAb2NBiU.cache +3 -0
  448. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qv/qvMLpcYylz3ox1lJGCNSuUofOyQj2uExai2hhoxtaNo.cache +88 -0
  449. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r7/r7TP3kGzyr-Vkv7_54BZDEdpSWctoZGWNfsJSLHirZ8.cache +1 -0
  450. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rL/rLw_U9zk7911G5PTpvSQz2vXXFCxb75MSm0jUpvg9SM.cache +0 -0
  451. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rS-6Ew0r0DBaZoTyAD1yMYRbBiJtFyn6nwxe6G_9ruk.cache +2 -0
  452. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r_/r_n_kG4-nIL95oTN47GEKk_lfdqmQf36WPVgPCrWQE8.cache +1 -0
  453. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rp/rpuD7pOyPqwoSucHcrYwhz6kJsiud8cArmy0iBlyd80.cache +1 -0
  454. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rs/rs3WNo4WHv0_i5eYqZZBmzcomfSJYnEkbx-nIcg829o.cache +0 -0
  455. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rv/rvPXCY9kJZYjGQOyZ6zPTQuqWqqQRgIDvwlmVSfV18Q.cache +2 -0
  456. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s6/s63yj4K5dBEUBOASVinO-mengQsB-selvrc6jWpIgLo.cache +0 -0
  457. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s8/s8WLHYe9o7_u4hG_f1qAhNKsPP-1IY8XbMGZkYIXXvI.cache +1 -0
  458. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPCsm6ym3xm2G7DaEcE8AIICPGqMBlhJuy3WLz2cnkk.cache +2 -0
  459. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sU/sUDa6Eui9OGhH4Yz5zQrtE6TpDbpHe6GkreEZz1iHdk.cache +0 -0
  460. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sZ/sZtiTJNHZFFrthcLHBicIbXWd2TtA2KwwgmfJrbvz08.cache +0 -0
  461. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/si/siTPqqMBLMQ8XvqhzrKKm2QO0RAGV3dzZCrq3W8MhEE.cache +1 -0
  462. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sy/syPR2eDvwGYa--qOMAhm67cr3ZFLCG-asZc8aYJVTKo.cache +1 -0
  463. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t8/t8y_ZPP9-4_51wwcfL76BFgKZPmOZpZQm3fgN8_MCb4.cache +1 -0
  464. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t9/t9f7WTFS7WxtUfLPv9FztZ41ttKR3uZoFgQswiIkCNc.cache +3 -0
  465. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tF/tFBBIqJk8kEXHwZodwwsDG1ZnLtHUgQExLBppHiMr70.cache +3 -0
  466. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ta/taq_1F0tJ6U8bu-OF3gqFN4HMNa0832x27AUM7tOOVo.cache +0 -0
  467. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tg/tgLSnhi-CBO9Qhq8vCPvLBkpI3njksidoXfkabaWa9k.cache +3 -0
  468. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tl/tl6qqxHgVleP0a9KSycK9BM3hj-z6iJj3X2h-c6SZDA.cache +1 -0
  469. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tm/tmaJOSffTEYtcfi-6sWO_XlHqgf5F62EJzsxMoiliN4.cache +1 -0
  470. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tq/tq4bn2zWsw4Rn9Sxdxkc7wIBZpUmUNN7CR5H_Hc4QG8.cache +1 -0
  471. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tu/tufINiTig_EQDeMrM0R6B3_eTPvfCiqHDIUEguhK5is.cache +1 -0
  472. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-FHi-y_Fa2OhW24pJBY_w3EK9RnfQdxh_E150hVViU.cache +1 -0
  473. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u8/u8eyB2x_fVKUn-D8y1bx18f_2dk0bWeImNjqPZc6HqU.cache +1 -0
  474. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uT/uTNVE3NY1ksQlwvCuW1g3wMNith1NplTDn7KGxHrTrw.cache +0 -0
  475. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ua/uaYmkrxjL7SgFY_F9U0_KrO42xt6uxQPt5-d-GwN3Jc.cache +1 -0
  476. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ue/ueYJcOzPBq_dHe4FpnJPom2jTP-w6i7zTrm8ZN_WHXY.cache +2 -0
  477. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uj/ujuCUIfxGuMI9earvnYE8R073JdAet_M_Lx7yLBQaqM.cache +0 -0
  478. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ur/urg6918jMKrw9Z3-siteDpdSB55Vy_5Coh2p0dL3CDU.cache +1 -0
  479. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ut/utKGvtqVVaepyzJP7X2dBCCMSAz2s9v0_21vwTTDPOQ.cache +1 -0
  480. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4YKXv2hlGUeiyi9VSjxWGH4NBXXEjwiLt5VSZZVDJI.cache +3 -0
  481. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v8/v8XTZeBYrD2zAFKla-tryCmIEC45svJcgzLho9iPpao.cache +1 -0
  482. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vA/vAcroqeHoBGbq8WECKZcrHr2oecOFCuRj_g3xP8BDuQ.cache +0 -0
  483. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vq/vqN7_QESrnr6Ntr92PtKqw9y2BA-QQhm3NMUEGIbo1g.cache +0 -0
  484. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vy/vyLZEQLZ3xnZOS8rkPJkn99exa9iWfp7b94TCA82rN0.cache +0 -0
  485. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wE/wE594oHt6S4KFKsmfov1kDvtWp4EsgzayvxkgiV3fSI.cache +1 -0
  486. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wJ/wJGQEQMUVIfogUMeqByKzgzp3jx8UhJpw5H-A-_13rQ.cache +3 -0
  487. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wS/wSpeyZHxI9sVvX9vmAMBsDtev_-84hhZUgWbdw_1hdY.cache +2 -0
  488. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
  489. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ws/wsLfx4rZUyGgoO2GQ25w7WFKQr8Z9QST1nwzL5a5YdM.cache +0 -0
  490. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x5/x5ieWkO-xwUmxcvbLpGpbu2K3yI7XL5Rkk7QkGjh1rE.cache +1 -0
  491. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xB/xBh2X6Oi49pZ_E3mbq7SsP3ByxO_UZ-nYQFFfERITPA.cache +1 -0
  492. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xB/xBjW2BCfb5ZXATMsqLMgVZLCyHpsutC4QvuD3B4dv0s.cache +0 -0
  493. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xC/xCobBePQjr16SbYrc5w5Tfe9I4FoONzo9b8VWWX1zQc.cache +3 -0
  494. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xM/xM3Jc0mmYcUFDRU_7lcjA449kcUoYSo_ldYjRmHyyGQ.cache +1 -0
  495. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xO/xOyWmCSKdlLb_Vo82CnEwKX4WplT0dWgLopGdZdn6ps.cache +2 -0
  496. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xc/xcPtmfwG9T5T8aRdaRDs1puIubUCHovlaQs1u9gz0uw.cache +0 -0
  497. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xh/xhifkps610G7poIB5AOYiqU9Td1FRoM5GUR18JmzwZ0.cache +1 -0
  498. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yA/yAqqjm4p0msFcQ3JY5xB9tn9Ce2zAAIO8VKODfkCHiM.cache +1 -0
  499. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yP/yPz2VJ6Vl8vPBvK0-_SRkUas7QHg2vISvonUKHoP11I.cache +0 -0
  500. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqTOqOVKuROAWr0yJzXqkvWu3fG8iqyBgym-JvQ3l9g.cache +2 -0
  501. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJg63U7CH9pgFYJKSqqi_Bdj59nKjpJfQndjB_feigE.cache +2 -0
  502. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zO/zO8x4k_kKzuyQ8-OaOrc91BwdaNUnbgQR5WY0U07Yqw.cache +1 -0
  503. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPDO-TeUvtDtOWoPUcUjI-cOAFXTEUdjJgG54uLZPRo.cache +3 -0
  504. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zc/zcv_tgTR0i4YpYoGSmavm3It0msTspYLth0tRiTmcCI.cache +0 -0
  505. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zc/zcwbDEQA_tWArQ7NnzCD_8PyQiXW754vGA5YXeuZcSM.cache +0 -0
  506. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zq/zqtY7QpZ7w8PtGG3A9R8GNEesjDMDUU0NWzb3d4oX14.cache +1 -0
  507. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zz/zz0mg2-jBzPspm3C-K0A0xYLznt5-daRhOepNO-r-0I.cache +1 -0
  508. data/spec/dummy/tmp/development_secret.txt +1 -0
  509. data/spec/dummy/tmp/storage/5k/83/5k83jxFDYb2wMVdXM68vHkkJ +0 -0
  510. data/spec/dummy/tmp/storage/6H/GA/6HGA6XuoXQsS3ZqGUZ3PtLqM +0 -0
  511. data/spec/dummy/tmp/storage/Bo/TG/BoTGgqaa59RZuHwoM1GmSvyR +0 -0
  512. data/spec/dummy/tmp/storage/Bv/Rw/BvRwN2rrUPcdfd8n1gDqFawB +0 -0
  513. data/spec/dummy/tmp/storage/C8/G5/C8G5cFjPsZN2Q9Ydx2CJ3dzQ +0 -0
  514. data/spec/dummy/tmp/storage/Dq/iy/DqiyVUS7CUL8aSbEAMNtoEdD +0 -0
  515. data/spec/dummy/tmp/storage/EU/Tb/EUTb4CcbHeq6q6BmqhHxLR96 +0 -0
  516. data/spec/dummy/tmp/storage/HT/pm/HTpmYShupi5EJNrradja6mVL +0 -0
  517. data/spec/dummy/tmp/storage/Jb/Ja/JbJaAhVpr1V51SxJTyM3D2zF +0 -0
  518. data/spec/dummy/tmp/storage/Jp/BN/JpBNdvYnjnikW4UqycMs6S56 +0 -0
  519. data/spec/dummy/tmp/storage/Pe/Pc/PePcBQHnSDk5ZTrxftxczfRZ +0 -0
  520. data/spec/dummy/tmp/storage/UF/Zp/UFZpwtMcXFWg4DobzR39hofU +0 -0
  521. data/spec/dummy/tmp/storage/V1/af/V1afuALSJzpRpCifsnAeQWiE +0 -0
  522. data/spec/dummy/tmp/storage/d7/2A/d72AwmhJ3n4AE3yMtCBWLKzC +0 -0
  523. data/spec/dummy/tmp/storage/dT/nX/dTnXwvBxb5q1sz4V9RoFEY9f +0 -0
  524. data/spec/dummy/tmp/storage/hr/k7/hrk7FyAW9UPTARPBoaLC5S6R +0 -0
  525. data/spec/dummy/tmp/storage/kc/6t/kc6tSy4nscztYUiueCfAGegB +0 -0
  526. data/spec/dummy/tmp/storage/kx/oG/kxoG4tFDKMyaJU9mqe7ujN4T +0 -0
  527. data/spec/dummy/tmp/storage/mQ/L8/mQL8JjXA8QsYTKkZcq7wH2er +0 -0
  528. data/spec/dummy/tmp/storage/me/so/meso4MFkX8A2P1EJDurmGKhE +0 -0
  529. data/spec/dummy/tmp/storage/mr/pw/mrpwPSd8RMydrLgNTDpdxX5k +0 -0
  530. data/spec/dummy/tmp/storage/pN/pt/pNptiSgGcoegZMiaAvcETCth +0 -0
  531. data/spec/dummy/tmp/storage/qa/Ha/qaHaTBocH4C8qeom3YqgUpi8 +0 -0
  532. data/spec/dummy/tmp/storage/sZ/oX/sZoX6LX7LPetJEHdVyYSnShV +0 -0
  533. data/spec/dummy/tmp/storage/xx/XP/xxXPp1mpoasrBznSKYn4dBAn +0 -0
  534. data/spec/dummy/tmp/storage/yE/W9/yEW9dkvFMwX2oBGLwdooz9z9 +0 -0
  535. data/spec/dummy/tmp/storage/yi/DX/yiDXXQ9GkMUnaSpW4xNiMgG8 +0 -0
  536. data/spec/dummy/tmp/storage/ze/tP/zetP27EpeZ3wJrz3rrqzGnGX +0 -0
  537. data/spec/factories/active_storage/attachments.rb +7 -0
  538. data/spec/factories/active_storage/blobs.rb +10 -0
  539. data/spec/factories/cmor_system_changelogs.rb +8 -0
  540. data/spec/factories/delayed/backend_active_record_jobs.rb +5 -0
  541. data/spec/features/de/backend/system/active_storage/attachments_feature_spec.rb +20 -0
  542. data/spec/features/de/backend/system/active_storage/blobs_feature_spec.rb +20 -0
  543. data/spec/features/de/backend/system/changelogs_feature_spec.rb +13 -0
  544. data/spec/features/de/backend/system/delayed_backend_active_record_jobs_feature_spec.rb +55 -0
  545. data/spec/files/active_storage/blob/example.png +0 -0
  546. data/spec/files/cmor/system/changelog/file/example.md +5 -0
  547. data/spec/models/cmor/system/changelog_spec.rb +36 -0
  548. data/spec/models/generic_spec.rb +52 -0
  549. data/spec/models/i18n_spec.rb +42 -0
  550. data/spec/rails_helper.rb +62 -0
  551. data/spec/spec_helper.rb +96 -0
  552. data/spec/support/capybara.rb +1 -0
  553. data/spec/support/factory_bot.rb +12 -0
  554. data/spec/support/pry-rails.rb +1 -0
  555. data/spec/support/rao-shoulda_matchers.rb +5 -0
  556. data/spec/support/shoulda_matchers.rb +8 -0
  557. metadata +934 -0
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,31 @@
1
+ en:
2
+ simple_form:
3
+ "yes": 'Yes'
4
+ "no": 'No'
5
+ required:
6
+ text: 'required'
7
+ mark: '*'
8
+ # You can uncomment the line below if you need to overwrite the whole required html.
9
+ # When using html, text and mark won't be used.
10
+ # html: '<abbr title="required">*</abbr>'
11
+ error_notification:
12
+ default_message: "Please review the problems below:"
13
+ # Examples
14
+ # labels:
15
+ # defaults:
16
+ # password: 'Password'
17
+ # user:
18
+ # new:
19
+ # email: 'E-mail to sign in.'
20
+ # edit:
21
+ # email: 'E-mail.'
22
+ # hints:
23
+ # defaults:
24
+ # username: 'User name to sign in.'
25
+ # password: 'No special characters, please.'
26
+ # include_blanks:
27
+ # defaults:
28
+ # age: 'Rather not say'
29
+ # prompts:
30
+ # defaults:
31
+ # age: 'Select your age'
@@ -0,0 +1,34 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory.
30
+ #
31
+ # preload_app!
32
+
33
+ # Allow puma to be restarted by `rails restart` command.
34
+ plugin :tmp_restart
@@ -0,0 +1,11 @@
1
+ Rails.application.routes.draw do
2
+
3
+ localized do
4
+ mount Cmor::System::Engine, at: '/backend/cmor-system-engine'
5
+ end
6
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
7
+ localized do
8
+ mount Administrador::Engine, at: '/administrador-engine'
9
+ end
10
+
11
+ end
@@ -0,0 +1,6 @@
1
+ %w[
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,22 @@
1
+ class CreateDelayedJobs < ActiveRecord::Migration[5.2]
2
+ def self.up
3
+ create_table :delayed_jobs, force: true do |table|
4
+ table.integer :priority, default: 0, null: false # Allows some jobs to jump to the front of the queue
5
+ table.integer :attempts, default: 0, null: false # Provides for retries, but still fail eventually.
6
+ table.text :handler, null: false # YAML-encoded string of the object that will do work
7
+ table.text :last_error # reason for last failure (See Note below)
8
+ table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future.
9
+ table.datetime :locked_at # Set when a client is working on this object
10
+ table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead)
11
+ table.string :locked_by # Who is working on this object (if locked)
12
+ table.string :queue # The name of the queue this job is in
13
+ table.timestamps null: true
14
+ end
15
+
16
+ add_index :delayed_jobs, [:priority, :run_at], name: "delayed_jobs_priority"
17
+ end
18
+
19
+ def self.down
20
+ drop_table :delayed_jobs
21
+ end
22
+ end
@@ -0,0 +1,27 @@
1
+ # This migration comes from active_storage (originally 20170806125915)
2
+ class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
3
+ def change
4
+ create_table :active_storage_blobs do |t|
5
+ t.string :key, null: false
6
+ t.string :filename, null: false
7
+ t.string :content_type
8
+ t.text :metadata
9
+ t.bigint :byte_size, null: false
10
+ t.string :checksum, null: false
11
+ t.datetime :created_at, null: false
12
+
13
+ t.index [ :key ], unique: true
14
+ end
15
+
16
+ create_table :active_storage_attachments do |t|
17
+ t.string :name, null: false
18
+ t.references :record, null: false, polymorphic: true, index: false
19
+ t.references :blob, null: false
20
+
21
+ t.datetime :created_at, null: false
22
+
23
+ t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
24
+ t.foreign_key :active_storage_blobs, column: :blob_id
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,9 @@
1
+ class CreatePosts < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :posts do |t|
4
+ t.string :title
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,57 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2020_01_28_171034) do
14
+
15
+ create_table "active_storage_attachments", force: :cascade do |t|
16
+ t.string "name", null: false
17
+ t.string "record_type", null: false
18
+ t.integer "record_id", null: false
19
+ t.integer "blob_id", null: false
20
+ t.datetime "created_at", null: false
21
+ t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
22
+ t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
23
+ end
24
+
25
+ create_table "active_storage_blobs", force: :cascade do |t|
26
+ t.string "key", null: false
27
+ t.string "filename", null: false
28
+ t.string "content_type"
29
+ t.text "metadata"
30
+ t.bigint "byte_size", null: false
31
+ t.string "checksum", null: false
32
+ t.datetime "created_at", null: false
33
+ t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
34
+ end
35
+
36
+ create_table "delayed_jobs", force: :cascade do |t|
37
+ t.integer "priority", default: 0, null: false
38
+ t.integer "attempts", default: 0, null: false
39
+ t.text "handler", null: false
40
+ t.text "last_error"
41
+ t.datetime "run_at"
42
+ t.datetime "locked_at"
43
+ t.datetime "failed_at"
44
+ t.string "locked_by"
45
+ t.string "queue"
46
+ t.datetime "created_at"
47
+ t.datetime "updated_at"
48
+ t.index ["priority", "run_at"], name: "delayed_jobs_priority"
49
+ end
50
+
51
+ create_table "posts", force: :cascade do |t|
52
+ t.string "title"
53
+ t.datetime "created_at", null: false
54
+ t.datetime "updated_at", null: false
55
+ end
56
+
57
+ end
@@ -0,0 +1,12 @@
1
+ -# frozen_string_literal: true
2
+ = simple_form_for(@<%= singular_table_name %>) do |f|
3
+ = f.error_notification
4
+ = f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present?
5
+
6
+ .form-inputs
7
+ <%- attributes.each do |attribute| -%>
8
+ = f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %>
9
+ <%- end -%>
10
+
11
+ .form-actions
12
+ = f.button :submit
@@ -0,0 +1,128 @@
1
+  (0.1ms) SELECT sqlite_version(*)
2
+ ↳ bin/rails:4
3
+  (12.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
+ ↳ bin/rails:4
5
+  (3.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
+ ↳ bin/rails:4
7
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
+ ↳ bin/rails:4
9
+ Migrating to CreateDelayedJobs (20200128171009)
10
+  (0.1ms) begin transaction
11
+ ↳ bin/rails:4
12
+  (0.2ms) DROP TABLE IF EXISTS "delayed_jobs"
13
+ ↳ db/migrate/20200128171009_create_delayed_jobs.rb:3
14
+  (0.5ms) CREATE TABLE "delayed_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
15
+ ↳ db/migrate/20200128171009_create_delayed_jobs.rb:3
16
+  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
17
+ ↳ db/migrate/20200128171009_create_delayed_jobs.rb:16
18
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200128171009"]]
19
+ ↳ bin/rails:4
20
+  (6.2ms) commit transaction
21
+ ↳ bin/rails:4
22
+ Migrating to CreateActiveStorageTables (20200128171022)
23
+  (0.1ms) begin transaction
24
+ ↳ bin/rails:4
25
+  (0.5ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
26
+ ↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:4
27
+  (0.2ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
28
+ ↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:4
29
+  (0.2ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
30
+ FOREIGN KEY ("blob_id")
31
+ REFERENCES "active_storage_blobs" ("id")
32
+ )
33
+ ↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
34
+  (0.2ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
35
+ ↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
36
+  (0.2ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
37
+ ↳ db/migrate/20200128171022_create_active_storage_tables.active_storage.rb:16
38
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200128171022"]]
39
+ ↳ bin/rails:4
40
+  (3.3ms) commit transaction
41
+ ↳ bin/rails:4
42
+ Migrating to CreatePosts (20200128171034)
43
+  (0.1ms) begin transaction
44
+ ↳ bin/rails:4
45
+  (0.3ms) CREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
46
+ ↳ db/migrate/20200128171034_create_posts.rb:3
47
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200128171034"]]
48
+ ↳ bin/rails:4
49
+  (3.5ms) commit transaction
50
+ ↳ bin/rails:4
51
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
52
+ ↳ bin/rails:4
53
+  (0.1ms) begin transaction
54
+ ↳ bin/rails:4
55
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-01-28 17:10:47.760841"], ["updated_at", "2020-01-28 17:10:47.760841"]]
56
+ ↳ bin/rails:4
57
+  (3.4ms) commit transaction
58
+ ↳ bin/rails:4
59
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
60
+ ↳ bin/rails:4
61
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
+ ↳ bin/rails:4
63
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
64
+ ↳ bin/rails:4
65
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
+ ↳ bin/rails:4
67
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
68
+ ↳ bin/rails:4
69
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
70
+ ↳ bin/rails:4
71
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
72
+ ↳ bin/rails:4
73
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments"
74
+ ↳ db/schema.rb:15
75
+  (0.1ms) SELECT sqlite_version(*)
76
+ ↳ db/schema.rb:15
77
+  (5.1ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
78
+ ↳ db/schema.rb:15
79
+  (3.7ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
80
+ ↳ db/schema.rb:15
81
+  (18.9ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
82
+ ↳ db/schema.rb:15
83
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_blobs"
84
+ ↳ db/schema.rb:25
85
+  (13.8ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
86
+ ↳ db/schema.rb:25
87
+  (12.1ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
88
+ ↳ db/schema.rb:25
89
+  (0.1ms) DROP TABLE IF EXISTS "delayed_jobs"
90
+ ↳ db/schema.rb:36
91
+  (17.2ms) CREATE TABLE "delayed_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)
92
+ ↳ db/schema.rb:36
93
+  (11.8ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
94
+ ↳ db/schema.rb:36
95
+  (0.2ms) DROP TABLE IF EXISTS "posts"
96
+ ↳ db/schema.rb:51
97
+  (35.5ms) CREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
98
+ ↳ db/schema.rb:51
99
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
100
+ ↳ db/schema.rb:13
101
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
102
+ ↳ db/schema.rb:13
103
+  (13.1ms) INSERT INTO "schema_migrations" (version) VALUES (20200128171034)
104
+ ↳ db/schema.rb:13
105
+  (5.5ms) INSERT INTO "schema_migrations" (version) VALUES
106
+ (20200128171009),
107
+ (20200128171022);
108
+
109
+ 
110
+ ↳ db/schema.rb:13
111
+  (7.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
112
+ ↳ db/schema.rb:13
113
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
114
+ ↳ db/schema.rb:13
115
+  (0.1ms) begin transaction
116
+ ↳ db/schema.rb:13
117
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-01-28 17:10:47.981780"], ["updated_at", "2020-01-28 17:10:47.981780"]]
118
+ ↳ db/schema.rb:13
119
+  (6.0ms) commit transaction
120
+ ↳ db/schema.rb:13
121
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
122
+ ↳ bin/rails:4
123
+  (0.1ms) begin transaction
124
+ ↳ bin/rails:4
125
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2020-01-28 17:10:48.002045"], ["key", "environment"]]
126
+ ↳ bin/rails:4
127
+  (3.9ms) commit transaction
128
+ ↳ bin/rails:4
@@ -0,0 +1,2225 @@
1
+  (0.1ms) begin transaction
2
+  (0.1ms) SAVEPOINT active_record_1
3
+ Post Create (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.768142"], ["updated_at", "2020-01-28 17:11:10.768142"]]
4
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5
+  Disk Storage (0.7ms) Uploaded file to key: DqiyVUS7CUL8aSbEAMNtoEdD (checksum: LRgZFfo35M6x3xVHGOISeQ==)
6
+  (0.1ms) SAVEPOINT active_record_1
7
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "DqiyVUS7CUL8aSbEAMNtoEdD"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.904028"]]
8
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9
+  (0.1ms) SAVEPOINT active_record_1
10
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:10.910789"]]
11
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:10.912146"], ["id", 1]]
12
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) to Async(default) with arguments: #<GlobalID:0x005636ce120308 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
14
+ ActiveStorage::Blob Load (1.3ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
15
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Performing ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) from Async(default) with arguments: #<GlobalID:0x005636ce36f348 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
16
+  (0.0ms) SAVEPOINT active_record_1
17
+ Post Create (0.2ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.934657"], ["updated_at", "2020-01-28 17:11:10.934657"]]
18
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c]  Disk Storage (1.0ms) Downloaded file from key: DqiyVUS7CUL8aSbEAMNtoEdD
20
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Skipping image analysis because the mini_magick gem isn't installed
21
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c]  (0.1ms) SAVEPOINT active_record_1
22
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
23
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c]  (0.1ms) RELEASE SAVEPOINT active_record_1
24
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [496c4b50-a211-42a7-a29d-799c03f9671c] Performed ActiveStorage::AnalyzeJob (Job ID: 496c4b50-a211-42a7-a29d-799c03f9671c) from Async(default) in 13.87ms
25
+  Disk Storage (9.8ms) Uploaded file to key: 5k83jxFDYb2wMVdXM68vHkkJ (checksum: LRgZFfo35M6x3xVHGOISeQ==)
26
+  (0.1ms) SAVEPOINT active_record_1
27
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "5k83jxFDYb2wMVdXM68vHkkJ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.948832"]]
28
+  (0.1ms) RELEASE SAVEPOINT active_record_1
29
+  (0.1ms) SAVEPOINT active_record_1
30
+ ActiveStorage::Attachment Create (0.1ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 2], ["blob_id", 2], ["created_at", "2020-01-28 17:11:10.951194"]]
31
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:10.952433"], ["id", 2]]
32
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) to Async(default) with arguments: #<GlobalID:0x005636ce08ad58 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
34
+  (0.1ms) SAVEPOINT active_record_1
35
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:10.955303"], ["updated_at", "2020-01-28 17:11:10.955303"]]
36
+  (0.1ms) RELEASE SAVEPOINT active_record_1
37
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
38
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Performing ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) from Async(default) with arguments: #<GlobalID:0x005636cb50eb48 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
39
+  Disk Storage (0.6ms) Uploaded file to key: qaHaTBocH4C8qeom3YqgUpi8 (checksum: LRgZFfo35M6x3xVHGOISeQ==)
40
+  (0.1ms) SAVEPOINT active_record_1
41
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "qaHaTBocH4C8qeom3YqgUpi8"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:10.967345"]]
42
+  (0.1ms) RELEASE SAVEPOINT active_record_1
43
+  (0.1ms) SAVEPOINT active_record_1
44
+ ActiveStorage::Attachment Create (0.1ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 3], ["blob_id", 3], ["created_at", "2020-01-28 17:11:10.969667"]]
45
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:10.970829"], ["id", 3]]
46
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) to Async(default) with arguments: #<GlobalID:0x005636cbfb9700 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
48
+ Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:11:10 +0100
49
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068]  Disk Storage (29.7ms) Downloaded file from key: 5k83jxFDYb2wMVdXM68vHkkJ
50
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Skipping image analysis because the mini_magick gem isn't installed
51
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068]  (0.1ms) SAVEPOINT active_record_1
52
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 2]]
53
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068]  (0.1ms) RELEASE SAVEPOINT active_record_1
54
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [b934e08d-f8c0-4014-9088-78af74817068] Performed ActiveStorage::AnalyzeJob (Job ID: b934e08d-f8c0-4014-9088-78af74817068) from Async(default) in 39.57ms
55
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
56
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Performing ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) from Async(default) with arguments: #<GlobalID:0x005636cd5bd3f8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
57
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
58
+ Parameters: {"locale"=>"de"}
59
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
60
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (3.3ms)
61
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f]  Disk Storage (49.8ms) Downloaded file from key: qaHaTBocH4C8qeom3YqgUpi8
62
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Skipping image analysis because the mini_magick gem isn't installed
63
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f]  (0.1ms) SAVEPOINT active_record_1
64
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] ActiveStorage::Blob Update (0.4ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 3]]
65
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f]  (0.1ms) RELEASE SAVEPOINT active_record_1
66
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d816c775-d850-48f6-8ee7-4327e4595c4f] Performed ActiveStorage::AnalyzeJob (Job ID: d816c775-d850-48f6-8ee7-4327e4595c4f) from Async(default) in 158.38ms
67
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (4.1ms)
68
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (8.4ms)
69
+ ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments"
70
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (3.3ms)
71
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (10.7ms)
73
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
74
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
75
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
76
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
77
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.2ms)
78
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
79
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
80
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
81
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
82
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.9ms)
83
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
84
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
85
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (57.4ms)
86
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (2.7ms)
87
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (4.1ms)
88
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (271.8ms)
89
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (2.7ms)
90
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
91
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (10.3ms)
92
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (4.4ms)
93
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (3.7ms)
94
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
95
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
96
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
97
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
98
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (50.9ms)
99
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
100
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (5.8ms)
101
+ Completed 200 OK in 2563ms (Views: 2530.5ms | ActiveRecord: 1.2ms)
102
+  (0.2ms) rollback transaction
103
+  (0.1ms) begin transaction
104
+  (0.1ms) SAVEPOINT active_record_1
105
+ Post Create (0.2ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:13.638616"], ["updated_at", "2020-01-28 17:11:13.638616"]]
106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
107
+  Disk Storage (0.6ms) Uploaded file to key: PePcBQHnSDk5ZTrxftxczfRZ (checksum: LRgZFfo35M6x3xVHGOISeQ==)
108
+  (0.1ms) SAVEPOINT active_record_1
109
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "PePcBQHnSDk5ZTrxftxczfRZ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:13.643369"]]
110
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111
+  (0.1ms) SAVEPOINT active_record_1
112
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:13.645811"]]
113
+ Post Update (2.3ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:13.647135"], ["id", 1]]
114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
115
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) to Async(default) with arguments: #<GlobalID:0x005636d0abcd60 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
116
+ Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:13 +0100
117
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
118
+ Parameters: {"locale"=>"de", "id"=>"1"}
119
+ ActiveStorage::Blob Load (4.9ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
120
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Performing ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) from Async(default) with arguments: #<GlobalID:0x005636d0a04558 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
121
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a]  Disk Storage (0.2ms) Downloaded file from key: PePcBQHnSDk5ZTrxftxczfRZ
122
+ ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
123
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Skipping image analysis because the mini_magick gem isn't installed
124
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a]  (0.1ms) SAVEPOINT active_record_1
125
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
126
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] ActiveStorage::Blob Update (0.4ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
127
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a]  (0.1ms) RELEASE SAVEPOINT active_record_1
128
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a9278158-8195-4f51-b4e3-85134498df0a] Performed ActiveStorage::AnalyzeJob (Job ID: a9278158-8195-4f51-b4e3-85134498df0a) from Async(default) in 56.48ms
129
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
130
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (2.8ms)
131
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (3.9ms)
132
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
133
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
134
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
135
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
136
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (5.9ms)
137
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.3ms)
138
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
139
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (30.4ms)
140
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (2.4ms)
141
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (8.9ms)
142
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (210.9ms)
143
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
144
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
145
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
146
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
147
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
148
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
149
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
150
+  (0.7ms) SELECT COUNT(*) FROM "active_storage_attachments"
151
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
152
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.9ms)
153
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
154
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.7ms)
155
+ Completed 200 OK in 282ms (Views: 238.7ms | ActiveRecord: 1.4ms)
156
+  (0.2ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+  (0.1ms) SAVEPOINT active_record_1
159
+ Post Create (0.2ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:13.962998"], ["updated_at", "2020-01-28 17:11:13.962998"]]
160
+  (0.1ms) RELEASE SAVEPOINT active_record_1
161
+  Disk Storage (1.0ms) Uploaded file to key: 6HGA6XuoXQsS3ZqGUZ3PtLqM (checksum: LRgZFfo35M6x3xVHGOISeQ==)
162
+  (0.1ms) SAVEPOINT active_record_1
163
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "6HGA6XuoXQsS3ZqGUZ3PtLqM"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:13.969281"]]
164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
165
+  (0.1ms) SAVEPOINT active_record_1
166
+ ActiveStorage::Attachment Create (0.3ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:13.972154"]]
167
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:13.980329"], ["id", 1]]
168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
169
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) to Async(default) with arguments: #<GlobalID:0x005636ce04eb00 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
170
+ Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:13 +0100
171
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
172
+ Parameters: {"locale"=>"de", "id"=>"1"}
173
+ ActiveStorage::Blob Load (4.8ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
174
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Performing ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) from Async(default) with arguments: #<GlobalID:0x005636ce5c5f98 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
175
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
176
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
177
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
178
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
179
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
180
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
181
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
182
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
183
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
184
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (3.4ms)
185
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.2ms)
186
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
187
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (18.6ms)
188
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.2ms)
189
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (2.5ms)
190
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (28.1ms)
191
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
192
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
193
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
194
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.8ms)
195
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
196
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
197
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
198
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_attachments"
199
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
200
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.9ms)
201
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
202
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
203
+ Completed 200 OK in 58ms (Views: 53.5ms | ActiveRecord: 0.7ms)
204
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
205
+ Started DELETE "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
206
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#destroy as HTML
207
+ Parameters: {"locale"=>"de", "id"=>"1"}
208
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
209
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
210
+  (0.1ms) SAVEPOINT active_record_1
211
+ ActiveStorage::Attachment Destroy (0.1ms) DELETE FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? [["id", 1]]
212
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
213
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:14.075815"], ["id", 1]]
214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
215
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83]  Disk Storage (65.4ms) Downloaded file from key: 6HGA6XuoXQsS3ZqGUZ3PtLqM
216
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Skipping image analysis because the mini_magick gem isn't installed
217
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83]  (0.1ms) SAVEPOINT active_record_1
218
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
219
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83]  (0.1ms) RELEASE SAVEPOINT active_record_1
220
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83] Performed ActiveStorage::AnalyzeJob (Job ID: a3b88a8c-bb12-4c7b-8931-5c8efb2e2c83) from Async(default) in 174.99ms
221
+ Redirected to http://www.example.com/de/backend/system/active_storage/attachments
222
+ Completed 302 Found in 97ms (ActiveRecord: 0.6ms)
223
+ Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
224
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
225
+ Parameters: {"locale"=>"de"}
226
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
227
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
228
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
229
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (0.2ms)
230
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
231
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments"
232
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (2.0ms)
233
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.0ms)
234
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
235
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.4ms)
236
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
237
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
238
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
239
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
240
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
241
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
242
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
243
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
244
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
245
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.4ms)
246
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
247
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
248
+ Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.5ms)
249
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
250
+  (0.2ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+  Disk Storage (3.4ms) Uploaded file to key: yEW9dkvFMwX2oBGLwdooz9z9 (checksum: LRgZFfo35M6x3xVHGOISeQ==)
253
+  (0.1ms) SAVEPOINT active_record_1
254
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "yEW9dkvFMwX2oBGLwdooz9z9"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.349265"]]
255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
256
+  Disk Storage (0.5ms) Uploaded file to key: kxoG4tFDKMyaJU9mqe7ujN4T (checksum: LRgZFfo35M6x3xVHGOISeQ==)
257
+  (0.1ms) SAVEPOINT active_record_1
258
+ ActiveStorage::Blob Create (0.1ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "kxoG4tFDKMyaJU9mqe7ujN4T"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.353727"]]
259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
260
+  Disk Storage (0.5ms) Uploaded file to key: BoTGgqaa59RZuHwoM1GmSvyR (checksum: LRgZFfo35M6x3xVHGOISeQ==)
261
+  (0.1ms) SAVEPOINT active_record_1
262
+ ActiveStorage::Blob Create (0.1ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "BoTGgqaa59RZuHwoM1GmSvyR"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.357647"]]
263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
264
+ Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
265
+ Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
266
+ Parameters: {"locale"=>"de"}
267
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
268
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
269
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (4.5ms)
270
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
271
+ ActiveStorage::Blob Load (0.3ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs"
272
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
273
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
274
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
275
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
276
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
277
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
278
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
279
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
280
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
281
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
282
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
283
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
284
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (34.5ms)
285
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
286
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
287
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (98.0ms)
288
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
289
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
290
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
291
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
292
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
293
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
294
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
295
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
296
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
297
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
298
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
299
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
300
+ Completed 200 OK in 152ms (Views: 137.8ms | ActiveRecord: 0.6ms)
301
+  (0.2ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+  Disk Storage (0.6ms) Uploaded file to key: EUTb4CcbHeq6q6BmqhHxLR96 (checksum: LRgZFfo35M6x3xVHGOISeQ==)
304
+  (0.1ms) SAVEPOINT active_record_1
305
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "EUTb4CcbHeq6q6BmqhHxLR96"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.552511"]]
306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
307
+ Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
308
+ Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
309
+ Parameters: {"locale"=>"de", "id"=>"1"}
310
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
311
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
312
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.2ms)
313
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
314
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
315
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
316
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
317
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
318
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
319
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
320
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
321
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
322
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.7ms)
323
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
324
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.7ms)
325
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (66.6ms)
326
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
327
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
328
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
329
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
330
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
331
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
332
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
333
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
334
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
335
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.1ms)
336
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
337
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
338
+ Completed 200 OK in 100ms (Views: 84.9ms | ActiveRecord: 0.5ms)
339
+  (0.2ms) rollback transaction
340
+  (0.1ms) begin transaction
341
+  Disk Storage (0.5ms) Uploaded file to key: yiDXXQ9GkMUnaSpW4xNiMgG8 (checksum: LRgZFfo35M6x3xVHGOISeQ==)
342
+  (0.1ms) SAVEPOINT active_record_1
343
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "yiDXXQ9GkMUnaSpW4xNiMgG8"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:14.665681"]]
344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
345
+ Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
346
+ Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
347
+ Parameters: {"locale"=>"de", "id"=>"1"}
348
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
349
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
350
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
351
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
352
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
353
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
354
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
355
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
356
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
357
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
358
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
359
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
360
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.0ms)
361
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
362
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.1ms)
363
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (9.4ms)
364
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
365
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
366
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
367
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
368
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
369
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
370
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
371
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
372
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
373
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.5ms)
374
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
375
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
376
+ Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.5ms)
377
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
378
+ Started DELETE "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
379
+ Processing by Cmor::System::ActiveStorage::BlobsController#destroy as HTML
380
+ Parameters: {"locale"=>"de", "id"=>"1"}
381
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
382
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
383
+  (0.1ms) SAVEPOINT active_record_1
384
+ ActiveStorage::Attachment Exists (0.3ms) SELECT 1 AS one FROM "active_storage_attachments" WHERE "active_storage_attachments"."blob_id" = ? LIMIT ? [["blob_id", 1], ["LIMIT", 1]]
385
+ ActiveStorage::Blob Destroy (0.1ms) DELETE FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? [["id", 1]]
386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
387
+ ActiveStorage::Attachment Load (0.3ms) SELECT "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 ? [["record_id", 1], ["record_type", "ActiveStorage::Blob"], ["name", "preview_image"], ["LIMIT", 1]]
388
+ Redirected to http://www.example.com/de/backend/system/active_storage/blobs
389
+ Completed 302 Found in 47ms (ActiveRecord: 1.0ms)
390
+ Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
391
+ Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
392
+ Parameters: {"locale"=>"de"}
393
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
394
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
395
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
396
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (0.4ms)
397
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
398
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs"
399
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (2.4ms)
400
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
401
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
402
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.0ms)
403
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
404
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
405
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
406
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
407
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
408
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
409
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
410
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
411
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
412
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
413
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
414
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
415
+ Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.5ms)
416
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
417
+  (0.1ms) rollback transaction
418
+  (0.1ms) begin transaction
419
+ Started GET "/de/backend/system/changelogs" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
420
+ Processing by Cmor::System::ChangelogsController#index as HTML
421
+ Parameters: {"locale"=>"de"}
422
+ Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.0ms)
423
+  (0.1ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+ Started GET "/de/backend/system/changelogs/actioncable" for 127.0.0.1 at 2020-01-28 18:11:14 +0100
426
+ Processing by Cmor::System::ChangelogsController#show as HTML
427
+ Parameters: {"locale"=>"de", "id"=>"actioncable"}
428
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
429
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.2ms)
430
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_show_table.html.haml (3.5ms)
431
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
432
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
433
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
434
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (4.1ms)
435
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_after_show_table.html.haml (276.7ms)
436
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.4ms)
437
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (322.1ms)
438
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
439
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
440
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.8ms)
441
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.9ms)
442
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
443
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
444
+  (0.6ms) SELECT COUNT(*) FROM "active_storage_blobs"
445
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
446
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
447
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.3ms)
448
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
449
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
450
+ Completed 200 OK in 402ms (Views: 379.8ms | ActiveRecord: 0.9ms)
451
+  (0.1ms) rollback transaction
452
+  (0.1ms) begin transaction
453
+  (0.2ms) SAVEPOINT active_record_1
454
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.315816"], ["created_at", "2020-01-28 17:11:15.315956"], ["updated_at", "2020-01-28 17:11:15.315956"]]
455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
456
+  (0.1ms) SAVEPOINT active_record_1
457
+ Delayed::Backend::ActiveRecord::Job Create (0.2ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.318876"], ["created_at", "2020-01-28 17:11:15.318938"], ["updated_at", "2020-01-28 17:11:15.318938"]]
458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
459
+  (0.1ms) SAVEPOINT active_record_1
460
+ Delayed::Backend::ActiveRecord::Job Create (0.1ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:15.321546"], ["created_at", "2020-01-28 17:11:15.321593"], ["updated_at", "2020-01-28 17:11:15.321593"]]
461
+  (0.1ms) RELEASE SAVEPOINT active_record_1
462
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
463
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
464
+ Parameters: {"locale"=>"de"}
465
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
466
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
467
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (3.8ms)
468
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (8.4ms)
469
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
470
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.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.38.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.38.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.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
474
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
475
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.5ms)
476
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
477
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
478
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
479
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
480
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
481
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
482
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
483
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
484
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
485
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
486
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
487
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
488
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
489
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
490
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
491
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
492
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
493
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
494
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
495
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
496
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
497
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
498
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
499
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
500
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
501
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
502
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
503
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
504
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
505
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
506
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (30.4ms)
507
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
508
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.4ms)
509
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (128.7ms)
510
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
511
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
512
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
513
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
514
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
515
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
516
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
517
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
518
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
519
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.1ms)
520
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
521
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
522
+ Completed 200 OK in 198ms (Views: 182.0ms | ActiveRecord: 0.6ms)
523
+  (0.2ms) rollback transaction
524
+  (0.1ms) begin transaction
525
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/new" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
526
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#new as HTML
527
+ Parameters: {"locale"=>"de"}
528
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application
529
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (3.8ms)
530
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (45.8ms)
531
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (3.1ms)
532
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_new_actions.html.haml (3.7ms)
533
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application (346.9ms)
534
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
535
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
536
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
537
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
538
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
539
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
540
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
541
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
542
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
543
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
544
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
545
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
546
+ Completed 200 OK in 395ms (Views: 362.9ms | ActiveRecord: 0.4ms)
547
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
548
+ Started POST "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:15 +0100
549
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#create as HTML
550
+ Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"11", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"11", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"11", "locked_by"=>"", "queue"=>""}, "commit"=>"Hintergrundjob erstellen", "locale"=>"de"}
551
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
552
+  (0.1ms) SAVEPOINT active_record_1
553
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "last_error", "run_at", "locked_at", "failed_at", "locked_by", "queue", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["handler", ""], ["last_error", ""], ["run_at", "2020-01-28 17:11:00"], ["locked_at", "2020-01-28 17:11:00"], ["failed_at", "2020-01-28 17:11:00"], ["locked_by", ""], ["queue", ""], ["created_at", "2020-01-28 17:11:15.963416"], ["updated_at", "2020-01-28 17:11:15.963416"]]
554
+  (0.1ms) RELEASE SAVEPOINT active_record_1
555
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
556
+ Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
557
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
558
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
559
+ Parameters: {"locale"=>"de", "id"=>"1"}
560
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
561
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
562
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
563
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
564
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
565
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
566
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
567
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
568
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
569
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
570
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
571
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
572
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
573
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
574
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
575
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
576
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
577
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
578
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
579
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (6.3ms)
580
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (61.1ms)
581
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
582
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
583
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
584
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
585
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
586
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
587
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
588
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
589
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
590
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
591
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
592
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
593
+ Completed 200 OK in 91ms (Views: 76.0ms | ActiveRecord: 0.6ms)
594
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
595
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY "delayed_jobs"."id" DESC LIMIT ? [["LIMIT", 1]]
596
+  (0.1ms) rollback transaction
597
+  (0.1ms) begin transaction
598
+  (0.1ms) SAVEPOINT active_record_1
599
+ Delayed::Backend::ActiveRecord::Job Create (0.2ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.129623"], ["created_at", "2020-01-28 17:11:16.129682"], ["updated_at", "2020-01-28 17:11:16.129682"]]
600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
601
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
602
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
603
+ Parameters: {"locale"=>"de", "id"=>"1"}
604
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
605
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
606
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
607
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
608
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
609
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
610
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
611
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
612
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
613
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
614
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
615
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
616
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
617
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
618
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
619
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
620
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.5ms)
621
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
622
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.6ms)
623
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (12.1ms)
624
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
625
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
626
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
627
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
628
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.2ms)
629
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
630
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_blobs"
631
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_attachments"
632
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
633
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.1ms)
634
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
635
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
636
+ Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 0.7ms)
637
+  (0.2ms) rollback transaction
638
+  (0.1ms) begin transaction
639
+  (0.1ms) SAVEPOINT active_record_1
640
+ Delayed::Backend::ActiveRecord::Job Create (0.4ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.177451"], ["created_at", "2020-01-28 17:11:16.177513"], ["updated_at", "2020-01-28 17:11:16.177513"]]
641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
642
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1/edit" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
643
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#edit as HTML
644
+ Parameters: {"locale"=>"de", "id"=>"1"}
645
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
646
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application
647
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (0.1ms)
648
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (30.5ms)
649
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (0.8ms)
650
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_edit_actions.html.haml (5.2ms)
651
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application (78.0ms)
652
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
653
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
654
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
655
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
656
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
657
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
658
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
659
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
660
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
661
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.1ms)
662
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
663
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
664
+ Completed 200 OK in 128ms (Views: 94.8ms | ActiveRecord: 0.5ms)
665
+ Started PATCH "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
666
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#update as HTML
667
+ Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"handler", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"11", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"11", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"11", "locked_by"=>"", "queue"=>"different_queue"}, "commit"=>"Hintergrundjob aktualisieren", "locale"=>"de", "id"=>"1"}
668
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
669
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
670
+  (0.1ms) SAVEPOINT active_record_1
671
+ Delayed::Backend::ActiveRecord::Job Update (0.2ms) UPDATE "delayed_jobs" SET "last_error" = ?, "locked_by" = ?, "queue" = ?, "run_at" = ?, "locked_at" = ?, "failed_at" = ?, "updated_at" = ? WHERE "delayed_jobs"."id" = ? [["last_error", ""], ["locked_by", ""], ["queue", "different_queue"], ["run_at", "2020-01-28 17:11:00"], ["locked_at", "2020-01-28 17:11:00"], ["failed_at", "2020-01-28 17:11:00"], ["updated_at", "2020-01-28 17:11:16.352935"], ["id", 1]]
672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
673
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
674
+ Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
675
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
676
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
677
+ Parameters: {"locale"=>"de", "id"=>"1"}
678
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
679
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
680
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
681
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
682
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
683
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
684
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
685
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
686
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
687
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
688
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
689
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
690
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
691
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
692
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
693
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
694
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
695
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.3ms)
696
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
697
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
698
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.5ms)
699
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
700
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
701
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
702
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
703
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
704
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
705
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
706
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
707
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
708
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
709
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
710
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
711
+ Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.4ms)
712
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
713
+  (0.1ms) rollback transaction
714
+  (0.1ms) begin transaction
715
+  (0.1ms) SAVEPOINT active_record_1
716
+ Delayed::Backend::ActiveRecord::Job Create (0.2ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.456692"], ["created_at", "2020-01-28 17:11:16.456747"], ["updated_at", "2020-01-28 17:11:16.456747"]]
717
+  (0.1ms) RELEASE SAVEPOINT active_record_1
718
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
719
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
720
+ Parameters: {"locale"=>"de", "id"=>"1"}
721
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
722
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
723
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
724
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
725
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
726
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
727
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
728
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
729
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
730
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
731
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
732
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
733
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
734
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
735
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
736
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
737
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
738
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
739
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.6ms)
740
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.9ms)
741
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
742
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
743
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
744
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.6ms)
745
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
746
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
747
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
748
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
749
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
750
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
751
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
752
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
753
+ Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.5ms)
754
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
755
+ Started DELETE "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
756
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#destroy as HTML
757
+ Parameters: {"locale"=>"de", "id"=>"1"}
758
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
759
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
760
+  (0.1ms) SAVEPOINT active_record_1
761
+ Delayed::Backend::ActiveRecord::Job Destroy (0.1ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 1]]
762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
763
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs
764
+ Completed 302 Found in 19ms (ActiveRecord: 0.4ms)
765
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:11:16 +0100
766
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
767
+ Parameters: {"locale"=>"de"}
768
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
769
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
770
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
771
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (0.6ms)
772
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (0.1ms)
773
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
774
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.0ms)
775
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
776
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.6ms)
777
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (8.0ms)
778
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
779
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
780
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
781
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
782
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
783
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
784
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
785
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_attachments"
786
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
787
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.2ms)
788
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
789
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
790
+ Completed 200 OK in 40ms (Views: 37.3ms | ActiveRecord: 0.5ms)
791
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
792
+  (0.2ms) rollback transaction
793
+  (0.1ms) begin transaction
794
+  (0.1ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+  (0.1ms) rollback transaction
797
+  (0.1ms) begin transaction
798
+  (0.0ms) rollback transaction
799
+  (0.1ms) begin transaction
800
+  (0.1ms) rollback transaction
801
+  (0.1ms) begin transaction
802
+  (0.0ms) rollback transaction
803
+  (0.1ms) begin transaction
804
+  (0.1ms) rollback transaction
805
+  (0.1ms) begin transaction
806
+  (0.1ms) rollback transaction
807
+  (0.1ms) begin transaction
808
+  (0.2ms) rollback transaction
809
+  (0.1ms) begin transaction
810
+  (0.1ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+  (0.2ms) rollback transaction
813
+  (0.1ms) begin transaction
814
+  (0.1ms) rollback transaction
815
+  (0.1ms) begin transaction
816
+  (0.1ms) rollback transaction
817
+  (0.1ms) begin transaction
818
+  Disk Storage (0.7ms) Uploaded file to key: dTnXwvBxb5q1sz4V9RoFEY9f (checksum: LRgZFfo35M6x3xVHGOISeQ==)
819
+  (0.1ms) rollback transaction
820
+  (0.2ms) begin transaction
821
+  Disk Storage (1.2ms) Uploaded file to key: sZoX6LX7LPetJEHdVyYSnShV (checksum: LRgZFfo35M6x3xVHGOISeQ==)
822
+  (0.2ms) SAVEPOINT active_record_1
823
+ Post Create (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:11:16.778490"], ["updated_at", "2020-01-28 17:11:16.778490"]]
824
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "sZoX6LX7LPetJEHdVyYSnShV"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:16.780606"]]
825
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:11:16.782549"]]
826
+ Post Update (0.2ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:11:16.783720"], ["id", 1]]
827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
828
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) to Async(default) with arguments: #<GlobalID:0x005636d2258550 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
829
+ ActiveStorage::Blob Load (1.7ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
830
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Performing ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) from Async(default) with arguments: #<GlobalID:0x005636d2255cb0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
831
+  (0.2ms) rollback transaction
832
+  (0.1ms) begin transaction
833
+  (0.1ms) rollback transaction
834
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0]  Disk Storage (7.2ms) Downloaded file from key: sZoX6LX7LPetJEHdVyYSnShV
835
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Skipping image analysis because the mini_magick gem isn't installed
836
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0]  (0.1ms) begin transaction
837
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
838
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0]  (0.1ms) commit transaction
839
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [4ab84466-137c-487f-aa5e-0df1a34fe9d0] Performed ActiveStorage::AnalyzeJob (Job ID: 4ab84466-137c-487f-aa5e-0df1a34fe9d0) from Async(default) in 17.6ms
840
+  (0.1ms) begin transaction
841
+  (0.1ms) rollback transaction
842
+  (0.1ms) begin transaction
843
+  Disk Storage (1.0ms) Uploaded file to key: pNptiSgGcoegZMiaAvcETCth (checksum: LRgZFfo35M6x3xVHGOISeQ==)
844
+  (0.1ms) rollback transaction
845
+  (0.1ms) begin transaction
846
+  Disk Storage (0.7ms) Uploaded file to key: C8G5cFjPsZN2Q9Ydx2CJ3dzQ (checksum: LRgZFfo35M6x3xVHGOISeQ==)
847
+  (0.1ms) SAVEPOINT active_record_1
848
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "C8G5cFjPsZN2Q9Ydx2CJ3dzQ"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:11:16.899674"]]
849
+  (0.1ms) RELEASE SAVEPOINT active_record_1
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+  (0.1ms) rollback transaction
853
+  (0.1ms) begin transaction
854
+  (0.0ms) rollback transaction
855
+  (0.1ms) begin transaction
856
+  (0.1ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+  (0.1ms) SAVEPOINT active_record_1
859
+ Delayed::Backend::ActiveRecord::Job Create (0.4ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:11:16.929600"], ["created_at", "2020-01-28 17:11:16.929812"], ["updated_at", "2020-01-28 17:11:16.929812"]]
860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
861
+  (0.1ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+  (0.1ms) rollback transaction
864
+  (0.1ms) begin transaction
865
+  (0.1ms) rollback transaction
866
+  (0.2ms) begin transaction
867
+  (0.1ms) rollback transaction
868
+  (0.2ms) begin transaction
869
+  (0.2ms) rollback transaction
870
+  (0.2ms) begin transaction
871
+  (0.1ms) rollback transaction
872
+  (0.6ms) begin transaction
873
+  (0.1ms) rollback transaction
874
+  (0.2ms) begin transaction
875
+  (0.1ms) rollback transaction
876
+  (0.1ms) begin transaction
877
+  (0.1ms) rollback transaction
878
+  (0.2ms) begin transaction
879
+  (0.1ms) rollback transaction
880
+  (0.2ms) begin transaction
881
+  (0.2ms) rollback transaction
882
+  (0.1ms) begin transaction
883
+  (0.1ms) rollback transaction
884
+  (0.1ms) begin transaction
885
+  (0.1ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+  (0.1ms) rollback transaction
888
+  (0.1ms) begin transaction
889
+  (0.1ms) rollback transaction
890
+  (0.1ms) begin transaction
891
+  (0.1ms) rollback transaction
892
+  (0.1ms) begin transaction
893
+  (0.1ms) rollback transaction
894
+  (0.1ms) begin transaction
895
+  (0.1ms) rollback transaction
896
+  (0.1ms) begin transaction
897
+  (0.1ms) rollback transaction
898
+  (0.1ms) begin transaction
899
+  (0.1ms) rollback transaction
900
+  (0.1ms) begin transaction
901
+  (0.1ms) rollback transaction
902
+  (0.1ms) begin transaction
903
+  (0.1ms) rollback transaction
904
+  (0.2ms) begin transaction
905
+  (0.2ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+  (0.1ms) rollback transaction
908
+  (0.2ms) begin transaction
909
+  (0.1ms) rollback transaction
910
+  (0.1ms) begin transaction
911
+  (0.1ms) rollback transaction
912
+  (0.2ms) begin transaction
913
+  (0.1ms) rollback transaction
914
+  (0.2ms) begin transaction
915
+  (0.2ms) rollback transaction
916
+  (0.1ms) begin transaction
917
+  (0.1ms) rollback transaction
918
+  (0.3ms) begin transaction
919
+  (0.1ms) rollback transaction
920
+  (0.2ms) begin transaction
921
+  (0.3ms) rollback transaction
922
+  (0.2ms) begin transaction
923
+  (0.1ms) rollback transaction
924
+  (0.2ms) begin transaction
925
+  (0.2ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+  (0.1ms) rollback transaction
928
+  (0.1ms) begin transaction
929
+  (0.1ms) rollback transaction
930
+  (0.1ms) begin transaction
931
+  (0.1ms) rollback transaction
932
+  (0.1ms) begin transaction
933
+  (0.1ms) rollback transaction
934
+  (0.1ms) begin transaction
935
+  (0.1ms) rollback transaction
936
+  (0.1ms) begin transaction
937
+  (0.1ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+  (0.2ms) rollback transaction
940
+  (0.1ms) begin transaction
941
+  (0.1ms) rollback transaction
942
+  (0.1ms) begin transaction
943
+  (0.1ms) rollback transaction
944
+  (0.1ms) begin transaction
945
+  (0.1ms) rollback transaction
946
+  (0.1ms) begin transaction
947
+  (0.1ms) rollback transaction
948
+  (0.1ms) begin transaction
949
+  (0.1ms) rollback transaction
950
+  (0.1ms) begin transaction
951
+  (0.1ms) rollback transaction
952
+  (0.1ms) begin transaction
953
+  (0.1ms) rollback transaction
954
+  (0.1ms) begin transaction
955
+  (0.2ms) rollback transaction
956
+  (0.1ms) begin transaction
957
+  (0.1ms) rollback transaction
958
+  (0.1ms) begin transaction
959
+  (0.1ms) rollback transaction
960
+  (0.1ms) begin transaction
961
+  (0.1ms) rollback transaction
962
+  (0.2ms) begin transaction
963
+  (0.1ms) rollback transaction
964
+  (0.2ms) begin transaction
965
+  (0.1ms) rollback transaction
966
+  (0.2ms) begin transaction
967
+  (0.1ms) rollback transaction
968
+  (0.2ms) begin transaction
969
+  (0.1ms) rollback transaction
970
+  (0.2ms) begin transaction
971
+  (0.2ms) rollback transaction
972
+  (0.3ms) begin transaction
973
+  (0.1ms) rollback transaction
974
+  (0.4ms) begin transaction
975
+  (0.1ms) rollback transaction
976
+  (0.2ms) begin transaction
977
+  (0.1ms) rollback transaction
978
+  (0.2ms) begin transaction
979
+  (0.1ms) rollback transaction
980
+  (0.2ms) begin transaction
981
+  (0.1ms) rollback transaction
982
+  (0.1ms) begin transaction
983
+  (0.1ms) rollback transaction
984
+  (0.2ms) begin transaction
985
+  (0.1ms) rollback transaction
986
+  (0.2ms) begin transaction
987
+  (0.1ms) rollback transaction
988
+  (0.2ms) begin transaction
989
+  (0.1ms) rollback transaction
990
+  (0.1ms) begin transaction
991
+  (0.1ms) rollback transaction
992
+  (0.2ms) begin transaction
993
+  (0.1ms) rollback transaction
994
+  (0.3ms) begin transaction
995
+  (0.1ms) rollback transaction
996
+  (0.1ms) begin transaction
997
+  (0.1ms) SAVEPOINT active_record_1
998
+ Post Create (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:12.832601"], ["updated_at", "2020-01-28 17:15:12.832601"]]
999
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1000
+  Disk Storage (0.7ms) Uploaded file to key: d72AwmhJ3n4AE3yMtCBWLKzC (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1001
+  (0.1ms) SAVEPOINT active_record_1
1002
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "d72AwmhJ3n4AE3yMtCBWLKzC"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:12.979867"]]
1003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.1ms) SAVEPOINT active_record_1
1005
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:12.986830"]]
1006
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:12.988334"], ["id", 1]]
1007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1008
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) to Async(default) with arguments: #<GlobalID:0x005599491e58d8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1009
+ ActiveStorage::Blob Load (1.5ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1010
+  (0.1ms) SAVEPOINT active_record_1
1011
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Performing ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) from Async(default) with arguments: #<GlobalID:0x00559948f89620 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1012
+ Post Create (0.2ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:13.011516"], ["updated_at", "2020-01-28 17:15:13.011516"]]
1013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1014
+  Disk Storage (0.6ms) Uploaded file to key: xxXPp1mpoasrBznSKYn4dBAn (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1015
+  (0.1ms) SAVEPOINT active_record_1
1016
+ ActiveStorage::Blob Create (0.1ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "xxXPp1mpoasrBznSKYn4dBAn"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:13.017112"]]
1017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1018
+  (0.1ms) SAVEPOINT active_record_1
1019
+ ActiveStorage::Attachment Create (0.1ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 2], ["blob_id", 2], ["created_at", "2020-01-28 17:15:13.019615"]]
1020
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:13.020810"], ["id", 2]]
1021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) to Async(default) with arguments: #<GlobalID:0x00559947f872e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
1023
+  (0.1ms) SAVEPOINT active_record_1
1024
+ Post Create (0.1ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:13.023742"], ["updated_at", "2020-01-28 17:15:13.023742"]]
1025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1026
+ ActiveStorage::Blob Load (0.2ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
1027
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Performing ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) from Async(default) with arguments: #<GlobalID:0x0055994658b238 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
1028
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd]  Disk Storage (3.7ms) Downloaded file from key: d72AwmhJ3n4AE3yMtCBWLKzC
1029
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Skipping image analysis because the mini_magick gem isn't installed
1030
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd]  (0.1ms) SAVEPOINT active_record_1
1031
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
1032
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978]  Disk Storage (8.7ms) Downloaded file from key: xxXPp1mpoasrBznSKYn4dBAn
1033
+  Disk Storage (10.1ms) Uploaded file to key: JbJaAhVpr1V51SxJTyM3D2zF (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1034
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd]  (0.1ms) RELEASE SAVEPOINT active_record_1
1035
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Skipping image analysis because the mini_magick gem isn't installed
1036
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [a8c1f951-2c1e-47a8-80c6-f263d1cd51bd] Performed ActiveStorage::AnalyzeJob (Job ID: a8c1f951-2c1e-47a8-80c6-f263d1cd51bd) from Async(default) in 34.92ms
1037
+  (0.1ms) SAVEPOINT active_record_1
1038
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "JbJaAhVpr1V51SxJTyM3D2zF"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:13.048608"]]
1039
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1040
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978]  (0.0ms) SAVEPOINT active_record_1
1041
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 2]]
1042
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978]  (0.1ms) RELEASE SAVEPOINT active_record_1
1043
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [e873d92a-9ff4-4664-b0a2-eafab4e35978] Performed ActiveStorage::AnalyzeJob (Job ID: e873d92a-9ff4-4664-b0a2-eafab4e35978) from Async(default) in 18.99ms
1044
+  (0.1ms) SAVEPOINT active_record_1
1045
+ ActiveStorage::Attachment Create (0.1ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 3], ["blob_id", 3], ["created_at", "2020-01-28 17:15:13.053612"]]
1046
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:13.054787"], ["id", 3]]
1047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1048
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) to Async(default) with arguments: #<GlobalID:0x00559947b696e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
1049
+ Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:15:13 +0100
1050
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
1051
+ Parameters: {"locale"=>"de"}
1052
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
1053
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1054
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Performing ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) from Async(default) with arguments: #<GlobalID:0x00559948ef1348 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/3>>
1055
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (3.3ms)
1056
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8]  Disk Storage (46.8ms) Downloaded file from key: JbJaAhVpr1V51SxJTyM3D2zF
1057
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Skipping image analysis because the mini_magick gem isn't installed
1058
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8]  (0.2ms) SAVEPOINT active_record_1
1059
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 3]]
1060
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8]  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [d52d29e9-0e93-4a37-93af-0625e5c419a8] Performed ActiveStorage::AnalyzeJob (Job ID: d52d29e9-0e93-4a37-93af-0625e5c419a8) from Async(default) in 58.08ms
1062
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (3.1ms)
1063
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (10.8ms)
1064
+ ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments"
1065
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (2.5ms)
1066
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1067
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (9.0ms)
1068
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1069
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1070
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1071
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
1072
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.1ms)
1073
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
1074
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1075
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1076
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
1077
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (1.1ms)
1078
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
1079
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1080
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (48.7ms)
1081
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (2.2ms)
1082
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (3.1ms)
1083
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (308.6ms)
1084
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (2.3ms)
1085
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1086
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (19.1ms)
1087
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (6.1ms)
1088
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (3.5ms)
1089
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1090
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1091
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1092
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1093
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (49.4ms)
1094
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1095
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (5.2ms)
1096
+ Completed 200 OK in 1098ms (Views: 1054.2ms | ActiveRecord: 1.1ms)
1097
+  (0.3ms) rollback transaction
1098
+  (0.1ms) begin transaction
1099
+  (0.1ms) SAVEPOINT active_record_1
1100
+ Post Create (0.3ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:14.267044"], ["updated_at", "2020-01-28 17:15:14.267044"]]
1101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1102
+  Disk Storage (0.6ms) Uploaded file to key: BvRwN2rrUPcdfd8n1gDqFawB (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1103
+  (0.1ms) SAVEPOINT active_record_1
1104
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "BvRwN2rrUPcdfd8n1gDqFawB"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.271589"]]
1105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1106
+  (0.1ms) SAVEPOINT active_record_1
1107
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:14.274137"]]
1108
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:14.275381"], ["id", 1]]
1109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1110
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) to Async(default) with arguments: #<GlobalID:0x007f17f450eac0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1111
+ Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
1112
+ ActiveStorage::Blob Load (4.2ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1113
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Performing ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) from Async(default) with arguments: #<GlobalID:0x0055994d24ede8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1114
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
1115
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5]  Disk Storage (14.4ms) Downloaded file from key: BvRwN2rrUPcdfd8n1gDqFawB
1116
+ Parameters: {"locale"=>"de", "id"=>"1"}
1117
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Skipping image analysis because the mini_magick gem isn't installed
1118
+ ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1119
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1120
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5]  (0.1ms) SAVEPOINT active_record_1
1121
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
1122
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5]  (0.2ms) RELEASE SAVEPOINT active_record_1
1123
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5] Performed ActiveStorage::AnalyzeJob (Job ID: 7ce9f0bc-913b-4c35-89a1-7b1cf3fcc6c5) from Async(default) in 70.53ms
1124
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1125
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (2.2ms)
1126
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (3.1ms)
1127
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1128
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1129
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1130
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1131
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (5.3ms)
1132
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.3ms)
1133
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1134
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (26.9ms)
1135
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (2.2ms)
1136
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (5.8ms)
1137
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (216.5ms)
1138
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1139
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1140
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1141
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1142
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1143
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1144
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1145
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1146
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1147
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
1148
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1149
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1150
+ Completed 200 OK in 265ms (Views: 232.5ms | ActiveRecord: 0.8ms)
1151
+  (0.2ms) rollback transaction
1152
+  (0.1ms) begin transaction
1153
+  (0.1ms) SAVEPOINT active_record_1
1154
+ Post Create (0.3ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:14.584575"], ["updated_at", "2020-01-28 17:15:14.584575"]]
1155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1156
+  Disk Storage (0.7ms) Uploaded file to key: kc6tSy4nscztYUiueCfAGegB (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1157
+  (0.1ms) SAVEPOINT active_record_1
1158
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "kc6tSy4nscztYUiueCfAGegB"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.612841"]]
1159
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1160
+  (0.1ms) SAVEPOINT active_record_1
1161
+ ActiveStorage::Attachment Create (0.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:14.615262"]]
1162
+ Post Update (0.1ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:14.616429"], ["id", 1]]
1163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1164
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) to Async(default) with arguments: #<GlobalID:0x0055994dcd9da8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1165
+ Started GET "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
1166
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#show as HTML
1167
+ Parameters: {"locale"=>"de", "id"=>"1"}
1168
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1169
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1170
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1171
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Performing ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) from Async(default) with arguments: #<GlobalID:0x0055994d2207e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
1172
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1173
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1174
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
1175
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1176
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1177
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1178
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1179
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (1.4ms)
1180
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_association.html.haml (0.2ms)
1181
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1182
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.5ms)
1183
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
1184
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.2ms)
1185
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (13.0ms)
1186
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1187
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1188
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1189
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1190
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1191
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1192
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_blobs"
1193
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1194
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1195
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.9ms)
1196
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1197
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1198
+ Completed 200 OK in 34ms (Views: 30.6ms | ActiveRecord: 0.9ms)
1199
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1200
+ Started DELETE "/de/backend/system/active_storage/attachments/1" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
1201
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#destroy as HTML
1202
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae]  Disk Storage (17.4ms) Downloaded file from key: kc6tSy4nscztYUiueCfAGegB
1203
+ Parameters: {"locale"=>"de", "id"=>"1"}
1204
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Skipping image analysis because the mini_magick gem isn't installed
1205
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1206
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
1207
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae]  (0.1ms) SAVEPOINT active_record_1
1208
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] ActiveStorage::Blob Update (0.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
1209
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae]  (0.1ms) RELEASE SAVEPOINT active_record_1
1210
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [60958fee-3bc4-4c5b-aa5f-dc606f76c7ae] Performed ActiveStorage::AnalyzeJob (Job ID: 60958fee-3bc4-4c5b-aa5f-dc606f76c7ae) from Async(default) in 63.28ms
1211
+  (0.1ms) SAVEPOINT active_record_1
1212
+ ActiveStorage::Attachment Destroy (0.2ms) DELETE FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? [["id", 1]]
1213
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1214
+ Post Update (0.2ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:14.691805"], ["id", 1]]
1215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1216
+ Redirected to http://www.example.com/de/backend/system/active_storage/attachments
1217
+ Completed 302 Found in 75ms (ActiveRecord: 0.8ms)
1218
+ Started GET "/de/backend/system/active_storage/attachments" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
1219
+ Processing by Cmor::System::ActiveStorage::AttachmentsController#index as HTML
1220
+ Parameters: {"locale"=>"de"}
1221
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/attachments/1]
1222
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1223
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
1224
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/attachments/_index_table.html.haml (0.2ms)
1225
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
1226
+ ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments"
1227
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (1.5ms)
1228
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.0ms)
1229
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
1230
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (5.1ms)
1231
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1232
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1233
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1234
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
1235
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1236
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1237
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1238
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1239
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1240
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.7ms)
1241
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1242
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1243
+ Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.4ms)
1244
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1245
+  (0.2ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+  Disk Storage (0.6ms) Uploaded file to key: UFZpwtMcXFWg4DobzR39hofU (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1248
+  (0.1ms) SAVEPOINT active_record_1
1249
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "UFZpwtMcXFWg4DobzR39hofU"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.795125"]]
1250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1251
+  Disk Storage (0.6ms) Uploaded file to key: V1afuALSJzpRpCifsnAeQWiE (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1252
+  (0.1ms) SAVEPOINT active_record_1
1253
+ ActiveStorage::Blob Create (0.1ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "V1afuALSJzpRpCifsnAeQWiE"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.799699"]]
1254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1255
+  Disk Storage (0.6ms) Uploaded file to key: mQL8JjXA8QsYTKkZcq7wH2er (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1256
+  (0.1ms) SAVEPOINT active_record_1
1257
+ ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "mQL8JjXA8QsYTKkZcq7wH2er"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:14.835196"]]
1258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1259
+ Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:15:14 +0100
1260
+ Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
1261
+ Parameters: {"locale"=>"de"}
1262
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1263
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
1264
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (5.7ms)
1265
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
1266
+ ActiveStorage::Blob Load (0.3ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs"
1267
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1268
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1269
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1270
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1271
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1272
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1273
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1274
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1275
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1276
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1277
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1278
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1279
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (36.9ms)
1280
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
1281
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
1282
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (106.0ms)
1283
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1284
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1285
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1286
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
1287
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1288
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1289
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1290
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1291
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1292
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
1293
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1294
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1295
+ Completed 200 OK in 162ms (Views: 147.3ms | ActiveRecord: 0.6ms)
1296
+  (0.2ms) rollback transaction
1297
+  (0.1ms) begin transaction
1298
+  Disk Storage (0.6ms) Uploaded file to key: meso4MFkX8A2P1EJDurmGKhE (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1299
+  (0.1ms) SAVEPOINT active_record_1
1300
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "meso4MFkX8A2P1EJDurmGKhE"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:15.011239"]]
1301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
+ Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1303
+ Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
1304
+ Parameters: {"locale"=>"de", "id"=>"1"}
1305
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1306
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1307
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1308
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
1309
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1310
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1311
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1312
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1313
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1314
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1315
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
1316
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1317
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (6.6ms)
1318
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
1319
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.2ms)
1320
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (65.1ms)
1321
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1322
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1323
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1324
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1325
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1326
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1327
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1328
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1329
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1330
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
1331
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1332
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1333
+ Completed 200 OK in 94ms (Views: 80.7ms | ActiveRecord: 0.4ms)
1334
+  (0.2ms) rollback transaction
1335
+  (0.1ms) begin transaction
1336
+  Disk Storage (0.7ms) Uploaded file to key: JpBNdvYnjnikW4UqycMs6S56 (checksum: LRgZFfo35M6x3xVHGOISeQ==)
1337
+  (0.1ms) SAVEPOINT active_record_1
1338
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "JpBNdvYnjnikW4UqycMs6S56"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:15.118336"]]
1339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1340
+ Started GET "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1341
+ Processing by Cmor::System::ActiveStorage::BlobsController#show as HTML
1342
+ Parameters: {"locale"=>"de", "id"=>"1"}
1343
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1344
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1345
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1346
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.2ms)
1347
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1348
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1349
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1350
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1351
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1352
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1353
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1354
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1355
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (5.4ms)
1356
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
1357
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.4ms)
1358
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (10.0ms)
1359
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1360
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1361
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1362
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.4ms)
1363
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1364
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1365
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1366
+  (0.5ms) SELECT COUNT(*) FROM "active_storage_attachments"
1367
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1368
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (7.8ms)
1369
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1370
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
1371
+ Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.8ms)
1372
+  (0.3ms) SELECT COUNT(*) FROM "active_storage_blobs"
1373
+ Started DELETE "/de/backend/system/active_storage/blobs/1" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1374
+ Processing by Cmor::System::ActiveStorage::BlobsController#destroy as HTML
1375
+ Parameters: {"locale"=>"de", "id"=>"1"}
1376
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1377
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
1378
+  (0.1ms) SAVEPOINT active_record_1
1379
+ ActiveStorage::Attachment Exists (0.2ms) SELECT 1 AS one FROM "active_storage_attachments" WHERE "active_storage_attachments"."blob_id" = ? LIMIT ? [["blob_id", 1], ["LIMIT", 1]]
1380
+ ActiveStorage::Blob Destroy (0.1ms) DELETE FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? [["id", 1]]
1381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1382
+ ActiveStorage::Attachment Load (0.3ms) SELECT "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 ? [["record_id", 1], ["record_type", "ActiveStorage::Blob"], ["name", "preview_image"], ["LIMIT", 1]]
1383
+ Redirected to http://www.example.com/de/backend/system/active_storage/blobs
1384
+ Completed 302 Found in 52ms (ActiveRecord: 1.0ms)
1385
+ Started GET "/de/backend/system/active_storage/blobs" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1386
+ Processing by Cmor::System::ActiveStorage::BlobsController#index as HTML
1387
+ Parameters: {"locale"=>"de"}
1388
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/active_storage/blobs/1]
1389
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1390
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
1391
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/active_storage/blobs/_index_table.html.haml (0.5ms)
1392
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.1ms)
1393
+ ActiveStorage::Blob Load (0.1ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs"
1394
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.0ms)
1395
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
1396
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
1397
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (9.0ms)
1398
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1399
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1400
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1401
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
1402
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1403
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1404
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1405
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1406
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1407
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
1408
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1409
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1410
+ Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.5ms)
1411
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1412
+  (0.2ms) rollback transaction
1413
+  (0.1ms) begin transaction
1414
+ Started GET "/de/backend/system/changelogs" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1415
+ Processing by Cmor::System::ChangelogsController#index as HTML
1416
+ Parameters: {"locale"=>"de"}
1417
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1418
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.2ms)
1419
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_index_table.html.haml (14.1ms)
1420
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table_actions.html.haml (0.2ms)
1421
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1422
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1423
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1424
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1425
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1426
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1427
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1428
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1429
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1430
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1431
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1432
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1433
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1434
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1435
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.7ms)
1436
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1437
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1438
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1439
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1440
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1441
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1442
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1443
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1444
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1445
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1446
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1447
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1448
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1449
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1450
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1451
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1452
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1453
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1454
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1455
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1456
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1457
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1458
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1459
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1460
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1461
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (7.3ms)
1462
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1463
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1464
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1465
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1466
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1467
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1468
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1469
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1470
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1471
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1472
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1473
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1474
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1475
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1476
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1477
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1478
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1479
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1480
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1481
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1482
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1483
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1484
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1485
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1486
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1487
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1488
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1489
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1490
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1491
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1492
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1493
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1494
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1495
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1496
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1497
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1498
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1499
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1500
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1501
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1502
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1503
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1504
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1505
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1506
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1507
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1508
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1509
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1510
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
1511
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1512
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1513
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1514
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1515
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1516
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1517
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1518
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1519
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1520
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1521
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1522
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1523
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1524
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1525
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1526
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1527
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1528
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1529
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1530
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1531
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1532
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1533
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
1534
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1535
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1536
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1537
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1538
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1539
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1540
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
1541
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1542
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1543
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1544
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1545
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1546
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1547
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1548
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1549
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1550
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1551
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1552
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1553
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1554
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1555
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1556
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1557
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1558
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1559
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1560
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1561
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1562
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1563
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1564
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1565
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1566
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1567
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1568
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1569
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1570
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1571
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1572
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1573
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1574
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1575
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1576
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1577
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1578
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1579
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1580
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1581
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1582
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1583
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1584
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1585
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1586
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1587
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1588
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1589
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1590
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1591
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1592
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1593
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1594
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1595
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1596
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1597
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1598
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1599
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1600
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1601
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1602
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1603
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1604
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1605
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1606
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1607
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1608
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1609
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1610
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1611
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1612
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1613
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1614
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1615
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1616
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1617
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1618
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1619
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1620
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.6ms)
1621
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1622
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1623
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1624
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1625
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1626
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1627
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1628
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1629
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1630
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1631
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1632
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1633
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1634
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1635
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.0ms)
1636
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (198.2ms)
1637
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
1638
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.1ms)
1639
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (278.8ms)
1640
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1641
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1642
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1643
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
1644
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1645
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1646
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1647
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1648
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1649
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.7ms)
1650
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1651
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1652
+ Completed 200 OK in 347ms (Views: 325.2ms | ActiveRecord: 0.4ms)
1653
+  (0.1ms) rollback transaction
1654
+  (0.1ms) begin transaction
1655
+ Started GET "/de/backend/system/changelogs/actioncable" for 127.0.0.1 at 2020-01-28 18:15:15 +0100
1656
+ Processing by Cmor::System::ChangelogsController#show as HTML
1657
+ Parameters: {"locale"=>"de", "id"=>"actioncable"}
1658
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1659
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1660
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_show_table.html.haml (3.4ms)
1661
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1662
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1663
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1664
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (2.5ms)
1665
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/changelogs/_after_show_table.html.haml (244.8ms)
1666
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_actions.html.haml (1.0ms)
1667
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (284.8ms)
1668
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.2ms)
1669
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1670
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1671
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1672
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1673
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1674
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1675
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1676
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1677
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.7ms)
1678
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1679
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1680
+ Completed 200 OK in 325ms (Views: 303.3ms | ActiveRecord: 0.4ms)
1681
+  (0.1ms) rollback transaction
1682
+  (0.1ms) begin transaction
1683
+  (0.1ms) SAVEPOINT active_record_1
1684
+ Delayed::Backend::ActiveRecord::Job Create (0.6ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.009885"], ["created_at", "2020-01-28 17:15:16.009987"], ["updated_at", "2020-01-28 17:15:16.009987"]]
1685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1686
+  (0.1ms) SAVEPOINT active_record_1
1687
+ Delayed::Backend::ActiveRecord::Job Create (0.2ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.013532"], ["created_at", "2020-01-28 17:15:16.013599"], ["updated_at", "2020-01-28 17:15:16.013599"]]
1688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1689
+  (0.1ms) SAVEPOINT active_record_1
1690
+ Delayed::Backend::ActiveRecord::Job Create (0.1ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.015552"], ["created_at", "2020-01-28 17:15:16.015591"], ["updated_at", "2020-01-28 17:15:16.015591"]]
1691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1692
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1693
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
1694
+ Parameters: {"locale"=>"de"}
1695
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
1696
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
1697
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (3.1ms)
1698
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (6.8ms)
1699
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1700
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1701
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1702
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1703
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1704
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1705
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1706
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1707
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1708
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1709
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1710
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1711
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1712
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1713
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1714
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1715
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1716
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1717
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1718
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1719
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1720
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1721
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1722
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1723
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1724
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1725
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1726
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1727
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1728
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1729
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1730
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1731
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1732
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1733
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1734
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1735
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1736
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (25.3ms)
1737
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.2ms)
1738
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.5ms)
1739
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (131.0ms)
1740
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1741
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1742
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1743
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
1744
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1745
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1746
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1747
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1748
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1749
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.4ms)
1750
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1751
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1752
+ Completed 200 OK in 191ms (Views: 176.6ms | ActiveRecord: 0.7ms)
1753
+  (0.3ms) rollback transaction
1754
+  (0.1ms) begin transaction
1755
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/new" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1756
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#new as HTML
1757
+ Parameters: {"locale"=>"de"}
1758
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application
1759
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (3.7ms)
1760
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (44.8ms)
1761
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (3.4ms)
1762
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_new_actions.html.haml (3.9ms)
1763
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/new.html.haml within layouts/administrador/application (301.5ms)
1764
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1765
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1766
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1767
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
1768
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1769
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1770
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1771
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1772
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1773
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.9ms)
1774
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1775
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1776
+ Completed 200 OK in 352ms (Views: 318.0ms | ActiveRecord: 0.3ms)
1777
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1778
+ Started POST "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1779
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#create as HTML
1780
+ Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"15", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"15", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"15", "locked_by"=>"", "queue"=>""}, "commit"=>"Hintergrundjob erstellen", "locale"=>"de"}
1781
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
1782
+  (0.1ms) SAVEPOINT active_record_1
1783
+ Delayed::Backend::ActiveRecord::Job Create (0.4ms) INSERT INTO "delayed_jobs" ("handler", "last_error", "run_at", "locked_at", "failed_at", "locked_by", "queue", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["handler", ""], ["last_error", ""], ["run_at", "2020-01-28 17:15:00"], ["locked_at", "2020-01-28 17:15:00"], ["failed_at", "2020-01-28 17:15:00"], ["locked_by", ""], ["queue", ""], ["created_at", "2020-01-28 17:15:16.606616"], ["updated_at", "2020-01-28 17:15:16.606616"]]
1784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1785
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
1786
+ Completed 302 Found in 67ms (ActiveRecord: 0.6ms)
1787
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1788
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
1789
+ Parameters: {"locale"=>"de", "id"=>"1"}
1790
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1791
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/new]
1792
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1793
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1794
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.5ms)
1795
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1796
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1797
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1798
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1799
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1800
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1801
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.3ms)
1802
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1803
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1804
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1805
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1806
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1807
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (8.5ms)
1808
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
1809
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (6.4ms)
1810
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (62.2ms)
1811
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1812
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1813
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1814
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1815
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1816
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1817
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1818
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1819
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1820
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
1821
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1822
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.1ms)
1823
+ Completed 200 OK in 94ms (Views: 77.7ms | ActiveRecord: 0.5ms)
1824
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1825
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY "delayed_jobs"."id" DESC LIMIT ? [["LIMIT", 1]]
1826
+  (0.2ms) rollback transaction
1827
+  (0.1ms) begin transaction
1828
+  (0.1ms) SAVEPOINT active_record_1
1829
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.776494"], ["created_at", "2020-01-28 17:15:16.776559"], ["updated_at", "2020-01-28 17:15:16.776559"]]
1830
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1831
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1832
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
1833
+ Parameters: {"locale"=>"de", "id"=>"1"}
1834
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1835
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1836
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1837
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
1838
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1839
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1840
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1841
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1842
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1843
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1844
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1845
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1846
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1847
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1848
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1849
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1850
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.5ms)
1851
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
1852
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
1853
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.8ms)
1854
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1855
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1856
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.1ms)
1857
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1858
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1859
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1860
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1861
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_attachments"
1862
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1863
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (6.6ms)
1864
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1865
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1866
+ Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.6ms)
1867
+  (0.2ms) rollback transaction
1868
+  (0.2ms) begin transaction
1869
+  (0.1ms) SAVEPOINT active_record_1
1870
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:16.818623"], ["created_at", "2020-01-28 17:15:16.818691"], ["updated_at", "2020-01-28 17:15:16.818691"]]
1871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1872
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1/edit" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1873
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#edit as HTML
1874
+ Parameters: {"locale"=>"de", "id"=>"1"}
1875
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1876
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application
1877
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_errors.html.haml (0.1ms)
1878
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form.html.haml (32.4ms)
1879
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_form_buttons.html.haml (0.7ms)
1880
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_edit_actions.html.haml (5.2ms)
1881
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/edit.html.haml within layouts/administrador/application (80.8ms)
1882
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
1883
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1884
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1885
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.5ms)
1886
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1887
+  (0.2ms) SELECT COUNT(*) FROM "delayed_jobs"
1888
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1889
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1890
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1891
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.0ms)
1892
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1893
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1894
+ Completed 200 OK in 133ms (Views: 97.5ms | ActiveRecord: 0.4ms)
1895
+ Started PATCH "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:16 +0100
1896
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#update as HTML
1897
+ Parameters: {"utf8"=>"✓", "delayed_backend_active_record_job"=>{"priority"=>"0", "attempts"=>"0", "handler"=>"handler", "last_error"=>"", "run_at(3i)"=>"28", "run_at(2i)"=>"1", "run_at(1i)"=>"2020", "run_at(4i)"=>"17", "run_at(5i)"=>"15", "locked_at(3i)"=>"28", "locked_at(2i)"=>"1", "locked_at(1i)"=>"2020", "locked_at(4i)"=>"17", "locked_at(5i)"=>"15", "failed_at(3i)"=>"28", "failed_at(2i)"=>"1", "failed_at(1i)"=>"2020", "failed_at(4i)"=>"17", "failed_at(5i)"=>"15", "locked_by"=>"", "queue"=>"different_queue"}, "commit"=>"Hintergrundjob aktualisieren", "locale"=>"de", "id"=>"1"}
1898
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1899
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
1900
+  (0.1ms) SAVEPOINT active_record_1
1901
+ Delayed::Backend::ActiveRecord::Job Update (0.2ms) UPDATE "delayed_jobs" SET "last_error" = ?, "locked_by" = ?, "queue" = ?, "run_at" = ?, "locked_at" = ?, "failed_at" = ?, "updated_at" = ? WHERE "delayed_jobs"."id" = ? [["last_error", ""], ["locked_by", ""], ["queue", "different_queue"], ["run_at", "2020-01-28 17:15:00"], ["locked_at", "2020-01-28 17:15:00"], ["failed_at", "2020-01-28 17:15:00"], ["updated_at", "2020-01-28 17:15:17.000091"], ["id", 1]]
1902
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1903
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1
1904
+ Completed 302 Found in 67ms (ActiveRecord: 0.5ms)
1905
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
1906
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
1907
+ Parameters: {"locale"=>"de", "id"=>"1"}
1908
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1909
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1/edit]
1910
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1911
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1912
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.3ms)
1913
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1914
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1915
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1916
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1917
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1918
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1919
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1920
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1921
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1922
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1923
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1924
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1925
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.4ms)
1926
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.0ms)
1927
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.4ms)
1928
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (11.7ms)
1929
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1930
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1931
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1932
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1933
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
1934
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1935
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1936
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
1937
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1938
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
1939
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1940
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
1941
+ Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.4ms)
1942
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1943
+  (0.2ms) rollback transaction
1944
+  (0.1ms) begin transaction
1945
+  (0.1ms) SAVEPOINT active_record_1
1946
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:17.104079"], ["created_at", "2020-01-28 17:15:17.104135"], ["updated_at", "2020-01-28 17:15:17.104135"]]
1947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1948
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
1949
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#show as HTML
1950
+ Parameters: {"locale"=>"de", "id"=>"1"}
1951
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1952
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application
1953
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_show_table.html.haml (0.1ms)
1954
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_show_table.html.haml (0.4ms)
1955
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1956
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1957
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1958
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1959
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1960
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1961
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1962
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1963
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1964
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1965
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.2ms)
1966
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/table/body_cells/_default.html.haml (0.1ms)
1967
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_resource_table.html.haml (7.8ms)
1968
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_show_table.html.haml (0.1ms)
1969
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_show_actions.html.haml (1.5ms)
1970
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/show.html.haml within layouts/administrador/application (12.2ms)
1971
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.0ms)
1972
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1973
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
1974
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.3ms)
1975
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.0ms)
1976
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1977
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
1978
+  (0.2ms) SELECT COUNT(*) FROM "active_storage_attachments"
1979
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
1980
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (5.7ms)
1981
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
1982
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.3ms)
1983
+ Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.5ms)
1984
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
1985
+ Started DELETE "/de/backend/system/delayed_backend_active_record_jobs/1" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
1986
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#destroy as HTML
1987
+ Parameters: {"locale"=>"de", "id"=>"1"}
1988
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1989
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
1990
+  (0.1ms) SAVEPOINT active_record_1
1991
+ Delayed::Backend::ActiveRecord::Job Destroy (0.1ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 1]]
1992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1993
+ Redirected to http://www.example.com/de/backend/system/delayed_backend_active_record_jobs
1994
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
1995
+ Started GET "/de/backend/system/delayed_backend_active_record_jobs" for 127.0.0.1 at 2020-01-28 18:15:17 +0100
1996
+ Processing by Cmor::System::DelayedBackendActiveRecordJobsController#index as HTML
1997
+ Parameters: {"locale"=>"de"}
1998
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/backend/system/delayed_backend_active_record_jobs/1]
1999
+ Rendering /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application
2000
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_before_index_table.html.haml (0.1ms)
2001
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_table.html.haml (0.3ms)
2002
+ Rendered /home/vagrant/rails/cmor/cmor/cmor_system/app/views/cmor/system/delayed_backend_active_record_jobs/_index_table_actions.html.haml (0.1ms)
2003
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2004
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/rao-component-0.0.38.pre/app/views/rao/component/_collection_table.html.haml (3.1ms)
2005
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_after_index_table.html.haml (0.1ms)
2006
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_index_actions.html.haml (0.6ms)
2007
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/index.html.haml within layouts/administrador/application (7.8ms)
2008
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/resources_controller/base/_html_head_extras.html.haml (0.1ms)
2009
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
2010
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/_navbar.html.haml (0.2ms)
2011
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/breadcrumbs/_render.html.haml (0.2ms)
2012
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_flash_messages.html.haml (0.1ms)
2013
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
2014
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_blobs"
2015
+  (0.1ms) SELECT COUNT(*) FROM "active_storage_attachments"
2016
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :resource_controllers.
2017
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application/sidebars/_engine.html.haml (4.8ms)
2018
+ Administrador: The namespace Cmor::System either does not define a Configuration class or the class Cmor::System::Configuration does not respond_to :sidebar_controllers.
2019
+ Rendered /home/vagrant/.rvm/gems/ruby-2.4.0@cmor/gems/administrador-0.0.22.pre/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml (0.2ms)
2020
+ Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.4ms)
2021
+  (0.1ms) SELECT COUNT(*) FROM "delayed_jobs"
2022
+  (0.5ms) rollback transaction
2023
+  (0.1ms) begin transaction
2024
+  (0.1ms) rollback transaction
2025
+  (0.1ms) begin transaction
2026
+  (0.1ms) rollback transaction
2027
+  (0.1ms) begin transaction
2028
+  (0.0ms) rollback transaction
2029
+  (0.1ms) begin transaction
2030
+  (0.0ms) rollback transaction
2031
+  (0.1ms) begin transaction
2032
+  (0.0ms) rollback transaction
2033
+  (0.1ms) begin transaction
2034
+  (0.1ms) rollback transaction
2035
+  (0.1ms) begin transaction
2036
+  (0.1ms) rollback transaction
2037
+  (0.1ms) begin transaction
2038
+  (0.1ms) rollback transaction
2039
+  (0.1ms) begin transaction
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+  (0.3ms) rollback transaction
2043
+  (0.2ms) begin transaction
2044
+  (0.2ms) rollback transaction
2045
+  (0.2ms) begin transaction
2046
+  (0.1ms) rollback transaction
2047
+  (0.1ms) begin transaction
2048
+  Disk Storage (1.4ms) Uploaded file to key: HTpmYShupi5EJNrradja6mVL (checksum: LRgZFfo35M6x3xVHGOISeQ==)
2049
+  (0.1ms) rollback transaction
2050
+  (0.1ms) begin transaction
2051
+  Disk Storage (0.7ms) Uploaded file to key: mrpwPSd8RMydrLgNTDpdxX5k (checksum: LRgZFfo35M6x3xVHGOISeQ==)
2052
+  (0.2ms) SAVEPOINT active_record_1
2053
+ Post Create (0.6ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2020-01-28 17:15:17.396160"], ["updated_at", "2020-01-28 17:15:17.396160"]]
2054
+ ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "mrpwPSd8RMydrLgNTDpdxX5k"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:17.398509"]]
2055
+ ActiveStorage::Attachment Create (0.9ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "example.png"], ["record_type", "Post"], ["record_id", 1], ["blob_id", 1], ["created_at", "2020-01-28 17:15:17.400290"]]
2056
+ Post Update (0.6ms) UPDATE "posts" SET "updated_at" = ? WHERE "posts"."id" = ? [["updated_at", "2020-01-28 17:15:17.403543"], ["id", 1]]
2057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2058
+ [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) to Async(default) with arguments: #<GlobalID:0x00559949f02e30 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
2059
+ ActiveStorage::Blob Load (1.0ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2060
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Performing ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) from Async(default) with arguments: #<GlobalID:0x00559949ee2450 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
2061
+  (0.3ms) rollback transaction
2062
+  (0.1ms) begin transaction
2063
+  (0.1ms) rollback transaction
2064
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499]  Disk Storage (11.3ms) Downloaded file from key: mrpwPSd8RMydrLgNTDpdxX5k
2065
+  (0.3ms) begin transaction
2066
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Skipping image analysis because the mini_magick gem isn't installed
2067
+  (0.1ms) rollback transaction
2068
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499]  (0.1ms) begin transaction
2069
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"analyzed\":true}"], ["id", 1]]
2070
+  (0.1ms) begin transaction
2071
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499]  (0.0ms) commit transaction
2072
+ [ActiveJob] [ActiveStorage::AnalyzeJob] [9e3d61bd-7edc-4602-947a-5b4a04256499] Performed ActiveStorage::AnalyzeJob (Job ID: 9e3d61bd-7edc-4602-947a-5b4a04256499) from Async(default) in 78.18ms
2073
+  Disk Storage (0.7ms) Uploaded file to key: hrk7FyAW9UPTARPBoaLC5S6R (checksum: LRgZFfo35M6x3xVHGOISeQ==)
2074
+  (0.1ms) rollback transaction
2075
+  (0.1ms) begin transaction
2076
+  Disk Storage (1.4ms) Uploaded file to key: zetP27EpeZ3wJrz3rrqzGnGX (checksum: LRgZFfo35M6x3xVHGOISeQ==)
2077
+  (0.2ms) SAVEPOINT active_record_1
2078
+ ActiveStorage::Blob Create (0.5ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "zetP27EpeZ3wJrz3rrqzGnGX"], ["filename", "example.png"], ["content_type", "image/jpeg"], ["metadata", "{\"identified\":true}"], ["byte_size", 13774], ["checksum", "LRgZFfo35M6x3xVHGOISeQ=="], ["created_at", "2020-01-28 17:15:17.504967"]]
2079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2080
+  (0.2ms) rollback transaction
2081
+  (0.1ms) begin transaction
2082
+  (0.2ms) rollback transaction
2083
+  (0.1ms) begin transaction
2084
+  (0.1ms) rollback transaction
2085
+  (0.2ms) begin transaction
2086
+  (0.1ms) rollback transaction
2087
+  (0.1ms) begin transaction
2088
+  (0.1ms) SAVEPOINT active_record_1
2089
+ Delayed::Backend::ActiveRecord::Job Create (0.3ms) INSERT INTO "delayed_jobs" ("handler", "run_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["handler", "handler"], ["run_at", "2020-01-28 17:15:17.545756"], ["created_at", "2020-01-28 17:15:17.545836"], ["updated_at", "2020-01-28 17:15:17.545836"]]
2090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2091
+  (0.1ms) rollback transaction
2092
+  (0.1ms) begin transaction
2093
+  (0.1ms) rollback transaction
2094
+  (0.1ms) begin transaction
2095
+  (0.1ms) rollback transaction
2096
+  (0.1ms) begin transaction
2097
+  (0.1ms) rollback transaction
2098
+  (0.1ms) begin transaction
2099
+  (0.1ms) rollback transaction
2100
+  (0.1ms) begin transaction
2101
+  (0.1ms) rollback transaction
2102
+  (0.1ms) begin transaction
2103
+  (0.1ms) rollback transaction
2104
+  (0.2ms) begin transaction
2105
+  (0.2ms) rollback transaction
2106
+  (0.1ms) begin transaction
2107
+  (0.1ms) rollback transaction
2108
+  (0.1ms) begin transaction
2109
+  (0.1ms) rollback transaction
2110
+  (0.1ms) begin transaction
2111
+  (0.1ms) rollback transaction
2112
+  (0.1ms) begin transaction
2113
+  (0.1ms) rollback transaction
2114
+  (0.1ms) begin transaction
2115
+  (0.1ms) rollback transaction
2116
+  (0.1ms) begin transaction
2117
+  (0.1ms) rollback transaction
2118
+  (0.1ms) begin transaction
2119
+  (0.0ms) rollback transaction
2120
+  (0.1ms) begin transaction
2121
+  (0.1ms) rollback transaction
2122
+  (0.1ms) begin transaction
2123
+  (0.1ms) rollback transaction
2124
+  (0.1ms) begin transaction
2125
+  (0.1ms) rollback transaction
2126
+  (0.1ms) begin transaction
2127
+  (0.0ms) rollback transaction
2128
+  (0.1ms) begin transaction
2129
+  (0.1ms) rollback transaction
2130
+  (0.2ms) begin transaction
2131
+  (0.1ms) rollback transaction
2132
+  (0.1ms) begin transaction
2133
+  (0.0ms) rollback transaction
2134
+  (0.1ms) begin transaction
2135
+  (0.1ms) rollback transaction
2136
+  (0.2ms) begin transaction
2137
+  (0.1ms) rollback transaction
2138
+  (0.1ms) begin transaction
2139
+  (0.0ms) rollback transaction
2140
+  (0.1ms) begin transaction
2141
+  (0.0ms) rollback transaction
2142
+  (0.1ms) begin transaction
2143
+  (0.1ms) rollback transaction
2144
+  (0.2ms) begin transaction
2145
+  (0.1ms) rollback transaction
2146
+  (0.1ms) begin transaction
2147
+  (0.1ms) rollback transaction
2148
+  (0.1ms) begin transaction
2149
+  (0.1ms) rollback transaction
2150
+  (0.2ms) begin transaction
2151
+  (0.1ms) rollback transaction
2152
+  (0.1ms) begin transaction
2153
+  (0.1ms) rollback transaction
2154
+  (0.1ms) begin transaction
2155
+  (0.1ms) rollback transaction
2156
+  (0.2ms) begin transaction
2157
+  (0.1ms) rollback transaction
2158
+  (0.1ms) begin transaction
2159
+  (0.1ms) rollback transaction
2160
+  (0.1ms) begin transaction
2161
+  (0.1ms) rollback transaction
2162
+  (0.1ms) begin transaction
2163
+  (0.1ms) rollback transaction
2164
+  (0.1ms) begin transaction
2165
+  (0.1ms) rollback transaction
2166
+  (0.1ms) begin transaction
2167
+  (0.1ms) rollback transaction
2168
+  (0.2ms) begin transaction
2169
+  (0.1ms) rollback transaction
2170
+  (0.1ms) begin transaction
2171
+  (0.1ms) rollback transaction
2172
+  (0.2ms) begin transaction
2173
+  (0.1ms) rollback transaction
2174
+  (0.1ms) begin transaction
2175
+  (0.1ms) rollback transaction
2176
+  (0.2ms) begin transaction
2177
+  (0.1ms) rollback transaction
2178
+  (0.1ms) begin transaction
2179
+  (0.1ms) rollback transaction
2180
+  (0.1ms) begin transaction
2181
+  (0.1ms) rollback transaction
2182
+  (0.2ms) begin transaction
2183
+  (0.3ms) rollback transaction
2184
+  (0.1ms) begin transaction
2185
+  (0.1ms) rollback transaction
2186
+  (0.1ms) begin transaction
2187
+  (0.1ms) rollback transaction
2188
+  (0.1ms) begin transaction
2189
+  (0.1ms) rollback transaction
2190
+  (0.1ms) begin transaction
2191
+  (0.1ms) rollback transaction
2192
+  (0.1ms) begin transaction
2193
+  (0.1ms) rollback transaction
2194
+  (0.1ms) begin transaction
2195
+  (0.1ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+  (0.1ms) rollback transaction
2198
+  (0.1ms) begin transaction
2199
+  (0.1ms) rollback transaction
2200
+  (0.2ms) begin transaction
2201
+  (0.1ms) rollback transaction
2202
+  (0.2ms) begin transaction
2203
+  (0.1ms) rollback transaction
2204
+  (0.1ms) begin transaction
2205
+  (0.1ms) rollback transaction
2206
+  (0.2ms) begin transaction
2207
+  (0.1ms) rollback transaction
2208
+  (0.1ms) begin transaction
2209
+  (0.1ms) rollback transaction
2210
+  (0.1ms) begin transaction
2211
+  (0.2ms) rollback transaction
2212
+  (0.1ms) begin transaction
2213
+  (0.1ms) rollback transaction
2214
+  (0.1ms) begin transaction
2215
+  (0.1ms) rollback transaction
2216
+  (0.1ms) begin transaction
2217
+  (0.1ms) rollback transaction
2218
+  (0.1ms) begin transaction
2219
+  (0.1ms) rollback transaction
2220
+  (0.1ms) begin transaction
2221
+  (0.1ms) rollback transaction
2222
+  (0.2ms) begin transaction
2223
+  (0.3ms) rollback transaction
2224
+  (0.1ms) begin transaction
2225
+  (0.1ms) rollback transaction