cmor_system 0.0.44.pre

Sign up to get free protection for your applications and to get access to all the features.
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,41 @@
1
+ Cmor::System.configure do |config|
2
+ # Set the resources, that will be shown in the backend menu.
3
+ #
4
+ # Default: config.registered_controllers = -> {[
5
+ # Cmor::System::DelayedBackendActiveRecordJobsController,
6
+ # Cmor::System::ActiveStorage::BlobsController,
7
+ # Cmor::System::ActiveStorage::AttachmentsController
8
+ # ]}
9
+ #
10
+ config.registered_controllers = -> {[
11
+ Cmor::System::DelayedBackendActiveRecordJobsController,
12
+ Cmor::System::ActiveStorage::BlobsController,
13
+ Cmor::System::ActiveStorage::AttachmentsController
14
+ ]}
15
+
16
+ # Set the services, that will be shown in the backend menu.
17
+ #
18
+ # Default: config.registered_services = -> {[
19
+ # ]}
20
+ #
21
+ config.registered_services = -> {[
22
+ ]}
23
+
24
+ # Factory name to use for creators and updaters.
25
+ #
26
+ # default: config.record_factory_name = 'post'
27
+ #
28
+ config.record_factory_name = 'post'
29
+
30
+ # Enable support for ActiveStorage.
31
+ #
32
+ # default: config.enable_active_storage_backend = false
33
+ #
34
+ config.enable_active_storage_backend = true
35
+
36
+ # Enable support for DelayedJob.
37
+ #
38
+ # default: config.enable_delayed_job_backend = false
39
+ #
40
+ config.enable_delayed_job_backend = true
41
+ end
@@ -0,0 +1,25 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Define an application-wide content security policy
4
+ # For further information see the following documentation
5
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
6
+
7
+ # Rails.application.config.content_security_policy do |policy|
8
+ # policy.default_src :self, :https
9
+ # policy.font_src :self, :https, :data
10
+ # policy.img_src :self, :https, :data
11
+ # policy.object_src :none
12
+ # policy.script_src :self, :https
13
+ # policy.style_src :self, :https
14
+
15
+ # # Specify URI for violation reports
16
+ # # policy.report_uri "/csp-violation-report-endpoint"
17
+ # end
18
+
19
+ # If you are using UJS then enable automatic nonce generation
20
+ # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
21
+
22
+ # Report CSP violations to a specified URI
23
+ # For further information see the following documentation:
24
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
25
+ # Rails.application.config.content_security_policy_report_only = true
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Specify a serializer for the signed and encrypted cookie jars.
4
+ # Valid options are :json, :marshal, and :hybrid.
5
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,2 @@
1
+ Rails.application.config.i18n.available_locales = [:en, :de]
2
+ Rails.application.config.i18n.default_locale = :de
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ RouteTranslator.config do |config|
2
+ config.force_locale = true
3
+ end
@@ -0,0 +1,176 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # Uncomment this and change the path if necessary to include your own
4
+ # components.
5
+ # See https://github.com/plataformatec/simple_form#custom-components to know
6
+ # more about custom components.
7
+ # Dir[Rails.root.join('lib/components/**/*.rb')].each { |f| require f }
8
+ #
9
+ # Use this setup block to configure all options available in SimpleForm.
10
+ SimpleForm.setup do |config|
11
+ # Wrappers are used by the form builder to generate a
12
+ # complete input. You can remove any component from the
13
+ # wrapper, change the order or even add your own to the
14
+ # stack. The options given below are used to wrap the
15
+ # whole input.
16
+ config.wrappers :default, class: :input,
17
+ hint_class: :field_with_hint, error_class: :field_with_errors, valid_class: :field_without_errors do |b|
18
+ ## Extensions enabled by default
19
+ # Any of these extensions can be disabled for a
20
+ # given input by passing: `f.input EXTENSION_NAME => false`.
21
+ # You can make any of these extensions optional by
22
+ # renaming `b.use` to `b.optional`.
23
+
24
+ # Determines whether to use HTML5 (:email, :url, ...)
25
+ # and required attributes
26
+ b.use :html5
27
+
28
+ # Calculates placeholders automatically from I18n
29
+ # You can also pass a string as f.input placeholder: "Placeholder"
30
+ b.use :placeholder
31
+
32
+ ## Optional extensions
33
+ # They are disabled unless you pass `f.input EXTENSION_NAME => true`
34
+ # to the input. If so, they will retrieve the values from the model
35
+ # if any exists. If you want to enable any of those
36
+ # extensions by default, you can change `b.optional` to `b.use`.
37
+
38
+ # Calculates maxlength from length validations for string inputs
39
+ # and/or database column lengths
40
+ b.optional :maxlength
41
+
42
+ # Calculate minlength from length validations for string inputs
43
+ b.optional :minlength
44
+
45
+ # Calculates pattern from format validations for string inputs
46
+ b.optional :pattern
47
+
48
+ # Calculates min and max from length validations for numeric inputs
49
+ b.optional :min_max
50
+
51
+ # Calculates readonly automatically from readonly attributes
52
+ b.optional :readonly
53
+
54
+ ## Inputs
55
+ # b.use :input, class: 'input', error_class: 'is-invalid', valid_class: 'is-valid'
56
+ b.use :label_input
57
+ b.use :hint, wrap_with: { tag: :span, class: :hint }
58
+ b.use :error, wrap_with: { tag: :span, class: :error }
59
+
60
+ ## full_messages_for
61
+ # If you want to display the full error message for the attribute, you can
62
+ # use the component :full_error, like:
63
+ #
64
+ # b.use :full_error, wrap_with: { tag: :span, class: :error }
65
+ end
66
+
67
+ # The default wrapper to be used by the FormBuilder.
68
+ config.default_wrapper = :default
69
+
70
+ # Define the way to render check boxes / radio buttons with labels.
71
+ # Defaults to :nested for bootstrap config.
72
+ # inline: input + label
73
+ # nested: label > input
74
+ config.boolean_style = :nested
75
+
76
+ # Default class for buttons
77
+ config.button_class = 'btn'
78
+
79
+ # Method used to tidy up errors. Specify any Rails Array method.
80
+ # :first lists the first message for each field.
81
+ # Use :to_sentence to list all errors for each field.
82
+ # config.error_method = :first
83
+
84
+ # Default tag used for error notification helper.
85
+ config.error_notification_tag = :div
86
+
87
+ # CSS class to add for error notification helper.
88
+ config.error_notification_class = 'error_notification'
89
+
90
+ # Series of attempts to detect a default label method for collection.
91
+ # config.collection_label_methods = [ :to_label, :name, :title, :to_s ]
92
+
93
+ # Series of attempts to detect a default value method for collection.
94
+ # config.collection_value_methods = [ :id, :to_s ]
95
+
96
+ # You can wrap a collection of radio/check boxes in a pre-defined tag, defaulting to none.
97
+ # config.collection_wrapper_tag = nil
98
+
99
+ # You can define the class to use on all collection wrappers. Defaulting to none.
100
+ # config.collection_wrapper_class = nil
101
+
102
+ # You can wrap each item in a collection of radio/check boxes with a tag,
103
+ # defaulting to :span.
104
+ # config.item_wrapper_tag = :span
105
+
106
+ # You can define a class to use in all item wrappers. Defaulting to none.
107
+ # config.item_wrapper_class = nil
108
+
109
+ # How the label text should be generated altogether with the required text.
110
+ # config.label_text = lambda { |label, required, explicit_label| "#{required} #{label}" }
111
+
112
+ # You can define the class to use on all labels. Default is nil.
113
+ # config.label_class = nil
114
+
115
+ # You can define the default class to be used on forms. Can be overriden
116
+ # with `html: { :class }`. Defaulting to none.
117
+ # config.default_form_class = nil
118
+
119
+ # You can define which elements should obtain additional classes
120
+ # config.generate_additional_classes_for = [:wrapper, :label, :input]
121
+
122
+ # Whether attributes are required by default (or not). Default is true.
123
+ # config.required_by_default = true
124
+
125
+ # Tell browsers whether to use the native HTML5 validations (novalidate form option).
126
+ # These validations are enabled in SimpleForm's internal config but disabled by default
127
+ # in this configuration, which is recommended due to some quirks from different browsers.
128
+ # To stop SimpleForm from generating the novalidate option, enabling the HTML5 validations,
129
+ # change this configuration to true.
130
+ config.browser_validations = false
131
+
132
+ # Custom mappings for input types. This should be a hash containing a regexp
133
+ # to match as key, and the input type that will be used when the field name
134
+ # matches the regexp as value.
135
+ # config.input_mappings = { /count/ => :integer }
136
+
137
+ # Custom wrappers for input types. This should be a hash containing an input
138
+ # type as key and the wrapper that will be used for all inputs with specified type.
139
+ # config.wrapper_mappings = { string: :prepend }
140
+
141
+ # Namespaces where SimpleForm should look for custom input classes that
142
+ # override default inputs.
143
+ # config.custom_inputs_namespaces << "CustomInputs"
144
+
145
+ # Default priority for time_zone inputs.
146
+ # config.time_zone_priority = nil
147
+
148
+ # Default priority for country inputs.
149
+ # config.country_priority = nil
150
+
151
+ # When false, do not use translations for labels.
152
+ # config.translate_labels = true
153
+
154
+ # Automatically discover new inputs in Rails' autoload path.
155
+ # config.inputs_discovery = true
156
+
157
+ # Cache SimpleForm inputs discovery
158
+ # config.cache_discovery = !Rails.env.development?
159
+
160
+ # Default class for inputs
161
+ # config.input_class = nil
162
+
163
+ # Define the default class of the input wrapper of the boolean input.
164
+ config.boolean_label_class = 'checkbox'
165
+
166
+ # Defines if the default input wrapper class should be included in radio
167
+ # collection wrappers.
168
+ # config.include_default_input_wrapper_class = true
169
+
170
+ # Defines which i18n scope will be used in Simple Form.
171
+ # config.i18n_scope = 'simple_form'
172
+
173
+ # Defines validation classes to the input_field. By default it's nil.
174
+ # config.input_field_valid_class = 'is-valid'
175
+ # config.input_field_error_class = 'is-invalid'
176
+ end
@@ -0,0 +1,440 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Please do not make direct changes to this file!
4
+ # This generator is maintained by the community around simple_form-bootstrap:
5
+ # https://github.com/rafaelfranca/simple_form-bootstrap
6
+ # All future development, tests, and organization should happen there.
7
+ # Background history: https://github.com/plataformatec/simple_form/issues/1561
8
+
9
+ # Uncomment this and change the path if necessary to include your own
10
+ # components.
11
+ # See https://github.com/plataformatec/simple_form#custom-components
12
+ # to know more about custom components.
13
+ # Dir[Rails.root.join('lib/components/**/*.rb')].each { |f| require f }
14
+
15
+ # Use this setup block to configure all options available in SimpleForm.
16
+ SimpleForm.setup do |config|
17
+ # Default class for buttons
18
+ config.button_class = 'btn'
19
+
20
+ # Define the default class of the input wrapper of the boolean input.
21
+ config.boolean_label_class = 'form-check-label'
22
+
23
+ # How the label text should be generated altogether with the required text.
24
+ config.label_text = lambda { |label, required, explicit_label| "#{label} #{required}" }
25
+
26
+ # Define the way to render check boxes / radio buttons with labels.
27
+ config.boolean_style = :inline
28
+
29
+ # You can wrap each item in a collection of radio/check boxes with a tag
30
+ config.item_wrapper_tag = :div
31
+
32
+ # Defines if the default input wrapper class should be included in radio
33
+ # collection wrappers.
34
+ config.include_default_input_wrapper_class = false
35
+
36
+ # CSS class to add for error notification helper.
37
+ config.error_notification_class = 'alert alert-danger'
38
+
39
+ # Method used to tidy up errors. Specify any Rails Array method.
40
+ # :first lists the first message for each field.
41
+ # :to_sentence to list all errors for each field.
42
+ config.error_method = :to_sentence
43
+
44
+ # add validation classes to `input_field`
45
+ config.input_field_error_class = 'is-invalid'
46
+ config.input_field_valid_class = 'is-valid'
47
+
48
+
49
+ # vertical forms
50
+ #
51
+ # vertical default_wrapper
52
+ config.wrappers :vertical_form, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
53
+ b.use :html5
54
+ b.use :placeholder
55
+ b.optional :maxlength
56
+ b.optional :minlength
57
+ b.optional :pattern
58
+ b.optional :min_max
59
+ b.optional :readonly
60
+ b.use :label
61
+ b.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
62
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
63
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
64
+ end
65
+
66
+ # vertical input for boolean
67
+ config.wrappers :vertical_boolean, tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
68
+ b.use :html5
69
+ b.optional :readonly
70
+ b.wrapper :form_check_wrapper, tag: 'div', class: 'form-check' do |bb|
71
+ bb.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
72
+ bb.use :label, class: 'form-check-label'
73
+ bb.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
74
+ bb.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
75
+ end
76
+ end
77
+
78
+ # vertical input for radio buttons and check boxes
79
+ config.wrappers :vertical_collection, item_wrapper_class: 'form-check', item_label_class: 'form-check-label', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
80
+ b.use :html5
81
+ b.optional :readonly
82
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
83
+ ba.use :label_text
84
+ end
85
+ b.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
86
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
87
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
88
+ end
89
+
90
+ # vertical input for inline radio buttons and check boxes
91
+ config.wrappers :vertical_collection_inline, item_wrapper_class: 'form-check form-check-inline', item_label_class: 'form-check-label', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
92
+ b.use :html5
93
+ b.optional :readonly
94
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
95
+ ba.use :label_text
96
+ end
97
+ b.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
98
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
99
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
100
+ end
101
+
102
+ # vertical file input
103
+ config.wrappers :vertical_file, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
104
+ b.use :html5
105
+ b.use :placeholder
106
+ b.optional :maxlength
107
+ b.optional :minlength
108
+ b.optional :readonly
109
+ b.use :label
110
+ b.use :input, class: 'form-control-file', error_class: 'is-invalid', valid_class: 'is-valid'
111
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
112
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
113
+ end
114
+
115
+ # vertical multi select
116
+ config.wrappers :vertical_multi_select, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
117
+ b.use :html5
118
+ b.optional :readonly
119
+ b.use :label
120
+ b.wrapper tag: 'div', class: 'd-flex flex-row justify-content-between align-items-center' do |ba|
121
+ ba.use :input, class: 'form-control mx-1', error_class: 'is-invalid', valid_class: 'is-valid'
122
+ end
123
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
124
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
125
+ end
126
+
127
+ # vertical range input
128
+ config.wrappers :vertical_range, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
129
+ b.use :html5
130
+ b.use :placeholder
131
+ b.optional :readonly
132
+ b.optional :step
133
+ b.use :label
134
+ b.use :input, class: 'form-control-range', error_class: 'is-invalid', valid_class: 'is-valid'
135
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
136
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
137
+ end
138
+
139
+
140
+ # horizontal forms
141
+ #
142
+ # horizontal default_wrapper
143
+ config.wrappers :horizontal_form, tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
144
+ b.use :html5
145
+ b.use :placeholder
146
+ b.optional :maxlength
147
+ b.optional :minlength
148
+ b.optional :pattern
149
+ b.optional :min_max
150
+ b.optional :readonly
151
+ b.use :label, class: 'col-sm-3 col-form-label'
152
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
153
+ ba.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
154
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
155
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
156
+ end
157
+ end
158
+
159
+ # horizontal input for boolean
160
+ config.wrappers :horizontal_boolean, tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
161
+ b.use :html5
162
+ b.optional :readonly
163
+ b.wrapper tag: 'label', class: 'col-sm-3' do |ba|
164
+ ba.use :label_text
165
+ end
166
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |wr|
167
+ wr.wrapper :form_check_wrapper, tag: 'div', class: 'form-check' do |bb|
168
+ bb.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
169
+ bb.use :label, class: 'form-check-label'
170
+ bb.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
171
+ bb.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
172
+ end
173
+ end
174
+ end
175
+
176
+ # horizontal input for radio buttons and check boxes
177
+ config.wrappers :horizontal_collection, item_wrapper_class: 'form-check', item_label_class: 'form-check-label', tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
178
+ b.use :html5
179
+ b.optional :readonly
180
+ b.use :label, class: 'col-sm-3 col-form-label pt-0'
181
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
182
+ ba.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
183
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
184
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
185
+ end
186
+ end
187
+
188
+ # horizontal input for inline radio buttons and check boxes
189
+ config.wrappers :horizontal_collection_inline, item_wrapper_class: 'form-check form-check-inline', item_label_class: 'form-check-label', tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
190
+ b.use :html5
191
+ b.optional :readonly
192
+ b.use :label, class: 'col-sm-3 col-form-label pt-0'
193
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
194
+ ba.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
195
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
196
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
197
+ end
198
+ end
199
+
200
+ # horizontal file input
201
+ config.wrappers :horizontal_file, tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
202
+ b.use :html5
203
+ b.use :placeholder
204
+ b.optional :maxlength
205
+ b.optional :minlength
206
+ b.optional :readonly
207
+ b.use :label, class: 'col-sm-3 col-form-label'
208
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
209
+ ba.use :input, error_class: 'is-invalid', valid_class: 'is-valid'
210
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
211
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
212
+ end
213
+ end
214
+
215
+ # horizontal multi select
216
+ config.wrappers :horizontal_multi_select, tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
217
+ b.use :html5
218
+ b.optional :readonly
219
+ b.use :label, class: 'col-sm-3 col-form-label'
220
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
221
+ ba.wrapper tag: 'div', class: 'd-flex flex-row justify-content-between align-items-center' do |bb|
222
+ bb.use :input, class: 'form-control mx-1', error_class: 'is-invalid', valid_class: 'is-valid'
223
+ end
224
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
225
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
226
+ end
227
+ end
228
+
229
+ # horizontal range input
230
+ config.wrappers :horizontal_range, tag: 'div', class: 'form-group row', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
231
+ b.use :html5
232
+ b.use :placeholder
233
+ b.optional :readonly
234
+ b.optional :step
235
+ b.use :label, class: 'col-sm-3 col-form-label'
236
+ b.wrapper :grid_wrapper, tag: 'div', class: 'col-sm-9' do |ba|
237
+ ba.use :input, class: 'form-control-range', error_class: 'is-invalid', valid_class: 'is-valid'
238
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
239
+ ba.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
240
+ end
241
+ end
242
+
243
+
244
+ # inline forms
245
+ #
246
+ # inline default_wrapper
247
+ config.wrappers :inline_form, tag: 'span', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
248
+ b.use :html5
249
+ b.use :placeholder
250
+ b.optional :maxlength
251
+ b.optional :minlength
252
+ b.optional :pattern
253
+ b.optional :min_max
254
+ b.optional :readonly
255
+ b.use :label, class: 'sr-only'
256
+
257
+ b.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
258
+ b.use :error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
259
+ b.optional :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
260
+ end
261
+
262
+ # inline input for boolean
263
+ config.wrappers :inline_boolean, tag: 'span', class: 'form-check mb-2 mr-sm-2', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
264
+ b.use :html5
265
+ b.optional :readonly
266
+ b.use :input, class: 'form-check-input', error_class: 'is-invalid', valid_class: 'is-valid'
267
+ b.use :label, class: 'form-check-label'
268
+ b.use :error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
269
+ b.optional :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
270
+ end
271
+
272
+
273
+ # bootstrap custom forms
274
+ #
275
+ # custom input for boolean
276
+ config.wrappers :custom_boolean, tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
277
+ b.use :html5
278
+ b.optional :readonly
279
+ b.wrapper :form_check_wrapper, tag: 'div', class: 'custom-control custom-checkbox' do |bb|
280
+ bb.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
281
+ bb.use :label, class: 'custom-control-label'
282
+ bb.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
283
+ bb.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
284
+ end
285
+ end
286
+
287
+ # custom input switch for boolean
288
+ config.wrappers :custom_boolean_switch, tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
289
+ b.use :html5
290
+ b.optional :readonly
291
+ b.wrapper :form_check_wrapper, tag: 'div', class: 'custom-control custom-switch' do |bb|
292
+ bb.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
293
+ bb.use :label, class: 'custom-control-label'
294
+ bb.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
295
+ bb.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
296
+ end
297
+ end
298
+
299
+ # custom input for radio buttons and check boxes
300
+ config.wrappers :custom_collection, item_wrapper_class: 'custom-control', item_label_class: 'custom-control-label', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
301
+ b.use :html5
302
+ b.optional :readonly
303
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
304
+ ba.use :label_text
305
+ end
306
+ b.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
307
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
308
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
309
+ end
310
+
311
+ # custom input for inline radio buttons and check boxes
312
+ config.wrappers :custom_collection_inline, item_wrapper_class: 'custom-control custom-control-inline', item_label_class: 'custom-control-label', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
313
+ b.use :html5
314
+ b.optional :readonly
315
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
316
+ ba.use :label_text
317
+ end
318
+ b.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
319
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
320
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
321
+ end
322
+
323
+ # custom file input
324
+ config.wrappers :custom_file, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
325
+ b.use :html5
326
+ b.use :placeholder
327
+ b.optional :maxlength
328
+ b.optional :minlength
329
+ b.optional :readonly
330
+ b.use :label
331
+ b.wrapper :custom_file_wrapper, tag: 'div', class: 'custom-file' do |ba|
332
+ ba.use :input, class: 'custom-file-input', error_class: 'is-invalid', valid_class: 'is-valid'
333
+ ba.use :label, class: 'custom-file-label'
334
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
335
+ end
336
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
337
+ end
338
+
339
+ # custom multi select
340
+ config.wrappers :custom_multi_select, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
341
+ b.use :html5
342
+ b.optional :readonly
343
+ b.use :label
344
+ b.wrapper tag: 'div', class: 'd-flex flex-row justify-content-between align-items-center' do |ba|
345
+ ba.use :input, class: 'custom-select mx-1', error_class: 'is-invalid', valid_class: 'is-valid'
346
+ end
347
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
348
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
349
+ end
350
+
351
+ # custom range input
352
+ config.wrappers :custom_range, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
353
+ b.use :html5
354
+ b.use :placeholder
355
+ b.optional :readonly
356
+ b.optional :step
357
+ b.use :label
358
+ b.use :input, class: 'custom-range', error_class: 'is-invalid', valid_class: 'is-valid'
359
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
360
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
361
+ end
362
+
363
+
364
+ # Input Group - custom component
365
+ # see example app and config at https://github.com/rafaelfranca/simple_form-bootstrap
366
+ # config.wrappers :input_group, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
367
+ # b.use :html5
368
+ # b.use :placeholder
369
+ # b.optional :maxlength
370
+ # b.optional :minlength
371
+ # b.optional :pattern
372
+ # b.optional :min_max
373
+ # b.optional :readonly
374
+ # b.use :label
375
+ # b.wrapper :input_group_tag, tag: 'div', class: 'input-group' do |ba|
376
+ # ba.optional :prepend
377
+ # ba.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
378
+ # ba.optional :append
379
+ # end
380
+ # b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
381
+ # b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
382
+ # end
383
+
384
+
385
+ # Floating Labels form
386
+ #
387
+ # floating labels default_wrapper
388
+ config.wrappers :floating_labels_form, tag: 'div', class: 'form-label-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
389
+ b.use :html5
390
+ b.use :placeholder
391
+ b.optional :maxlength
392
+ b.optional :minlength
393
+ b.optional :pattern
394
+ b.optional :min_max
395
+ b.optional :readonly
396
+ b.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
397
+ b.use :label
398
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
399
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
400
+ end
401
+
402
+ # custom multi select
403
+ config.wrappers :floating_labels_select, tag: 'div', class: 'form-label-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
404
+ b.use :html5
405
+ b.optional :readonly
406
+ b.use :input, class: 'custom-select', error_class: 'is-invalid', valid_class: 'is-valid'
407
+ b.use :label
408
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
409
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
410
+ end
411
+
412
+
413
+ # The default wrapper to be used by the FormBuilder.
414
+ config.default_wrapper = :vertical_form
415
+
416
+ # Custom wrappers for input types. This should be a hash containing an input
417
+ # type as key and the wrapper that will be used for all inputs with specified type.
418
+ config.wrapper_mappings = {
419
+ boolean: :vertical_boolean,
420
+ check_boxes: :vertical_collection,
421
+ date: :vertical_multi_select,
422
+ datetime: :vertical_multi_select,
423
+ file: :vertical_file,
424
+ radio_buttons: :vertical_collection,
425
+ range: :vertical_range,
426
+ time: :vertical_multi_select
427
+ }
428
+
429
+ # enable custom form wrappers
430
+ # config.wrapper_mappings = {
431
+ # boolean: :custom_boolean,
432
+ # check_boxes: :custom_collection,
433
+ # date: :custom_multi_select,
434
+ # datetime: :custom_multi_select,
435
+ # file: :custom_file,
436
+ # radio_buttons: :custom_collection,
437
+ # range: :custom_range,
438
+ # time: :custom_multi_select
439
+ # }
440
+ end