cmor_system_backend 0.0.6.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (382) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +19 -0
  5. data/app/assets/config/cmor_system_backend_manifest.js +2 -0
  6. data/app/assets/javascripts/cmor/system/backend/application/keep.js +0 -0
  7. data/app/assets/javascripts/cmor/system/backend/application.js +13 -0
  8. data/app/assets/javascripts/cmor_system_backend.js +1 -0
  9. data/app/assets/stylesheets/cmor/system/backend/application.css +4 -0
  10. data/app/assets/stylesheets/cmor_system_backend.css +3 -0
  11. data/app/controllers/cmor/system/backend/active_storage/attachments_controller.rb +27 -0
  12. data/app/controllers/cmor/system/backend/active_storage/blobs_controller.rb +27 -0
  13. data/app/controllers/cmor/system/backend/delayed_backend_active_record_jobs_controller.rb +21 -0
  14. data/app/controllers/cmor/system/backend/home_controller.rb +8 -0
  15. data/app/views/cmor/system/backend/active_storage/attachments/_index_table.html.haml +7 -0
  16. data/app/views/cmor/system/backend/active_storage/blobs/_index_table.html.haml +15 -0
  17. data/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_index_table_actions.html.haml +16 -0
  18. data/app/views/cmor/system/backend/delayed_backend_active_record_jobs/_show_actions.html.haml +12 -0
  19. data/config/initializers/assets.rb +2 -0
  20. data/config/initializers/cmor.rb +3 -0
  21. data/config/locales/de.yml +48 -0
  22. data/config/locales/en.yml +48 -0
  23. data/config/routes.rb +9 -0
  24. data/lib/cmor/system/backend/configuration.rb +27 -0
  25. data/lib/cmor/system/backend/engine.rb +9 -0
  26. data/lib/cmor/system/backend/version.rb +9 -0
  27. data/lib/cmor/system/backend.rb +12 -0
  28. data/lib/cmor_system_backend.rb +3 -0
  29. data/lib/generators/cmor/system/backend/install/install_generator.rb +32 -0
  30. data/lib/generators/cmor/system/backend/install/templates/initializer.rb +41 -0
  31. data/lib/generators/cmor/system/backend/install/templates/routes.source +4 -0
  32. data/spec/dummy/Rakefile +6 -0
  33. data/spec/dummy/app/assets/config/manifest.js +3 -0
  34. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  35. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  36. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  37. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  38. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  39. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  40. data/spec/dummy/app/controllers/backend_controller.rb +2 -0
  41. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  42. data/spec/dummy/app/jobs/application_job.rb +2 -0
  43. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  44. data/spec/dummy/app/models/application_record.rb +3 -0
  45. data/spec/dummy/app/models/post.rb +2 -0
  46. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  47. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  48. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  49. data/spec/dummy/bin/bundle +3 -0
  50. data/spec/dummy/bin/delayed_job +5 -0
  51. data/spec/dummy/bin/rails +4 -0
  52. data/spec/dummy/bin/rake +4 -0
  53. data/spec/dummy/bin/setup +36 -0
  54. data/spec/dummy/bin/update +31 -0
  55. data/spec/dummy/bin/yarn +11 -0
  56. data/spec/dummy/config/application.rb +34 -0
  57. data/spec/dummy/config/boot.rb +5 -0
  58. data/spec/dummy/config/cable.yml +10 -0
  59. data/spec/dummy/config/database.yml +25 -0
  60. data/spec/dummy/config/environment.rb +5 -0
  61. data/spec/dummy/config/environments/development.rb +61 -0
  62. data/spec/dummy/config/environments/production.rb +94 -0
  63. data/spec/dummy/config/environments/test.rb +46 -0
  64. data/spec/dummy/config/initializers/administador.rb +11 -0
  65. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  66. data/spec/dummy/config/initializers/assets.rb +14 -0
  67. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  68. data/spec/dummy/config/initializers/cmor_core_backend.rb +12 -0
  69. data/spec/dummy/config/initializers/cmor_system_backend.rb +35 -0
  70. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  71. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  72. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  73. data/spec/dummy/config/initializers/i18n.rb +2 -0
  74. data/spec/dummy/config/initializers/inflections.rb +16 -0
  75. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  76. data/spec/dummy/config/initializers/route_translator.rb +3 -0
  77. data/spec/dummy/config/initializers/simple_form.rb +179 -0
  78. data/spec/dummy/config/initializers/simple_form_bootstrap.rb +439 -0
  79. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/spec/dummy/config/locales/en.yml +33 -0
  81. data/spec/dummy/config/locales/simple_form.en.yml +31 -0
  82. data/spec/dummy/config/puma.rb +34 -0
  83. data/spec/dummy/config/routes.rb +11 -0
  84. data/spec/dummy/config/spring.rb +6 -0
  85. data/spec/dummy/config/storage.yml +34 -0
  86. data/spec/dummy/config.ru +5 -0
  87. data/spec/dummy/db/development.sqlite3 +0 -0
  88. data/spec/dummy/db/migrate/20190331094612_create_delayed_jobs.rb +22 -0
  89. data/spec/dummy/db/migrate/20190331094627_create_active_storage_tables.active_storage.rb +27 -0
  90. data/spec/dummy/db/migrate/20190331094640_create_posts.rb +9 -0
  91. data/spec/dummy/db/schema.rb +57 -0
  92. data/spec/dummy/db/test.sqlite3 +0 -0
  93. data/spec/dummy/lib/templates/haml/scaffold/_form.html.haml +12 -0
  94. data/spec/dummy/log/development.log +128 -0
  95. data/spec/dummy/log/test.log +951 -0
  96. data/spec/dummy/package.json +5 -0
  97. data/spec/dummy/public/404.html +67 -0
  98. data/spec/dummy/public/422.html +67 -0
  99. data/spec/dummy/public/500.html +66 -0
  100. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  101. data/spec/dummy/public/apple-touch-icon.png +0 -0
  102. data/spec/dummy/public/favicon.ico +0 -0
  103. data/spec/dummy/spec/factories/posts.rb +5 -0
  104. data/spec/dummy/spec/models/post_spec.rb +5 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/--/--kuNDI-qjasSX_vx98FiiJU7t6q9-2uAECZs3_00nA.cache +1 -0
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5_i5Cu4DVWB6u5AzETTDl8QjlOOgMfrD6OzZZ0mlOQ.cache +3 -0
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-Y/-Y2SN5PPdcImwSrymEIobBYEZIljDWB3ff0RoGB_TsY.cache +1 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/06/06xXy_R6Nb4tVESoZ8BL7ieC3PsuTXp4Tk8vGlvu0oc.cache +1 -0
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0d/0dEDJ_66n_wUD9IIQuMLmzqwHqX5jYjK_az2B2YB5S4.cache +1 -0
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/10/10LnhyXw-zfOCjNU_dm2pq229XULyOwxJiuJ6PArWEk.cache +2 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1H/1H0sc5Wllu7CW7u2GM7ifu6l0prMHSetI72hfeDIf6U.cache +1 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1o/1oqLwT_YuYuXdzdc62rRR7PSqDnMwyQGhcD1kOTxPq8.cache +3 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1v/1vu5o8pZOx49A8FubB147MTuST9ZOG_Z59-V2lhPSds.cache +0 -0
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2-/2-4XUQU1zOtp2aZbayDkzju-R7COR2JviLRVtr9XzdA.cache +0 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2w/2w3NL7ot0cD6RHAax5qkbNc0N1ZIDdCU-3dVCiFyA80.cache +1 -0
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3H/3Hufg8DeGcI7D4A4mZquW4BkQwMIPGcyJE45IzAPLoY.cache +1 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3R/3Rr4PAjUqQn6hsghqwfPssfuJptMaHQxIcXMffXI3K4.cache +1 -0
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/47/47sczUK1xuMY-kOX4m2ilscUU31HcipOP2CB4QgeuPo.cache +1 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4A/4AKfWXKo2-p9HLawuhXDUDvJ51li6a7tjamz85DkfeM.cache +3 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4D/4DqaLJlj0stn256kYPxtSBb6o0SuFEh6B4NuR_J3ooY.cache +3 -0
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4L/4Lnn2_DBcgTRoYRew5nRbFbJu0QiOP0uc-1V7qiJ08I.cache +2 -0
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4Q/4QkTCmLzrvTMp7j_lJzL48TLLSMqDb0rOVy3rWLOzQ0.cache +0 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5V/5VLmIs86eSd_hPs5fQKMe6uET535JDQ0dUVamRx0md8.cache +1 -0
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5X/5X1J8UBeIBYVE3m4_5t5-XN3TgrBBN2CfDAKo8G0FZU.cache +1 -0
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5n/5n5srCfPI_1d6miKrdE1dfnZLr2Fm28GRwoRXV7Zzb4.cache +1 -0
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6b/6b3QGbmhzESmm6r7h6Ey2N5VJv6HNPI7s3ky_YPAlxw.cache +0 -0
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6m/6mjspBpf7lbs42h6gX6CDWsr6rZm4Pjvp-l5w7QAOr0.cache +1 -0
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6q/6q5EgfnxHaxpX878fBdHogkT9ULkOk9-b0SsuatjOTE.cache +1 -0
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7B/7BWPuyR0NC4RBxX6DNM_4Yjv5I4H0GEnE2RSur1Rwlg.cache +1 -0
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7T/7THmIrbQdhcWbDN84ICQb9RhnvINJ6bMXTss4ZlA_uI.cache +1 -0
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/84/84__21iiiCxGeG-EouK1OKpeIuZcFKKMT8N1glEOHIc.cache +0 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/89/89JNYJEQM9JZyf7zqejUgoGSe0noDpTGh8xoQWamc9I.cache +0 -0
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8D/8D_xpDjLaCIEzCSNN2dH0ZQhZsm1AOJQ7FEAxFxHQ0w.cache +0 -0
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8W/8WtRVFp11m08s36jcIR3QHsTAOwLS-BvldrGYd7NaVQ.cache +1 -0
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8f/8fyEWsLyoNl9Fol3NjyOMkmnPZLbySqJ_Cqysly_TgU.cache +1 -0
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8tdDsZkkAFiLUoepQpVLBq_D0eIh01G2HLd3NFDcRs8.cache +2 -0
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/91/91Qk1qA0FrC6hVDekhrlUz00i2leQGCCNhFUwfM2U8I.cache +1 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9o/9o8Qwhpa624CaUIvd0F8htKcM_LKK2RE3hIzHyWlb1c.cache +1 -0
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9q/9qfFDXVHpk41QG7WtXb9d0vuuBHtyz9oRnJ71uOHZ1M.cache +1 -0
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AR/ARxZknrQslD7H8ebebqkPZiyPtZILG1Rtlq6pgK9zYo.cache +3 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Am/AmV2YeTLcEu585qtqxINmfRXabST-rXrCzIhJtbf57Q.cache +1 -0
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ar/Aredar3r6yXFxQOrrapXB81CBRWR596Zv-v1l_ZUHG8.cache +2 -0
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/At/AtbpLF65IYMctIApvHZSYNppMU72buuO8Ua9D5bMPRk.cache +2 -0
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B9/B9z4O4V6Ntfhgr3Z4K9GXevgl-o6_G4OT9Wlbu1CAIw.cache +1 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bo/BoBmJiCerYN_4K4pDinBCcY3B6JFIW1oV4VmU7x8txs.cache +1 -0
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bp/Bpn4o6bMLfsdCzpsMRLTHt0zP-a3sBtapCcKD9SkiSg.cache +1 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C4/C4LLShJFixxoppzlyX_1hOznT5LoPRmHSgurkCjQIDk.cache +1 -0
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CF/CFlbSmnf2Pa_peqpgvcvP0UHK6o-rLtBgcJV3QGLGEI.cache +0 -0
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CN/CNiorCIoliz3Cwq2etLd7Dd0d83sJ1Wfp0j_7n3tERA.cache +1 -0
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cm/Cmwwv8ddr2byZrle-Z3ivJ5WnPPv9kEDhkNJ83gOwYk.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cx/CxDxFVtH-HQCIhXkTjj62kfCsbu93FSHzbJkGMOsX_s.cache +0 -0
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D1/D1yTrkh1wLtA65um5NDZDqgOJYkbnuPB1jJeqn0gveg.cache +1 -0
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DN/DNiaDTrxxV10EWiPegw6Rtwf-jgFjhp7K2TZSUT_aW8.cache +1 -0
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Da/DafvNPQk8SlKSG4ZJjgHHAPlbQLDSVhQ-5b9WMZ4iv4.cache +1 -0
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dx/Dx3aTfrI5VF5MuvCgSBCgbRd4iMdder-8OvMfrtaON0.cache +1 -0
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EK/EKpLfemr_IUowOSnIjCV1QvOvzgYt_SfduE_ZwNyfKI.cache +1 -0
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EQ/EQq51m2tS2-w7UL_mT2dQ-u8vReD7FSiyCmPIdTYRRE.cache +0 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EU/EUMQaSL_lD1Z9R_EAcJLyuNaRL2DICkT4xj5XCS4dwg.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Em/Em137X7-MWtcStt_1eIOF418j8dUh7hBC_94vwfVILQ.cache +2 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ez/EzqaRbf1GGVrgimbcDHQlVxE4aSBeIccfD1myQXqxRg.cache +1 -0
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FO/FOlMxqHy9-dO6zjIOX06fPLY2n3yjiHxmnuJ36yHtQs.cache +1 -0
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F_/F_xrUvfDEGW2HWJlPwVMsszDJST7NMt1o8H3x8Eqjzg.cache +2 -0
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fd/Fdh8clk4QyqC4tyyDJDlsvQYS4pD8tUJQryNyYirftc.cache +2 -0
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fy/FyXS9zF1yr_zW2vXB6E_CYQIGe1WZgRCEwdLiCnrWfk.cache +1 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/G9/G9AzrpNgt-do2ILa3m6Rm7PaPPuriZXnF4IsUYSc0GQ.cache +3 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/GT/GTTZq3-5ucG5FFjk5QvM0gPUnErTXVt9_x0gNovVK_4.cache +1 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gy/GySaRKbEm-CVxrKiAr4iNc6PorLWn1ZPDh_SMXbxxX4.cache +3 -0
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gz/GzuFtMoPy9ZbQxFv5eDS9uz7VHkUVkDvP4DzP1zfIpA.cache +0 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +0 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I2/I2rV-zM_o35vIzVjE6JjN54luUBVqNrxly-4U9C2huU.cache +0 -0
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I8/I8LSZjD849M-zlWFF5_wyM1DnnyIGDQIYFOA4-k7Xzo.cache +1 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IU/IUGIkL3Eu0gXGUtNjJ2KTqp13fBKEhaoMwFuMdTtyG0.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IU/IUiOnsp11P0WckGjGe2EZIl31tdgt9gQNwUSERKdm5g.cache +1 -0
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I_/I_eYb3RQOJg5MoeZmN02od4HnFhNDqdYeWS7aHEntpA.cache +0 -0
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Id/IdX1diTu6Ek6UiwgQtTsMM_KOVlndv3_b6-UyDE3qYw.cache +0 -0
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J-/J-Gv_xKM1Nigsi_t5jtQ-5sMjqLAZN2T0o14v9-hI1k.cache +0 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J2/J2KHJGQwbMl2Q8ETpSynUvJIUQW5bwmYpgScxltdlBo.cache +0 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4P8NPeJOF4V2Q6On9oMqdSFkNcjsrAch9_-rV0tDgs.cache +1 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JD/JD1DuxuAp8u_THuUDDOOi85I35BNWaJoNJOzrGQmvdo.cache +1 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JG/JGstfwqTHlnlh0tlcWM_1s0Ff7pXflOUrM6zlULXD_w.cache +2 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JH/JH7MnyfP9jO4ML1W7NqC2E3DpFmRab_4KSmXqIFfyAE.cache +2 -0
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JI/JIYHAj6g_qKUgy29WTdI2hsFfH3dFXfFcqXckz27jdg.cache +1 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JN/JNoI9B-x5jHF_qfsa6IIO3DPW8KssxNJsNK9F2qbRFs.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jh/Jh77UCfUEd9iwHEF4UsoftMyXg8GyTCTnMtS3vKdOKY.cache +1 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K3/K3MAGk8XcpzS5X0HTuUHgVU0VLM8mWXYgMpwnE5CC5w.cache +3 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K5/K5EtcC8KageFCflmXNDxhZUtRxqcqoCa28GiMAK5Tlk.cache +1 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KD/KDsjkma1n_FFLNbLLnsvs9xTrucgpgXdO3-5iI2FsVc.cache +1 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/L1/L1-2Ii78nV6I0WDUbCAWkdFWGsus1d_PciKtgydRHQE.cache +1 -0
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lp/Lpu_gbOZtQgoKR4k5IdQI6yBe16T_f2iDKZxyCcNVC4.cache +0 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M7/M7Cqoyak3dy9iCKmThw4HeH5HcFDKU1Uut_LTwgjtx0.cache +0 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MU/MU_g5_uXNVpt-lHFHZPNrFTiW8CpLMePeg5dDTq6uRM.cache +1 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MY/MYeFz-MQYpo2h8J_xKinEHbow05wf40rLnm7I9hiG_4.cache +1 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Md/MdULcMWXvKi83370F6lcp6pVjkaduI1OpPeK_iuHb24.cache +0 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mw/MwZxF-Ld9kIyAp6hrOzwGBhiDeU2tbiMtKc4lRTR3Hg.cache +5 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NW/NWL1PY76XYJ13P0DC2ZMg-Aj8UU0JPQfEbvuyX06Bds.cache +1 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Nm/NmXI49AE4TxnUg7GheyHyjugHjK-y63Ec3BklNMXULk.cache +1 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OA/OA72VeQ05pF6Ex57QQi6tDd04ZTA7f4veKvBd_oqs-s.cache +1 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTBjtEm36amBFx9-OAmOF3EWnr2-YQiZd6IUdKEgHko.cache +3 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ov/OvN-i6iA8MvqPyfz90O-eNsSEk6ZZTXz1NrfnZZiLsA.cache +2 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pg/PgSxusnbkJfEIGN7NDIzYs_I5Eel5M2h4LkApeBzqHE.cache +3 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pn/Pn370aXcRFPGTolqaTrwvvx-6ZBhs6iOIdodCrv6kII.cache +2 -0
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pq/PqEtzizP8HFsj9SoSc29Yob8DKB8kVltMOPFtp4_cfs.cache +2 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pq/PqWCNqm1ZMEQMfbxQuJiP5QQEYo8RiisCBHhBmd4Edk.cache +2 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q6/Q6uhfFRQOQA45Z8tgj3oBVfiTDsaiB5jufDdOVqWva0.cache +2 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QA/QAQoJ0cjBqu547FjbP8SuBDHk6S0yLbd3P4TWbXsmtI.cache +0 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QO/QOtpCYTTAfxmh-JTpnu1T3t4KPKqyWUrUrXPWHQdcZ4.cache +1 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qr/QrrVbn0dg_IYpw9D0Em4t8fhQhf7gCcah2p9ouo6_fI.cache +1 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/R3/R3GdNowIw3hlF0ujvYHDVVWVGlxQVJQFJWbrrEZjmEg.cache +0 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RT/RTh3gNPkgO3l1r7ZQfzEZ3-bJq34TeL9Yeie6Z74sjc.cache +0 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RU/RUljKovpPguUYZlGWwH8Uq3Dz5jooIXpsueQufD9C3A.cache +1 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RV/RV9h6sSJXZtqJVGTcP631X2wI5diOyzgVvUIuZQrSUI.cache +0 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rg/RgWfDOOQ4XkJRe_DawABG4RvcdJHTuksk681189ei3A.cache +3 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ru/RukwwJ7Lmi0dwdc9ZNkgrC6pNXzXq651EPDxipa78aU.cache +2 -0
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ry/RyD-qreU4wfJhGfqk9zf--DFGIOQhV17UrGoSxczlco.cache +1 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S2/S2O2x8-_FGPk-cJlkizaYLOIEqxJw17HPpJSOL0MZYc.cache +1 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S4/S4vBrJvVz1UP01u7LRqNX737hOI_mDd3ZPl7NvnSuoM.cache +1 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SE/SEwkUu1OvHKFh-u8I4obLeh8gqkx2z2JwD1KjVIuaFE.cache +1 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SN/SNgERjuWagfvj5wSayGOtfT95brSc8DDpkFiJdgBxX0.cache +1 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SO/SOb6BxK3G45jgBDbHt17DF9uFa_iABmpWGCw_F0X9pQ.cache +0 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SX/SXi6NGOGJdeRoxVwFGXLE36czvrMXo3lHKuBm4eiDaQ.cache +3 -0
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZ2zYWjqsBfC15K6UzYAeVK3l0jT1aVAvUmZCezRE4I.cache +0 -0
  222. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sb/SbzywrP6ah14UVsymNTOPaq4GOTJsp3C9biu17Nxhw8.cache +1 -0
  223. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sr/Sr_aszWSNdB_F6zBKYp23cqTx2qyt3ErPtjpQgfSbPo.cache +4 -0
  224. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TL/TLYNDjXB6--5naO6fE8rh4Wgu-HD19EiF7PdVz_3nCs.cache +0 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TN/TNRLsaNR_OsXAHJRlxtA59_yi0Ywroef-Omoaiy5oyk.cache +1 -0
  226. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ta/Ta1P7jGXWwiSVQjfMezpmdr7NDPagbH8rkuoxkw9tAg.cache +0 -0
  227. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Th/ThoItLPs8mmsOQRD7ZbIN5DH7eGr3UkWjpQ7SBqsPgE.cache +1 -0
  228. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ti/TiJwwmWdA77ftSiKUR9yu0TJemgjtkT4IaauSOyYfL8.cache +0 -0
  229. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tr/TrWdv_oxon9raWNUNzf6rNxU-o7ExWGo0fb9G8tvpPo.cache +1 -0
  230. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwXTNSA_NorVL0xyTpbgWWdb_YotZQCpMnxATglOU98.cache +0 -0
  231. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ul/UlAQOCevk-ZG1nTs9KCsKfWg6rVS5T4PlHUxpFhgbJI.cache +1 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VW/VWLnz994y7sfZE16oRC22SQ_ucD6mVZcCrIZ_MOBfIQ.cache +1 -0
  233. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VY/VYexEwWUWmwml7Etr-Wu1bjQK_9ctDO0Z6l3X6JbxO8.cache +1 -0
  234. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vb/VbcG7sudP_cXC3tT_FWAAfPbS9X-0g8Ek853dOAfy6U.cache +1 -0
  235. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wl/WlC2AKxOrEunxOipcU1I-f1lihQGby6U8UOEj13hiUs.cache +1 -0
  236. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X9/X98ohuir4hwOrFrzSme4JMDfYnzIsIsGuoaoviV9zhk.cache +1 -0
  237. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XF/XF5tYGblF6MCpWFAhRpHLBfYG6uxb2NN9ypl5nJGyFI.cache +2 -0
  238. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XN/XNHk13lf59pkMPH-W9hh57YnoEQef8vC0ubtkTNBF7I.cache +1 -0
  239. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XT/XTu_OJIoJM_TI94cV3B35O_1aTWIoiOvFMAw9cDuYHU.cache +2 -0
  240. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YG/YG9rrpVBxWFqnCHtcnmar5FvGbh2WFybMTH8LVsguyg.cache +2 -0
  241. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YH/YH0L_yB0e73CNcd263P29amwGtzCS4Esq7P9FUg2RnI.cache +1 -0
  242. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YU/YUc6fu20FHaK6IP5W7nEgsSbbpFtUvbk6vOIOw5Tr5g.cache +2 -0
  243. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/Yfre4CR0VDsYqN4th36R5YNDeP7kzZ6_zjG2SKBVBPw.cache +0 -0
  244. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yo/Yo5H4UJHArztqJqSWzAMN2u7YAcm5_HjbiE4WviMGC8.cache +0 -0
  245. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yo/Yoqq3KwrAPNE_-xeJFQeyr-RDVjqlFbxK66BtmXAc5c.cache +0 -0
  246. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z8/Z8rKwEc3buqlWXgXnoKMqaiVfNARY4ibzhyn1_TQEwo.cache +2 -0
  247. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z9/Z9EiCrPEJikjwohXGUyZpe3eLFTDEKi7Wj7EQks68so.cache +1 -0
  248. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zu/Zu5tAoCmNX67puQZaR3Y8TffDKpbwvCbJm4O_LVnb6g.cache +1 -0
  249. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_p/_pm_0rwTuVS36643Z8915Dqr2NYY8uqbELvAQcH1DsU.cache +1 -0
  250. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aQ/aQnaFh6hQ7VMO52JQBxstVXSrS3-4m9eL_RyTQtGzV0.cache +1 -0
  251. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/at/atAOb41P_Q78sJdwJ_zvtqiWVJjopAeYG4d03crb-tQ.cache +0 -0
  252. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ay/ayh76HmqeLRMSghmYXsAI1BfnPqMqZa1oqUjoHk8aBM.cache +1 -0
  253. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/az/azPz0MjaMrptwfd2WrANe0mC8dv4x54NUTZ_RHwB2Fs.cache +3 -0
  254. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bDGUpl0_kkZgFjHxhyM7wbd1kXwoRu6IMkf_zmKIl7w.cache +0 -0
  255. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bT/bTP3coNpfDpuWOzrgGsuYeL6iZznxseYWquj0UyfDDM.cache +0 -0
  256. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bW/bW1IJ8Jx6pO2ujOW3K6B3vPEtu3CfILTOIZXPZy_OO8.cache +0 -0
  257. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bd/bdfU5B92e9BnbLrGH5Heq1fsYG4Q3gc2xkHUJ3HRPhE.cache +1 -0
  258. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bj/bj9nCcaP7Y34lzTvVSkZa8cyRyMjYCP6M5-_AYCuOeA.cache +1 -0
  259. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cv/cvUFG-iGp3QdaQRB8LcWLeyFk1-ZJj9mAaMiTgNmhy4.cache +0 -0
  260. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cy/cyEecrJPGiaMG_zjQKAC_RG3gQ8x1J6oSTLW5sPN0HA.cache +1 -0
  261. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cz/cz-hTbllFwMLNM6SURv2Gc_iR9DzQiqzcnwrr-vFMy8.cache +2 -0
  262. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d8/d84403iB5YCNNOVMCTOicWh0mY7SobSV3aVd4ro4dDE.cache +2 -0
  263. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d9/d9BdLnODbEl2mT-8qTxCw5d4UxY9Sui2NUicHp-KM6c.cache +1 -0
  264. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dN/dNpIKXkxeI65UavBtUJ5clskOmoykmDNmP8FlMl_VSE.cache +0 -0
  265. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dV/dVNzuPB4VeyqnKjSmwPXMG6H88bVd2vKsS13PmhQ1tM.cache +0 -0
  266. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dV/dVZWFCqDgyxiTQBlUZgzzGntp17Augle1Z9jMxGFfgY.cache +0 -0
  267. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/di/diu5W6Afjb-wmGjAzMP5pK1awhZK_GYl63WYH4PWU3k.cache +1 -0
  268. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/du/duGvltO6-z27y85HLAsJENCSx8Ne8UTMzm9-hXjchOs.cache +0 -0
  269. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ep/epqN736SDvOnj4RFxwF8f66bXtB4G3LGwDLCHLmQx_Y.cache +3 -0
  270. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g2/g25tK__0OFGKPwfTFvU6LMqKD6uThsHFOf_wZNzh-5g.cache +3 -0
  271. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gH/gHOeZb8z1CTweFFAsXywyR9sV2hC60RZ0A5alXRPYsk.cache +1 -0
  272. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gK/gK7DVkeTH5kaLE4M25UVaEsxbVIXfF8Hzoa7a4NIA_0.cache +0 -0
  273. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gu/guLD08tGuYN9-QyPPMorlv27APHLeGDzaj-vDmzaLXQ.cache +1 -0
  274. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gw/gwvv-p7sUqFjoeT8xo5G6aqbp1jXyTczH_uImRqgKw0.cache +1 -0
  275. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/h9/h96mrC7hlEM5BokAayvD9ucfel_sH0mGMZA8maQWGFc.cache +1 -0
  276. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hH/hH5HROywpGMnR19XrnWQsIBTEcR9z26POHR10QfNxVM.cache +1 -0
  277. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hj/hjKZBPi7GkLwXTVyg3IQJNJ41_kEfnko7oq_u4Nmom8.cache +1 -0
  278. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hl/hlhVsn0HtbRUS7SaSI2k2lAz8R_YZStzp6xZOd3-K0w.cache +1 -0
  279. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4OZu7dEwcFP6RiyvrGRH5vXaaKjuHP8ogM6Ex5kq94.cache +34 -0
  280. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i4/i4k7wzTTAfiSQBg-4iT_BDC5TLi9Ce5QSib-hMHXuyw.cache +0 -0
  281. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iA/iA_PV-jzE0h7Oqhp4XAZru0XJYbcreWgXm89fBck9Aw.cache +3 -0
  282. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ic/icnSIKutQMyGC6ldcZtto1RYoeMd5ioRztJnDQ_aIcI.cache +1 -0
  283. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/io/ioMpSl__-tQJZEFn66EuOZggLFncMaagrATjUwG5mWM.cache +1 -0
  284. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j2/j234g8hRsPTcmiYh64h75cGkVJU1uU7x8YU9r4mEqJc.cache +1 -0
  285. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jK/jK8cqSSmB_ojub894xSJsjnMM2NAKChmtYFpzP48XU8.cache +2 -0
  286. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jT/jTvR7Jp6Mn5r3s0S5DYyIAkacmml4biuCXsRqR-IHQ8.cache +0 -0
  287. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jj/jjQ0o-RtYJK6fGw1F5wrT8xczOCI35N1kylOfeCIPy4.cache +1 -0
  288. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/k-/k-bsTA315sR8iUULydbJ9swQ_sbliU0Z3nmwvFduMoQ.cache +3 -0
  289. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kC/kClGcEovuXyEHKJSC1hme_H4Krcr3KVFFQCqpYSj0XM.cache +2 -0
  290. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l2/l2rSS2f4v-n85AJAXSuGlHsR08GH1y4HTzDyVbF_UnU.cache +0 -0
  291. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDQmRr0s6ARcHxzaNaW0RhESK09xHxhmrPcV9p_vGbc.cache +0 -0
  292. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lL/lLGpPEYuJxwFhLyaGWz5L5SNlB-x2eGWF5_H2fNaBqM.cache +0 -0
  293. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +0 -0
  294. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljVlagIG2x87dR5D1NSztu6gWmzzawm1nZOE4TmymmU.cache +1 -0
  295. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3RtRdvHROwjpGVwjOd8rEQ_tg8E03UHR12uHkQ5yns.cache +1 -0
  296. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mV/mV5u08q68IkPm0RFokofH5-kx1UxEZg72azxVXhAlLk.cache +1 -0
  297. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mW/mWUwcqwwOYPtROn-ONyUyM3BPdILAw5l0wvB9JyqsuU.cache +0 -0
  298. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mw/mw7MZKwF7E-7ZSspF4Xlsxode27OUoKRy1z6Pov4oq0.cache +1 -0
  299. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
  300. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
  301. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oK/oKJ87oCEPgOfFajJZhDtWonyaKq8uRlO8JYz6-cVDoI.cache +0 -0
  302. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oU/oUMojGzGoi9vWIsLjJ1lkpDHDSg24Ippt3LrUNxXBKE.cache +3 -0
  303. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oc/ocE5CB1firE1AKd7UYONa7YS3sHpvl3nbEjrdgWc-0g.cache +0 -0
  304. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oj/oj_rjV4KkuJmf-iGvO_hSFT692_PHcvoDvF3O-VQU2c.cache +1 -0
  305. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oo/oo5PuYWsxB2Bx_gvblY8ml6D3FnXhwEfMm-uUqicAp0.cache +0 -0
  306. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/op/oplkuD78F1Xg0Jh1N-3fbHQp1Vpfe2ybLFLjnK8Kzyw.cache +1 -0
  307. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pH/pHyZ9AbTUNEl1mAoh9pGTiZ3R2etAFRZR7_ym_DWwR8.cache +0 -0
  308. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/py/pygxCScpUQhNEC_KRfCYZcx2l0xRhRMnzPgCRLfp23A.cache +0 -0
  309. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qn/qnqqDu1kS8ig9iEei5CjAYND02unYf-E22-J953_GIc.cache +2 -0
  310. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qo/qomhlVAS_REPvgo7Dtrh7-r4Ni69XLSIykCxSM7wWXY.cache +0 -0
  311. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qp/qpnn4gewy2_0O7aLG1YcbCjdvoFzZxERgl-uAb2NBiU.cache +3 -0
  312. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qx/qxyGSXnlXlB1hGKL0ReQ-ySdIsxUBR6ZBTW5fZU_9Qg.cache +0 -0
  313. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rN/rNQxz_OgqtJJ20ehUUfYqYAoPenc2Qq3qsdKzpGg1To.cache +1 -0
  314. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rS-6Ew0r0DBaZoTyAD1yMYRbBiJtFyn6nwxe6G_9ruk.cache +2 -0
  315. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sC/sCtYNlU3vAvVC26ZKDuNgeq31ehn4J6OR31TpQVLAU8.cache +0 -0
  316. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sK/sKvoweUFusZwJ1IUlvNFxobu2z62MY8hwGZVQZlxCyg.cache +0 -0
  317. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPCsm6ym3xm2G7DaEcE8AIICPGqMBlhJuy3WLz2cnkk.cache +2 -0
  318. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sP/sPXXSTl0mnL3MC1fHMa_BLVITQ5rYbck0u985DQAe00.cache +0 -0
  319. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sS/sSkn0HMvM3rLJ_2-w_ulwClVYcJ0XmcH0orH2IQNawo.cache +1 -0
  320. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sl/sls963PmVXZzCIy9Ch2L-HCW41R4KwLFcX--npSGFUY.cache +0 -0
  321. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/su/sutg1rA65QFBgoJD-0HYa5kOAmcUdsYtBHzGbasKyUs.cache +1 -0
  322. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sz/szywK58M4yVzq_ikv80eyFp6W5kBPCipX_Bz83CrCKI.cache +2 -0
  323. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t8/t8jEC5t5VJ5SJpmaePxJ6MAVt1q1wi1iTqQky-b1juE.cache +0 -0
  324. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tM/tMFk2brkn_cv2m4TrPivZL6DI6kTb6iljDzaJAY77NI.cache +0 -0
  325. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tY/tYYp0H86bioOkPFc1RbWFH68qWBtL9S2yA6tuwJgzwE.cache +1 -0
  326. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tz/tzawx9c8FRRG-QmTL-Jtrc8beWTUrYpb30NVV1fKGew.cache +1 -0
  327. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-3FDQkXVo6TXPl_h-_tlNmZfB_M3W4KLFHeL_PbWVo.cache +2 -0
  328. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uF/uFmhqcLtlSH6sdigmpsMJIOlbB_xVHd8-fr_sVgWgEA.cache +0 -0
  329. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uQ/uQqnjuuo618wwjt9jXlYcIsldsplSsIN3NshQ5-zMuU.cache +1 -0
  330. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uo/uoYAZRV-R0GhhsrHYTt4drILzKOa3_zSzpBzU6jBeuA.cache +1 -0
  331. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vC/vCTeCTUOGd9Fb26euiorkxjblPbC2BqzbEjoVxvjsRI.cache +0 -0
  332. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vX/vXQAX6wcse5IxAuysExAkVcqi1itMI9X06wcwaMkRZk.cache +0 -0
  333. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vb/vbEKu3SXV3oiwyM0lIW94FHcb81v-HlbMRoIsh8YSgQ.cache +1 -0
  334. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w2/w2sLW3Z38joV9ng6paqC1dFBgouTAnChoHQIjK3mQtw.cache +1 -0
  335. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wQ/wQ6JCU93qzbLum7H2llMRi6syrlg4GSiTjLKmb_Pbvk.cache +1 -0
  336. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wa/waiHxrcavi3eaZqtHp_iZa_Xx8A_poK45ivYx73qDnM.cache +0 -0
  337. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
  338. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ws/wshuOiy0DqCG4PUGL0CPjZhA5sxfnA-jqC7elF3Xbpw.cache +0 -0
  339. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wy/wymDHEbVm2LUuNGSCmMFfaYbe5GGShEdHFd4LIUlACE.cache +3 -0
  340. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xS/xSWEENE2MwGitZG07bKTXThrda2Y_UoFELvWhAjozKw.cache +0 -0
  341. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xq/xqGZ2SqDZfTputNIngRx7YthNyQg3QPv_PDFT5gb79s.cache +1 -0
  342. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y5/y5_FzvNNSMpbMmHCIsG4K4Qz8TdMhunGIVqp5nak80I.cache +1 -0
  343. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yK/yK_ltn3FtW6N9iCXqjexaVMHtm9PZtKGfoCgGpLX1tg.cache +0 -0
  344. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yW/yW8j6--nX1z7PyocdbnwtcSwWDE-b0Q2X1tkotvKrdE.cache +1 -0
  345. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yY/yYwB1Ug3ogrNxQDvt8ueEyzsR32PT1EzRHj_ljxvelQ.cache +1 -0
  346. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yy/yyPV0MatlE_6qP8W4KY8vgxiDg_uR6pZRd9U80ZdTV8.cache +1 -0
  347. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z3/z3Js_pcghMRJBt3n7rl9lB8atXrsbV0vbEBNyhsgsj4.cache +1 -0
  348. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ze/zea0MANxU4zQJ4Y3NOpM4O-iDT_oL-ATCyiZ-KRZJ20.cache +1 -0
  349. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zf/zfPdCqf3PlK-fjEu0zz4CpZoQXvuu_GMkbbUORnAFec.cache +1 -0
  350. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zl/zlSTYPztqYVdN3sgoh99oDWUs0viPTW9Iaaxc8urz00.cache +2 -0
  351. data/spec/dummy/tmp/development_secret.txt +1 -0
  352. data/spec/dummy/tmp/storage/CF/SH/CFSHNUWFo361eM5eFsjjNSji +0 -0
  353. data/spec/dummy/tmp/storage/Dh/V1/DhV1MFZAXjHe7jFGjdSaqtzm +0 -0
  354. data/spec/dummy/tmp/storage/GU/q4/GUq4hFQeJZCBJXy5AkoxL5Pr +0 -0
  355. data/spec/dummy/tmp/storage/Hs/QV/HsQVZKt2eGhoJj9GhAWNmmrQ +0 -0
  356. data/spec/dummy/tmp/storage/Kc/EJ/KcEJa9B69qLYhj35pgHb2Cd9 +0 -0
  357. data/spec/dummy/tmp/storage/Yx/oL/YxoLt4RgE7WkTehRGTPUeXZX +0 -0
  358. data/spec/dummy/tmp/storage/aM/57/aM57uKLLDGVnFcK91NdWo4A6 +0 -0
  359. data/spec/dummy/tmp/storage/ap/2Z/ap2Z5QnZtfgLPT8FVW3ev2hE +0 -0
  360. data/spec/dummy/tmp/storage/d2/fD/d2fD7omgnjuhf87EEt7DFc4c +0 -0
  361. data/spec/dummy/tmp/storage/kV/6G/kV6GEcNwn15FWgRD5NnFFmBg +0 -0
  362. data/spec/dummy/tmp/storage/pU/6b/pU6b7pfVADvk6KWM34WCG9pi +0 -0
  363. data/spec/dummy/tmp/storage/sf/7h/sf7hbKZrqdMSC62Dfkc8rwKe +0 -0
  364. data/spec/dummy/tmp/storage/uQ/tn/uQtnL9wfUCYQyrfXaqJ3d9gq +0 -0
  365. data/spec/dummy/tmp/storage/vD/eE/vDeEMqEomB3tB5ktq4FaH67d +0 -0
  366. data/spec/factories/active_storage/attachments.rb +7 -0
  367. data/spec/factories/active_storage/blobs.rb +10 -0
  368. data/spec/factories/delayed/backend_active_record_jobs.rb +5 -0
  369. data/spec/features/de/backend/system/active_storage/attachments_feature_spec.rb +20 -0
  370. data/spec/features/de/backend/system/active_storage/blobs_feature_spec.rb +20 -0
  371. data/spec/features/de/backend/system/delayed_backend_active_record_jobs_feature_spec.rb +55 -0
  372. data/spec/files/active_storage/blob/example.png +0 -0
  373. data/spec/models/generic_spec.rb +51 -0
  374. data/spec/models/i18n_spec.rb +42 -0
  375. data/spec/rails_helper.rb +62 -0
  376. data/spec/spec_helper.rb +96 -0
  377. data/spec/support/capybara.rb +1 -0
  378. data/spec/support/factory_bot.rb +12 -0
  379. data/spec/support/pry-rails.rb +1 -0
  380. data/spec/support/rao-shoulda_matchers.rb +5 -0
  381. data/spec/support/shoulda_matchers.rb +8 -0
  382. metadata +731 -0
@@ -0,0 +1,179 @@
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
+ # Collection of methods to detect if a file type was given.
133
+ # config.file_methods = [ :mounted_as, :file?, :public_filename, :attached? ]
134
+
135
+ # Custom mappings for input types. This should be a hash containing a regexp
136
+ # to match as key, and the input type that will be used when the field name
137
+ # matches the regexp as value.
138
+ # config.input_mappings = { /count/ => :integer }
139
+
140
+ # Custom wrappers for input types. This should be a hash containing an input
141
+ # type as key and the wrapper that will be used for all inputs with specified type.
142
+ # config.wrapper_mappings = { string: :prepend }
143
+
144
+ # Namespaces where SimpleForm should look for custom input classes that
145
+ # override default inputs.
146
+ # config.custom_inputs_namespaces << "CustomInputs"
147
+
148
+ # Default priority for time_zone inputs.
149
+ # config.time_zone_priority = nil
150
+
151
+ # Default priority for country inputs.
152
+ # config.country_priority = nil
153
+
154
+ # When false, do not use translations for labels.
155
+ # config.translate_labels = true
156
+
157
+ # Automatically discover new inputs in Rails' autoload path.
158
+ # config.inputs_discovery = true
159
+
160
+ # Cache SimpleForm inputs discovery
161
+ # config.cache_discovery = !Rails.env.development?
162
+
163
+ # Default class for inputs
164
+ # config.input_class = nil
165
+
166
+ # Define the default class of the input wrapper of the boolean input.
167
+ config.boolean_label_class = 'checkbox'
168
+
169
+ # Defines if the default input wrapper class should be included in radio
170
+ # collection wrappers.
171
+ # config.include_default_input_wrapper_class = true
172
+
173
+ # Defines which i18n scope will be used in Simple Form.
174
+ # config.i18n_scope = 'simple_form'
175
+
176
+ # Defines validation classes to the input_field. By default it's nil.
177
+ # config.input_field_valid_class = 'is-valid'
178
+ # config.input_field_error_class = 'is-invalid'
179
+ end
@@ -0,0 +1,439 @@
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, class: 'form-control-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', 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', 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 d-block' }
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, class: 'form-control-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', 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 form-control-label'
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', 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 form-control-label'
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 form-control-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 control-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 form-control-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 flex-wrap justify-content-start 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
+ config.wrappers :custom_boolean_switch, tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
288
+ b.use :html5
289
+ b.optional :readonly
290
+ b.wrapper :form_check_wrapper, tag: 'div', class: 'custom-control custom-checkbox-switch' do |bb|
291
+ bb.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
292
+ bb.use :label, class: 'custom-control-label'
293
+ bb.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
294
+ bb.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
295
+ end
296
+ end
297
+
298
+ # custom input for radio buttons and check boxes
299
+ config.wrappers :custom_collection, item_wrapper_class: 'custom-control', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
300
+ b.use :html5
301
+ b.optional :readonly
302
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
303
+ ba.use :label_text
304
+ end
305
+ b.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
306
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
307
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
308
+ end
309
+
310
+ # custom input for inline radio buttons and check boxes
311
+ config.wrappers :custom_collection_inline, item_wrapper_class: 'custom-control custom-control-inline', tag: 'fieldset', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
312
+ b.use :html5
313
+ b.optional :readonly
314
+ b.wrapper :legend_tag, tag: 'legend', class: 'col-form-label pt-0' do |ba|
315
+ ba.use :label_text
316
+ end
317
+ b.use :input, class: 'custom-control-input', error_class: 'is-invalid', valid_class: 'is-valid'
318
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
319
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
320
+ end
321
+
322
+ # custom file input
323
+ config.wrappers :custom_file, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
324
+ b.use :html5
325
+ b.use :placeholder
326
+ b.optional :maxlength
327
+ b.optional :minlength
328
+ b.optional :readonly
329
+ b.use :label, class: 'form-control-label'
330
+ b.wrapper :custom_file_wrapper, tag: 'div', class: 'custom-file' do |ba|
331
+ ba.use :input, class: 'custom-file-input', error_class: 'is-invalid', valid_class: 'is-valid'
332
+ ba.use :label, class: 'custom-file-label'
333
+ ba.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
334
+ end
335
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
336
+ end
337
+
338
+ # custom multi select
339
+ config.wrappers :custom_multi_select, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
340
+ b.use :html5
341
+ b.optional :readonly
342
+ b.use :label, class: 'form-control-label'
343
+ b.wrapper tag: 'div', class: 'd-flex flex-row justify-content-between align-items-center' do |ba|
344
+ ba.use :input, class: 'custom-select mx-1', error_class: 'is-invalid', valid_class: 'is-valid'
345
+ end
346
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
347
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
348
+ end
349
+
350
+ # custom range input
351
+ config.wrappers :custom_range, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
352
+ b.use :html5
353
+ b.use :placeholder
354
+ b.optional :readonly
355
+ b.optional :step
356
+ b.use :label, class: 'form-control-label'
357
+ b.use :input, class: 'custom-range', error_class: 'is-invalid', valid_class: 'is-valid'
358
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
359
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
360
+ end
361
+
362
+
363
+ # Input Group - custom component
364
+ # see example app and config at https://github.com/rafaelfranca/simple_form-bootstrap
365
+ # config.wrappers :input_group, tag: 'div', class: 'form-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
366
+ # b.use :html5
367
+ # b.use :placeholder
368
+ # b.optional :maxlength
369
+ # b.optional :minlength
370
+ # b.optional :pattern
371
+ # b.optional :min_max
372
+ # b.optional :readonly
373
+ # b.use :label, class: 'form-control-label'
374
+ # b.wrapper :input_group_tag, tag: 'div', class: 'input-group' do |ba|
375
+ # ba.optional :prepend
376
+ # ba.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
377
+ # ba.optional :append
378
+ # end
379
+ # b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback d-block' }
380
+ # b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
381
+ # end
382
+
383
+
384
+ # Floating Labels form
385
+ #
386
+ # floating labels default_wrapper
387
+ config.wrappers :floating_labels_form, tag: 'div', class: 'form-label-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
388
+ b.use :html5
389
+ b.use :placeholder
390
+ b.optional :maxlength
391
+ b.optional :minlength
392
+ b.optional :pattern
393
+ b.optional :min_max
394
+ b.optional :readonly
395
+ b.use :input, class: 'form-control', error_class: 'is-invalid', valid_class: 'is-valid'
396
+ b.use :label, class: 'form-control-label'
397
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
398
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
399
+ end
400
+
401
+ # custom multi select
402
+ config.wrappers :floating_labels_select, tag: 'div', class: 'form-label-group', error_class: 'form-group-invalid', valid_class: 'form-group-valid' do |b|
403
+ b.use :html5
404
+ b.optional :readonly
405
+ b.use :input, class: 'custom-select custom-select-lg', error_class: 'is-invalid', valid_class: 'is-valid'
406
+ b.use :label, class: 'form-control-label'
407
+ b.use :full_error, wrap_with: { tag: 'div', class: 'invalid-feedback' }
408
+ b.use :hint, wrap_with: { tag: 'small', class: 'form-text text-muted' }
409
+ end
410
+
411
+
412
+ # The default wrapper to be used by the FormBuilder.
413
+ config.default_wrapper = :vertical_form
414
+
415
+ # Custom wrappers for input types. This should be a hash containing an input
416
+ # type as key and the wrapper that will be used for all inputs with specified type.
417
+ config.wrapper_mappings = {
418
+ boolean: :vertical_boolean,
419
+ check_boxes: :vertical_collection,
420
+ date: :vertical_multi_select,
421
+ datetime: :vertical_multi_select,
422
+ file: :vertical_file,
423
+ radio_buttons: :vertical_collection,
424
+ range: :vertical_range,
425
+ time: :vertical_multi_select
426
+ }
427
+
428
+ # enable custom form wrappers
429
+ # config.wrapper_mappings = {
430
+ # boolean: :custom_boolean,
431
+ # check_boxes: :custom_collection,
432
+ # date: :custom_multi_select,
433
+ # datetime: :custom_multi_select,
434
+ # file: :custom_file,
435
+ # radio_buttons: :custom_collection,
436
+ # range: :custom_range,
437
+ # time: :custom_multi_select
438
+ # }
439
+ end
@@ -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"