woodlock 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (447) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/admin/admin_users.rb +28 -0
  5. data/app/admin/dashboard.rb +33 -0
  6. data/app/assets/javascripts/active_admin.js.coffee +1 -0
  7. data/app/assets/javascripts/woodlock.js +3 -0
  8. data/app/assets/stylesheets/active_admin.css.sass +17 -0
  9. data/app/assets/stylesheets/woodlock.sass +67 -0
  10. data/app/controllers/omniauth_callbacks_controller.rb +27 -0
  11. data/app/controllers/registrations_controller.rb +16 -0
  12. data/app/helpers/woodlock_helper.rb +14 -0
  13. data/app/models/admin_user.rb +6 -0
  14. data/app/models/user.rb +28 -0
  15. data/app/views/devise/confirmations/new.html.erb +21 -0
  16. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  17. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  18. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  19. data/app/views/devise/passwords/edit.html.erb +34 -0
  20. data/app/views/devise/passwords/new.html.erb +24 -0
  21. data/app/views/devise/registrations/edit.html.erb +42 -0
  22. data/app/views/devise/registrations/new.html.erb +56 -0
  23. data/app/views/devise/sessions/new.html.erb +45 -0
  24. data/app/views/devise/shared/_display_devise_error_messages.html.erb +6 -0
  25. data/app/views/devise/shared/_links.html.erb +25 -0
  26. data/app/views/devise/unlocks/new.html.erb +23 -0
  27. data/app/views/layouts/_facebook_oauth_script.html +18 -0
  28. data/app/views/layouts/devise.html.erb +16 -0
  29. data/config/environment.rb +1 -0
  30. data/config/initializers/active_admin.rb +254 -0
  31. data/config/initializers/devise.rb +271 -0
  32. data/config/locales/de.yml +137 -0
  33. data/config/locales/devise.de.yml +98 -0
  34. data/config/locales/devise.en.yml +98 -0
  35. data/config/locales/devise.pt.yml +98 -0
  36. data/config/locales/en.yml +132 -0
  37. data/config/locales/pt.yml +98 -0
  38. data/config/routes.rb +14 -0
  39. data/db/migrate/20150605144157_devise_create_users.rb +42 -0
  40. data/db/migrate/20150605182042_add_omniauth_columns_to_users.rb +6 -0
  41. data/db/migrate/20150617115807_add_first_name_and_last_name_to_users.rb +6 -0
  42. data/db/migrate/20150623094345_devise_create_admin_users.rb +48 -0
  43. data/db/migrate/20150623094348_create_active_admin_comments.rb +19 -0
  44. data/lib/tasks/woodlock_tasks.rake +4 -0
  45. data/lib/woodlock.rb +4 -0
  46. data/lib/woodlock/engine.rb +33 -0
  47. data/lib/woodlock/version.rb +3 -0
  48. data/test/dummy/README.rdoc +28 -0
  49. data/test/dummy/Rakefile +6 -0
  50. data/test/dummy/app/assets/javascripts/application.js +15 -0
  51. data/test/dummy/app/assets/javascripts/home.coffee +3 -0
  52. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  53. data/test/dummy/app/assets/stylesheets/home.sass +3 -0
  54. data/test/dummy/app/controllers/application_controller.rb +15 -0
  55. data/test/dummy/app/controllers/home_controller.rb +5 -0
  56. data/test/dummy/app/helpers/application_helper.rb +14 -0
  57. data/test/dummy/app/helpers/home_helper.rb +2 -0
  58. data/test/dummy/app/views/home/index.html.erb +6 -0
  59. data/test/dummy/app/views/layouts/application.html.erb +18 -0
  60. data/test/dummy/bin/bundle +3 -0
  61. data/test/dummy/bin/rails +4 -0
  62. data/test/dummy/bin/rake +4 -0
  63. data/test/dummy/bin/setup +29 -0
  64. data/test/dummy/config.ru +4 -0
  65. data/test/dummy/config/application.rb +28 -0
  66. data/test/dummy/config/boot.rb +5 -0
  67. data/test/dummy/config/database.yml +25 -0
  68. data/test/dummy/config/environment.rb +5 -0
  69. data/test/dummy/config/environments/development.rb +47 -0
  70. data/test/dummy/config/environments/production.rb +79 -0
  71. data/test/dummy/config/environments/test.rb +42 -0
  72. data/test/dummy/config/initializers/assets.rb +11 -0
  73. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  74. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  75. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  76. data/test/dummy/config/initializers/inflections.rb +16 -0
  77. data/test/dummy/config/initializers/mime_types.rb +4 -0
  78. data/test/dummy/config/initializers/session_store.rb +3 -0
  79. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/test/dummy/config/routes.rb +59 -0
  81. data/test/dummy/config/secrets.yml +22 -0
  82. data/test/dummy/db/schema.rb +75 -0
  83. data/test/dummy/log/test.log +462 -0
  84. data/test/dummy/public/404.html +67 -0
  85. data/test/dummy/public/422.html +67 -0
  86. data/test/dummy/public/500.html +66 -0
  87. data/test/dummy/public/favicon.ico +0 -0
  88. data/test/dummy/public/woodlock-background.jpg +0 -0
  89. data/test/dummy/public/woodlock-logo.png +0 -0
  90. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-GTZvD1czGKAxpyoO5EKde12xUV4zhFj05bDeXPAkiU.cache +1 -0
  91. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-RQLg8Np5Oo6QCvvtQW5dxdUoV8corD0fzdZzMe7OLw.cache +0 -0
  92. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-rjH-jBOnsnC-YyaCvJm1X5tSECP98oiHBPQojI7yCQ.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/04wF4A_VFmgq5-g1VM2mpzI3jEFZAFopn06Uy1T2QCE.cache +2 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/0OLxFyAS3nLVsf_M7c4eYW0u5C1m0tPiLmpkNkAUMEk.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/0pH3nygLEpVy-p9i7_NuOAgBbf4tiAKeVR1r3H4RbZ8.cache +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1-FuDeUG57xTtcc-4mWBL2Bm_YN8tynD8Y9ZXF_C7nA.cache +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/10PGhdTcCbOdJKtDk-Mic98Oame9GnwGRKWTa8_I3ek.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1BU6ykiVD7KrZTR23ZuBWLjED6sG9T8BtKrcIx8G5B8.cache +1 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1JSaCFM1ZAHnE07nIlIq79igv2swRXH1PWak0xVGIc8.cache +2 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1TQt02QVxITkYtmEpILnUMW8dsH6q5jxs5k8vlVfEb8.cache +2 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1t0kqFSFL9TAyCSW0qG3NMmWDPYgf0E5__Ez2d5ws-g.cache +1 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1uuCU7VXIfL_AT93L0UajoDFkLrpOR0U4PwMQAtBGJs.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/25cTSYm9UGUIf40yA-LCZC4QaySzEvaAJdJ80iGz_Vg.cache +48 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2STPKFX65SmGEZCT5Gei99tRtUAUYuZeAeu2PZZJs3Q.cache +0 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2XPZmPSXOL4mRfUQB0hmyUsnT9PJYC7RkrZXg9U-KVs.cache +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3-F_h0Jb0_eZTQsOfG5hpzRHzpqQRDoHPhltZr-r49M.cache +0 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/39UKaXOTAwCq2ozDca7Me27CzleF2yOcL2fJ9Sg34hw.cache +1 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3BWrF8zr95sk3y1dM-sa2lflcxgQMVWI8V0JsBKj-6s.cache +1 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3H7JaopV1V3opqCAjFrhG78p3FQZtZob6aBKm_-HWkg.cache +2 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3M09PS8yLiBaB2pTo0y_JmLOYmDRQLbLUQF9o7RFS0Q.cache +0 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3PzVaV0RhO65mOnx_hiZJsY0xD5-gFWevp9KShEEHEY.cache +66 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3RPQRWovVBHr9yk3Ev6Ts8KyAMiWzKEr8E5Lef27ORE.cache +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3_gdSmn3GfARmk0uUHtTvlCdaJtFY1L8lPA6wn11jjk.cache +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3zHVpEssB_cM4Lw5xDZXo7Mk_r-2GDfMnDQ4F-kmoNU.cache +1 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4CkxswoJEsO_8Rl8wJTmTzvjI4HJqlnNG9jbYx4zPCA.cache +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4HHxewzRNC2tWacHHflMHcArQwAVbJklaY-7nrvYtpM.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4eeq3QrorPZAuYPFPuEMP-_qyCbjo9KHSu1h-8pTIMU.cache +0 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4pEhYVBGfbO1iZqx4qCv6a9ckVlcP_Hs85CIcj0QkgA.cache +1 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4ucXrfrrimpO3kQiFbqPMCnpemgCVHISt75gCLDioGA.cache +0 -0
  120. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4vAXOzf_Lty3-yOThqf2-r0UIliMYc3yN7VSqntLC2I.cache +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/59MVJbNDQPT5UXbbrum8bobfsCwmzAHYZyL2aCQXdUE.cache +48 -0
  122. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5LjUlvZO8b8kiGpyfYjlyKfF6DGzxP0143d-xqe7_H8.cache +0 -0
  123. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5nGdtOhIFn6r0UYZkmST87K1G5sLSCRcAFylD6cLtzE.cache +49 -0
  124. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/66rPqGdAdNR-50lPxyr75MLdJ_OrEcN_uiCsq0ETKps.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/6O2Cmm3oe67lSpkG_I15ZLurGq9-tcm-Sc6PH00S5GE.cache +0 -0
  126. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/6_HWc7IXBN7MNbRHzNvyK-7Exn7eVtgD0BoTEkEdMHc.cache +0 -0
  127. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/6exx8TC3Q494ydTmdGQ2oUKtPYXSR6IKGh3wICaeTH4.cache +1 -0
  128. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/6lLdRcJYW2GfjzCchC4ghxt77eqgy67bNQfEFTFh09w.cache +0 -0
  129. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/6lwSSc8-DI_16IPYc3K1j5AZj1QJ8pddUkSbiZA-NU4.cache +0 -0
  130. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7M5pja2WNHk4DdvWv3F4cuxZuZeuqwBEZ8WfC4NaTMI.cache +1 -0
  131. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7MsxIDOPp6xtq845eRsBBIP7EqJOOskSUL1jH6-39G4.cache +1 -0
  132. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7RtBLRQOU-honwMIJNCfpag5hKG62JDqJVYXnuULk5c.cache +124 -0
  133. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7jAThjX6RmN5VqQW8QNNnPKLKtZAGSpoQeAELinH554.cache +0 -0
  134. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8-RUBGc3Vg9sKK9EXRdQZA-GvlNXu1EIzgYb0-mEGBc.cache +1 -0
  135. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/81X5ZPH11kxzsbtzZdn5-JI0rDOcgA1S6QkFHInzm2o.cache +2 -0
  136. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8VWQnAO9mZY9EIESYoN6dztzDxQAr_EzVBLgFDl9sHk.cache +1 -0
  137. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8dnlNiLEgdGidLsONrbISWRVcE5DD6LeJDMv_iBejJ4.cache +1 -0
  138. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8l7fxTmoalLNGIOcJ5TW-3nmNRm6QMB1hKqnkp_WlgY.cache +1 -0
  139. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8uTcpufXTtaRfgombHpOe8ZalnigPM9g_uQKQPgK8hY.cache +2 -0
  140. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/93uTocMVL9bQheUgF57QggIxHDsWnl7ymTAOruinXVQ.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/945xryyZpjwhr4SKw6a8VVln-mBeXqlqWxVHX6wAo1o.cache +4 -0
  142. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9Pi0ZIQb74X0pQGNY1EtNR9Pr8S8NWJ4MJZA-MjewAw.cache +1 -0
  143. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9lsyQwaDBc_pj4ljRl67WakBV4BMKO0agJ6U2Pxeuso.cache +1 -0
  144. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9tcRcQoORQ1geBJ2GcKWJxIUXR_Bw8NpiAowGRiVN1o.cache +2 -0
  145. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9w7c0v3wmJvU-enCE8KiBWLjgGCxlUCj_7bhlf8A4XM.cache +1 -0
  146. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/A9yDo9hth_2eKSosSE0QOI6ho-0KgAlIePOLcovzzzw.cache +0 -0
  147. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/AEhvIspm-GIjbPpS5GXNbnkLz7skz-TilcfvWQRrvAM.cache +1 -0
  148. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ARQ6CUeME9y_H4sny28fFHIjriolA87eY0sinlkEeX0.cache +1 -0
  149. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/AXTcAoTQxJmq9cKYJdag5JANIkK8NAmQYH3bL1l9AM0.cache +1 -0
  150. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Afg_DL9tTTdrkAYrUPbvl0dnjBfxKXGfMfjGZDnGR5M.cache +1 -0
  151. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/AgGEF5cqO0zaTmk_uBEyMMqdi5OQpYenFFbUrCMmMxY.cache +0 -0
  152. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/AtCnahy2D4x43ffSRsvTU8WYfGvF2BjP2i_O3YoF2Yg.cache +7 -0
  153. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/B26D_KLTMvPOesBQw-CouK8LsatEMV1oxx4SvrVm0fo.cache +1 -0
  154. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BJ5atM-vjG5eTjYy1YZsQZCg_F-e33QzFsiPKgjpPuo.cache +2 -0
  155. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BUFcEyae-9BAG8ca1Aca6KXZ4B5rLN0_23PRsfnW9Rs.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BjM524RE0-qLw70stQ_DjaPZaloke2atV66wkVuLh4w.cache +0 -0
  157. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BrgCuwq67l86Wyql3YT-m_Bth31_r5TVjscvn1XRJOk.cache +0 -0
  158. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/C7odDsql9svLYenh6X6rpY5R4QYNt-Lkj2Gdlijdcp0.cache +0 -0
  159. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CExzylA1mTHXamQHd2KcPDBEmj0BdCuAybMdG7741Ww.cache +0 -0
  160. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CbleOjYKQ0gA0Q9NfATwNlw_2Ln5RX1_mjnoLLl86FI.cache +2 -0
  161. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/D1cU93N28SyZm-8O-DV-Kf5KJpKuScNGP80yMwOCKno.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DNX6PpA34td35If-3diJ-43DYhozwyVMulTkMi_MHCY.cache +0 -0
  163. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DOBKmp7czOd1bzDT-Vp_R0LBgynCTJrqFJ7LEoEOoSA.cache +1 -0
  164. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DUZ75ulFxB6I3bpVegZVodWP-v5cUQYzG78SsfkTaBE.cache +1 -0
  165. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DcrLtrKruaFIVNjTE2fZnUIrxdhE1gAoMI5xJwFpCx0.cache +0 -0
  166. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DeJU02CC_M33UcfluGjKkIyeD1pIg73cXq3v3pukHZo.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/E0VoOEhEWz-X3iQcw4LPCC4GRpgu1iFfOALz3h_lM2k.cache +0 -0
  168. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/EBLEOqiAoPORSMeHbJGDaioIZa-fGePhisA5991JZao.cache +1 -0
  169. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ERhBtBdpeXo2-F01KbW2EO4a0-9Px78I1pHR5fn2B1Q.cache +1 -0
  170. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Ej4I8I_AiFu7vTwcxzdUvbAd-afCWdk8Qzn07JNxQgI.cache +1 -0
  171. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Exfny-oSZJ3WReiNtK9Wftkw2Td52m7XY3ssOJRX2d4.cache +0 -0
  172. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/EyqeQMnaiq8lujGr_CL56niyNGU0tfkWkHyt6xL-Fxg.cache +1 -0
  173. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/EzsoNa1eWDS3ivxrOSQWZ4X1LjjCrSOKRkk2vsF1iZE.cache +1 -0
  174. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/F0edV2Li3whs1DFQpr0ldskCRGDYHkvpWTjpVuveZmY.cache +0 -0
  175. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FE8vY1ZCofjKLmi-AaSWVW8M3r-Wz7G9E7QYCpHH8eM.cache +0 -0
  176. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FNXF6FZHunZqKgSchXOGanUNtjudw3HBZG1FeviiNik.cache +2 -0
  177. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FSFYa-Zt83PB4pOS4Xpe1zCTUZSaAwWysHsCN612tfg.cache +0 -0
  178. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FWKZasrpz89UjoX_JEo94Ckki71A97htBL7PbqCyC9U.cache +0 -0
  179. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Fej6SzLMLM-6ukZo-Qy0OpeP15f2QXNenn3xGR-7GWY.cache +0 -0
  180. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Fwm2Qiay2E0QToZFtkP6UB7Ksbc5LM_bAC-pvt2NG38.cache +1 -0
  181. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GB-Q_hUVcPsWwiSEXbMrjrqwfn4NP8IBOrnoyTJWXm4.cache +1 -0
  182. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GG0LnhhF99vWovd0d9Wj2Kn0E_iGNx0hLEbFDTjJmCc.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GPy3tuLvxqQZf6i4if_5FFNArJ-JOcuWjxCqM1HxtDs.cache +1 -0
  184. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GSvZkcI2yD3d9MfXDqtoUxv3v8DAAW4rdX5xLYjjPJk.cache +0 -0
  185. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Gi-xqYcSPkBka7s2rT1Hh--RyryzAytTuBPfNpl57vE.cache +0 -0
  186. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GvyNyTC_ey1FB2lK6zXhHYsIzE6tTsj9cw-L5wCfvik.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/HeUK42XoXEQ6xnL79sIQoOcM8SPH2XPoIgGBzinNEeI.cache +1 -0
  188. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/HkrIGK65pV2fOc388yYuQ4TI0bsowq5H6SSmFd21Cis.cache +1 -0
  189. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/I-evuoqmf7YvA7Hx_gYbo3bTmf41sOkJDbPGnmYz6D0.cache +2 -0
  190. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ICaNSnVlJ9OZPuGWdE0fOAi4MZWozD9xf4tPUmxJ1Cs.cache +1 -0
  191. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IDsm7EePPQg2DlLkKznobUkq5h-gS4YwxVFyoiamje8.cache +5 -0
  192. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IIcJ9awl34a0NNI5vuNjtH_Of5ujoQx4YPITpjCSW00.cache +2 -0
  193. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IO_VL6YxikMQhejmolm2mX2dXh_ET3D4CV9bvixV4gI.cache +0 -0
  194. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IgF7LiFpml54cbSXzjgZQWsvaActtDj35YP0UsKKz8U.cache +1 -0
  195. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Im027hwBGCyKBA3ejmWWEeCqUoH8mu8Vyr-v5eHUnEo.cache +0 -0
  196. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Iqhyrx1eY-igUwHV9W_QABIU9XKsBTU2hg3JVSZwPAY.cache +5 -0
  197. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IyfA2TU9Ml5mc7h8ASXLrEm2eXzqG9ell-iAp66w5gI.cache +0 -0
  198. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/J6g_Z_tWTZ8BngtuqvmCwvqERp8iZG-OSZu4G454KgY.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JHMf8xhImMPcF352t9-MuwY8BcIOcq2cbI5FNDFXdlg.cache +1 -0
  200. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JLwkoOJvYZhtPy8t70IqBL7sLwhf5l2jeX7s7QFcnL8.cache +1 -0
  201. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JMUvIFzWWEmSExyjMDqBoRoxfxAvSEzx_FPOZAjR_8k.cache +1 -0
  202. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JSnI4uxiM_jVBlqtbT37_g5AEmEZf2-w5q60CacaKkc.cache +1 -0
  203. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Jj9sPGjbn2KUiOyBmTZuJ1fYkbiCBWVx-z6QQ3pB5UY.cache +1 -0
  204. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KB9PJLLQClhYgG5Td4gWsFXZvqKVI3LSFDUCDEEaoes.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KER8YHBW_moJ9ybdkvghKL2FRTPEWOo8cIHxAptc-2E.cache +2 -0
  206. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KFf7XKJR4HZIIoV58cbvKz6SYH5fJxDXR7vXYLcY9Bw.cache +0 -0
  207. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KMIfhQ_5dn5sQp53BsCzmUMGNXlHp7hPxYySsj_ZZ0k.cache +1 -0
  208. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KVJApIKOxA-GYzxZgUg0vWryzYi1ZCqQGq3Uv-YBMGs.cache +1 -0
  209. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KVLRlP8_ZddMFsTuVFvHN55OssVrQfiQYVRdWpjmxX8.cache +5 -0
  210. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Kl8woZraLLz7zaa2Wke4-HPq6cD5ujtYrNW9NL8u_HI.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Kymq00V-i5OT1qFAUSQ0xUnEg9kdBFPFRMtE8mTwFNE.cache +0 -0
  212. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/LTR1-TTZA5Pmu5s7ZyPCwgnIDbYtWJW_-k0na3bYZos.cache +0 -0
  213. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/LnzCoD_cMke0Dkgpe4-mz_wj3OxSPPvHxK0QKcatR-0.cache +1 -0
  214. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/LyoVoVdh4oxjWGZXY8McX3whrYVw8aTetQut4V5aJVs.cache +0 -0
  215. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/MCjulxAX7f8VQteM7AmWaJVQ54jHvMHfpJyP_ZTflVI.cache +1 -0
  216. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/MVT9ZX7lR-ByEnGacRbSoeDpQUqWT9naLVyGkqofoxs.cache +1 -0
  217. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Mxkcs4k6jvGAwC8Z_RdhbEBO2X7TxTpwfmBUJWkKspY.cache +1 -0
  218. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/N7C1jB3NeV4P4xBipMIeNJsoJ2nuIpTU-EW43q4mhqI.cache +1 -0
  219. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NDcW5mAa-npvCwOX6pbBhm_Ga9_R-doh0wMikQpiZGo.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NE0seubwIWGRlMjnhL6C7WkvjQKv_YWRZYH2rZUkhcw.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NO1JyZQ97A8ptQzqQhlXvh3n50CUt-gIOkmPUiChzRE.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NR8B7O6zRILqu6GdSx6GBu7HrFrAZWeFqPFrXZyHz6I.cache +1 -0
  223. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NgVwGTdmT1O5hwPkOl9co9Jf7JPnDIjByOhHq8pJO4E.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NkklYoV5jUmi_K_YG38mK8cQfguJSa2J064WHkR8Eys.cache +1 -0
  225. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/O62M5w_FMCDaavSvT29XoA9fFlRo7FnHi2yXerYhQzs.cache +1 -0
  226. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OM1zD8SV2A11WW_CVYQqgTTSIjb98_uCpnUd9MMbWl8.cache +1 -0
  227. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OOS1jXXpK-6x9zeg-G8Iu3M2ES7RY8SUsmxMUXWgd8E.cache +0 -0
  228. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OaUvMvzvHIRQgfgeCgnkSLG2xM-cTvaFZz6Cr8oCXao.cache +0 -0
  229. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OuKqUeq099wyirp848HRnnwVheVGk2rWaG998bXq4HU.cache +2 -0
  230. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OwI5qlRDMuiK1GFFEJCndhGtDGfPvv_uRdnj9Rj5nE8.cache +0 -0
  231. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Oxr59x7h5-v6qS4O-9T2NDe5QnKk9R5G6xiqkO0T0o0.cache +1 -0
  232. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/P2Kr3eZEd_KNam2MR2aN9eD6G6GXHCigQ8pF5Z3wXO8.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PB6MFbEm1PuHwnC0bBbvBrtLACv5vpyYEEOMRXzrXxs.cache +1 -0
  234. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PBEfBaOM1jQK1_vJfD-QZx1gm2LY7n3NuOb9mzf3mMI.cache +1 -0
  235. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PDLL1H7KMQPBM28YXt01g7dM_ZZJggAwOAnV4Ghbslw.cache +1 -0
  236. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PTmLHAuCZ5hL3cGncJ_WDz9SzjgX_HA70pT_AWh8r6c.cache +0 -0
  237. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PYHvrZbr11oYGv3OefJeRIuzckh2CWxJ4qNmJdGHnAM.cache +0 -0
  238. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PtcVu6k0MVl1IxeBu6IU4awfBiGtn8Am6GXWYGTITno.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Px_nUB3Y-RXgZfe3YVHvmYuuAoleSQcWHtbJoUEJ91M.cache +0 -0
  240. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Q2G3axbMZ_e_mFTZKkY6vqv1mCrSguwR14FGa1MXHYo.cache +0 -0
  241. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Q932JWeJ4IHOexmD0WkxumN8JUqeGIc1_jc_af5bm3k.cache +2 -0
  242. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QYfQI_XXsmyCkPuFgzrUxsaf5kjhYsbATh3ohQYCres.cache +3 -0
  243. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Qac__FuGvueZbOwqbI-nQKT1siGd1NSF25FBrQ5CPPQ.cache +1 -0
  244. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Qda94lUj4zY6o_lyrOwfsh-XgGDPquvrKcS84MsUMHs.cache +0 -0
  245. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QueGVr4Z97tdsSY7LnB_jX4evqLpCGdkLX0zJzZmnNQ.cache +0 -0
  246. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RA2UjgaYW3-8jf2bSuSEoPTZNeXimuizHrMG02JoZgI.cache +1 -0
  247. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RGvgyCS6JpsM3X7UGS5Bis-4t-jkxRUoNqzGOjLZGgk.cache +0 -0
  248. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RIEizYU6XP8jHQYkDcQBesPTzOC_ujC8b9JKa-EL2ws.cache +0 -0
  249. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RPLDp4FCbz_L9NZqNcMhtSveDLHxNThtWqOy7bI9I8E.cache +0 -0
  250. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/S6_r9mv_rtTQWQozwUS8CxW_Q7zZLeFbPNHVc8Ftuik.cache +1 -0
  251. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/SPdRbrZQ6UpTTuvBBO92f7MYTF7SC3xkKt_dkZBhiW8.cache +2 -0
  252. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/SZ-vWkuCXgPeUnYJsw7HOlKs1NORajLycKHjChR-d0E.cache +1 -0
  253. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Sj_Mga1ka41hcs0PvPjxX-UWqQzkUk0LdSODQLf2DIY.cache +1 -0
  254. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/SmH0qP3rtJh2kuWHjyFbGNYYLAL3rYr8shis9oQZTcY.cache +0 -0
  255. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/T2Z3icEdcOWntT8Y847eoF3JPpdZjH6bMrLwDKcY9Xo.cache +0 -0
  256. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/TDbX8CM6GQbpQo1AHPN93eUEI_AhLPAL_-BgrucQzeo.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/TWaBJh0QWYC2-ea8fWJwp0KY_wW7g0mTdjM198F6lDw.cache +1 -0
  258. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/TX8GPn23qX_8aW1vfQgpmS56GHdu03Wl49zaggqgqeI.cache +1 -0
  259. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ThtFv9_uZpR9G6ad1OfT-2cSLA0hw16qTBVnDme7OKs.cache +1 -0
  260. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UChQwTjc5OILnkhxVN2_wYnIxg1nZC-8Rr0_LTtt6TA.cache +0 -0
  261. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UDkQGJyHgNCEkbAme6SyGhDv6Z-X1zHyw-ocwe74p2U.cache +1 -0
  262. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UERzjZSjruiKj4XLXS00mNFG6gChe9UXsuBLq1TwNUI.cache +0 -0
  263. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UGVlfipxxo0ZP9cyqgwmr1PY-ikbFMbfMZGV0b-htAM.cache +2 -0
  264. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UKOz1pcGyNL52_xdESCM-VuE0S8G38nWADUNxqVERR4.cache +2 -0
  265. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Uqh31PYbd0sFj-OVthoMgtTLKp7oy7SI4s8tKe6Bubo.cache +0 -0
  266. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UyI_yDmMSj9lcg18St-ravzO8IU1ZU7kSQSFoyPOu28.cache +1 -0
  267. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UyRDZJ8b5iCZ8JDbxXZJq8sN0PpO5kSiO7piPXf91W0.cache +0 -0
  268. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/V-GU2zcNFepxXvVcrTaM-hQMcqxDXUNjoa5y5dfja_A.cache +1 -0
  269. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/V2-YrRYfBR0IavOLolQPu5Adfu6I0s0vfI-iqBvz5os.cache +3 -0
  270. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VQnJZWQ9sylLhJTmtrqPdPsKP7-A4QbloP7YRxZdLls.cache +1 -0
  271. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VUuAALe3lXlUCcCjqRTYpPEqvxPR46D4j-yTEeMeMpg.cache +1 -0
  272. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VkJAnS9TjBQTBmo7JQtkU9UcskkHLVJQLOerWlX2e3Y.cache +0 -0
  273. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WEf_EeuVN9PfuiwHJC_ICIZBCB2MtGVue-TCqZYjfg4.cache +1 -0
  274. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WRV8zLiRcxdJf-T_au0GRa_XBxpCVX2BljnGYlGAtW0.cache +0 -0
  275. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WSvjBqBT7htM--WVC7Kdkug6zGr2Wcf0AooK3_MBXGc.cache +3 -0
  276. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WVWVEhjPvwg06xbgcv0I2SZrDmL-w3hU4t14vxhFZn8.cache +3 -0
  277. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WeEMS-wHlh-NKF29Bdtzt_WcLvN3il9U8WGCTxHjjzc.cache +0 -0
  278. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Wk_RDWkjHg2r031Gai10djVCIOgUlCiUsDhjBdcC3xs.cache +1 -0
  279. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Wtgig2RqVrPZM2oTSb7NBXVAT04Y-S_OcPDZ-n8xpCo.cache +1 -0
  280. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Xcjij-VYPPks3ifgLmMy4rMwuStRNrWxc0O0RedxUPg.cache +1 -0
  281. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XzRRjMdjbRjzGO_m39pHw9F9-ehf5isHhMBjtuNhHSg.cache +2 -0
  282. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/YMUqjIZ7PF8tJ-ilVMTpq4NlcffzXrIiX9pv_6s4zEk.cache +47 -0
  283. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZAB5GAM4ke31rM_UbU1XsobsSr6NpgmqRdHLoOfc1a0.cache +1 -0
  284. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZEOb7A0G1j_R_dBlM8hgaA7vfskMpJkk2yEnIz3Bi0Y.cache +1 -0
  285. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZEpMMgOa24KpM5NlD7NlIFK6zyxk5KOwQX3PlvUgpGk.cache +1 -0
  286. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZFfE4Sj0BCjXv4tBEVWesSlPT0JDyd40PtYGVAQw2Bg.cache +2 -0
  287. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZhY3poi_ywbLUk9yGbfQmsd75cplB-xoyQP72gg7kA4.cache +0 -0
  288. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZmhStmh8eaQHmjD6EGFC_ijf5JeB2u4QUT1t5RsLM28.cache +1 -0
  289. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZptXwAo0NP3gc9C1VfOyrDo4NmdtJ-bFCcMRBx5rM7E.cache +0 -0
  290. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_6uVA9V_LKl_5JaMfjIsCRMj94RaMMl9SE8w2ul87_I.cache +1 -0
  291. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_BNXqAwXyHhvX3BdKuTipEKSJ8ZzNqfzQMg0s8yccJg.cache +1 -0
  292. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_CPNkJwq5f6K15vwHBGb3o3r-Cav5l3txabjdC_C7is.cache +0 -0
  293. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_UkF5qblaR5WVu6tbiX8laIEwPtKgw7kXHJYPPkkSDk.cache +1 -0
  294. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_YdWm0ypoVc1l4MXVEEbQmq-zyL7A6lfgyFp5FxXr0c.cache +1 -0
  295. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_y_m_cH8J3p667vpIYhnxT0gIyoP5aBjlfjI8gWF2Ro.cache +1 -0
  296. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/a5Mvy5KcVvpolKDhIJ56JUpnBTGfZvs7wjwhQV5Tryw.cache +0 -0
  297. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/aXEZIni3Kht90LAq-0JbBz0V4yPiRadI_el8Z07n6mM.cache +0 -0
  298. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/agRoN82Oj6Jgx020IHZJExZmWTKPar4J-bEtannfcjE.cache +1 -0
  299. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ak5FQxo1MxPk__GhGEPPXkutY4UGoVmsbiWDLtqgMvM.cache +1 -0
  300. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/atEC2H1V6z1beV3Rn87wDNXYST-BavqAI2TeKtryGgU.cache +2 -0
  301. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bCTdi6sgl2ioOaxY7txULAYuRAulqj0QFruvm5jPomA.cache +1 -0
  302. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bE-FN_IbSJEEPhazgvbMwULc3pdPwUZlFr9mOi1viag.cache +0 -0
  303. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bjfK0rdIhgktb5ROAnoPm9vZBQ6B-Vc2ISWENUIYrS4.cache +0 -0
  304. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/c4lpnh1ZBP2Id9ulMOjsPs8STqAsdQOkwuN6sPOX0tI.cache +0 -0
  305. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cSEKrNa7ObeFBySxd04dph5cfdEBGKtGlTA0czy5lZA.cache +1 -0
  306. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cUVt-QmISEcrPIfRax69wU9qV-B5A177AB4e6EpJpqA.cache +0 -0
  307. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cXwAamYskRqifI76RfS3DBiJAKaLG9OpepUhDMMOo6s.cache +2 -0
  308. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cbN1W68dVIDGsJSRWKyh7oBTeH-r6Gfgpt33TZKVxE4.cache +0 -0
  309. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cfErin3_rESGSReunU652ajo0gIWz-_MoD8e32A3FMo.cache +0 -0
  310. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cwF1Zu4YkWtrKArwD5syroPJRuAxr4MIK4dIpgBKQ8s.cache +0 -0
  311. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/d2G0tUKL62aioxXLmHBT39QJ7wZLVOSAYsXG2n7rUpI.cache +0 -0
  312. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/d316iFDQeUupnmF4tOWMRcfMYB2uOr3CsPs1WUhOy98.cache +1 -0
  313. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/d3kaihfVjCsYRcNSf5CBosfguBJKArIfbg41aTCaAHY.cache +0 -0
  314. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/d5_lZV1hJbihGcvfRH9NIWFrvSI5BhXZUIKM8SfJFEk.cache +0 -0
  315. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/dNs4SrfXtyhOD9VB6fMkOHQx-qnvPrn-C_CxgSx2Ung.cache +1 -0
  316. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/dSzhpz747s9T0TJUzFW3yf2W_4rQXhyrFQ-jdlYa8Os.cache +0 -0
  317. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/dUj-rpoXxJAX0KTe7Nwl_u9FckGv80-lzGvCNJjZAFg.cache +1 -0
  318. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/dYIdyu-BYR9vDMujWVmX4a_u1gps1_VDCIILgGLqmG4.cache +2 -0
  319. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/d_-Of5ZbEWYTJ0q-Jc-ibcJNWQZ4cycnVYfBzEHeZlg.cache +2 -0
  320. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/de6SwS40Kz9FEnpSay2BrDTcKu_SO6MY1epdtcQbZvc.cache +0 -0
  321. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/e7suUiY_W9YE0eeWkOB6VfP1ovgUhueUTAVQoD5HUzE.cache +0 -0
  322. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eFPOq4yNYrYRtECt8APNZSz1XiIblSYxzY43v3H6U6U.cache +0 -0
  323. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/egFpBJU660pGcA18H0zzXyg7UaBlok2L9uKMnJyzApM.cache +0 -0
  324. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/emxkfU-yfdtHmqd_UYktU4RpQAwfzOj5Z0QE4CLnc74.cache +2 -0
  325. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ezq-Dro4wP5pWdpfyYzsbgoDZrAgpYFE4f66zbPsJ8U.cache +1 -0
  326. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fOhJmHoV0QdAwgcxhXMGHlfGde4SS49gPl_fWX-9rT4.cache +1 -0
  327. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fZQCYiL4lAUDRp4TgrEQuFzSq3YBH2j1t_VnQbotbxU.cache +0 -0
  328. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fmtQBFndYX6W-AGcZMHKJtDFu6tITNdK5LEiLBxC7v8.cache +2 -0
  329. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fqTTxxsdj3Dw1vB9O9k_nOVFj64yHxzf9HcckPVzz2g.cache +1 -0
  330. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fvQl0EkMbIaCH2UtxdA5XbVZZXsHE83J_1-HKjkC_vI.cache +1 -0
  331. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/g3-P7hWCgqTlFCBvcBSKUPmLK7UH5D2tXo5zwbGlQYc.cache +1 -0
  332. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/g4W1hQt078YuHAuQlSn5BlZxwmJMSKUnB1oHPFbudqk.cache +1 -0
  333. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gAJu1mteuhFTc7ms-pIX2Ev3NUOWC55QNArxtx1ZuxI.cache +0 -0
  334. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gDkcQksgMZ_jdtpXCYRVeSdOh1rQyffbxzmgc3FrRVk.cache +1 -0
  335. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gfAnGddkLCXiCQxJtofltNnzRT-mJusXE5o8jKtVxow.cache +1 -0
  336. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gpW3hNkYQqNM50l37d0TB7MkmW8C_vQMSBhTFpvfN-s.cache +1 -0
  337. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gvT4HhFaWFgeWBTBV21s2ajLn9XsMRzlBblDNYgcJTo.cache +2 -0
  338. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/h8vGtQliSVREb_CJXd641h89FL-IAJ-FR82rlpjkqxk.cache +1 -0
  339. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hDJ_-eQBgTvS0SEBh8zhUlPsBZKvKbx2aROjFdSbgx0.cache +2 -0
  340. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hHfvklvGfoItjHXqDMusrlQMQnOfhiLPkEhdTwW-dlU.cache +0 -0
  341. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hyNAbc1HbCUnyqoSN4ErGJN8IvnWf199jU6HhMfcUls.cache +3 -0
  342. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/i1t3dmtijecA794Xq2WRMY7sSyQgXRC_P_Ds407deTY.cache +1 -0
  343. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iAzjNnalFm-0SZNfzyrVQPiHs_WjFtQ8TGmNBvD57Ss.cache +1 -0
  344. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iNOqQ3KayuKiddjKPBhDoRKumUMqkggCnkTGYfTX8No.cache +1 -0
  345. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/isiQDJZA8fyCl1tTQhXSYZCeeSmy_dJiF9E_KtO9iWE.cache +1 -0
  346. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iufqT3KST-uQ3B8OTey0rD955BTip9WyFx7f2xulJRU.cache +1 -0
  347. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/j9lMAMyXZ7CBG--204J2ScUIDc6Xa_-Qigl1U4u1DqE.cache +1 -0
  348. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jcLSBx6iOmUBYRbBRxB65lkxMRwfoOKl0M0F8eSw8Q8.cache +1 -0
  349. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jp7PZC_wtCiu-QqqoGOrQe47Qjb_eEZzmAk-WgIrBkI.cache +0 -0
  350. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kBBmpcp6Ey4BPYLrnWwDb0b1MMDND9HiMSkhjLIOo8o.cache +1 -0
  351. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kCbhc7yjo9iA5E45QVxR0ak9RUOu2UuTHw1cfZKKXAQ.cache +2 -0
  352. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kMO7ikXewjNRBKjvFZp9kyH1pvabt-XQfe9Bei2GeBw.cache +0 -0
  353. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kUUo9NziW8pdH3at5RxgMmntYfz-v7tUw55Zee-WEtc.cache +1 -0
  354. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/l0OlMXWShR26b0JCm_zUzrtuVfbT_3wqqu2Fx6RkZ0Q.cache +2 -0
  355. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lAwjoMTs0xFTq85DIA_N_FoF244QwVce-ZUQvqzMGl8.cache +0 -0
  356. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lE_HIGFCvRoxHBbXgHrQbBf8DVnbTvIn6vq9cZQYH-E.cache +1 -0
  357. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lXPT28O9kNcOoQO187rrQnf7PSyjQhwhbyA7Gg6VySA.cache +1 -0
  358. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ldEleVvGtKqpY0VpccvKc5lmrecgSmhVksbpgndWfOg.cache +0 -0
  359. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/m9-iRCJMIHUOW6jny3dwB37HpSwGfzeEexFk6vN7tc4.cache +0 -0
  360. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/mOfU5EkG0Kec1ns9eb-o-WSf-x94ZqM0nk2PiwRrL1Q.cache +2 -0
  361. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/mPARdazY2d3Kj6ojebQMUeEeDznmBWqpg4JzpOimCg0.cache +0 -0
  362. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/mn7PaRbXhjR1kg8NnFbWn7BOrBtvBSDM-SQ--97DBdY.cache +1 -0
  363. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/n2raOW6B3rztA4QgcnL1p_V23058K498UpybzMMPLtg.cache +0 -0
  364. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nNieyQqlbK45TflHU-iPPzh8383gFM_d04cWFuuKfEs.cache +0 -0
  365. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nSexugrrLSPvFifLDyXm9jD7nlk0H5Y06LIOEUUvNDg.cache +2 -0
  366. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nVZpGffH6YeBosf2HhPZNwmEF7diCraBLrmxMjOFQT8.cache +3 -0
  367. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ndpBdqZB984SFEM6xsWV9_7i7YiuNznGMvSJS_Grwes.cache +0 -0
  368. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nmqaUl5wv3zZb3NMkVqJntZwn15kNVVfl5uu6rlhULk.cache +0 -0
  369. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/oNPbLyefRLLZgx77aNY0B5SKnSdBwY35viiII7A_NLM.cache +1 -0
  370. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ootxRBXqHtQxlWIFx0eTCUGHlyz5wsRG21CMF0tJuS4.cache +1 -0
  371. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/oxj5LbIWPG_GQRXGqclaGz9ECljheeFde50vfWFc0Gs.cache +2 -0
  372. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p-3C1n-X6AIBW_mLW0u5VDe6ei9uLUDUWFL6C9Je92w.cache +1 -0
  373. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p1Oa-EPHfUJ2oDBFKNspPCzC1yLq-_IS62bKTHdgMDY.cache +0 -0
  374. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p7qAcHj8iLJ0LbECY9FS4MYJ-j5SBNtvEvReFN0zxwE.cache +0 -0
  375. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pH2C0hS3ObYiVFupuoAPbXiJ2pHLbrbdTYB9mvKG9gc.cache +1 -0
  376. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pMoN9P2afCMz7G6Xm68ylx52RdeLQ009f0OFlGm84vE.cache +1 -0
  377. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pPV9R6vtNpYnSFj0TILLrmofNT-BLREu9NJoi02Qfr4.cache +0 -0
  378. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pbazDtqI3j0JyO5UF_uEL0vl0Kvjp7zTjZY7MU42dLI.cache +14 -0
  379. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ptm90-JuSAOWbHe-S8zKeKztWDErTzPrOMQt430trkI.cache +1 -0
  380. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/q41tmRKGDcBkGX1uq6v3iRTtN3kHES91wNDotOFdoCA.cache +0 -0
  381. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qEtPM3IN_bqXcq3qVRh97ufHuobs5sm1Md1dyZqMmgA.cache +2 -0
  382. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qS4svOcJGFFE2HCXJwo3ZoTfy1XrzmEZKX7unptvuRM.cache +0 -0
  383. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qUC_OKvBk2-3DKsUdZaNcWXWuRfvcfiXjTTtRKXNKpg.cache +0 -0
  384. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qtUM19vz9HEiF7_jqw-rMNQ6LAAho83Xee54XFV5wRc.cache +0 -0
  385. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rKEHcAHinfLYsW-CI1KmvyP8flB5DMHiWy3epK8h288.cache +1 -0
  386. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rRSAGI3dEwaA6NCwfc5eEtZUCGgc9UJWxhJvE2gD-jc.cache +0 -0
  387. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rU_8ieTwWGkSsuXfJ1sSpavOxPFC6NmmF8Gmad4n9lY.cache +0 -0
  388. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rXOnfd3upF0NR_nnBI2pDi-V5Ql5nMZOWSD_a9E9mzU.cache +0 -0
  389. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rafqI-PSLts8PBG0bsr-zLCKQbxPxW5TN4rmiEBtGFQ.cache +94 -0
  390. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rv2MqWjvm3Z072lzlB7y6btsMoOh-hGMeKkFBLvSoSU.cache +1 -0
  391. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rxpKOVJeXYhOU3Q7MN27D1v5XSiKg8fLvdEqj6BV-zc.cache +1 -0
  392. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/s0y0V_KtUf5TKhAcPVCqcW7rkvBPqya9RrdnIlLNIz0.cache +0 -0
  393. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sFRxDeOleE76nG8fKaRLLcobJJbHvCZTh97cdza2088.cache +0 -0
  394. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sW-BEMG49DcHaiWs74ep7EXq0kPeT5IIRFxHa0jJ_t0.cache +0 -0
  395. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/setBPq-J4Wm16NufsGsJdg0bwkH5C6l4ofSG7sXUBew.cache +44 -0
  396. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/t-xyssdq01HYik6i8I0XO-eKPRSzQROvukE-DvNb7VQ.cache +2 -0
  397. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/t22JqTl4ai4ub3cEP3vu2nemplzZLncRQONrnv0x3xQ.cache +0 -0
  398. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tDYISaoSRK1KfrnHmeG99rtAIUU1hCGv2Si7Okc4-2M.cache +0 -0
  399. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tNZcKwAE6SAsx2VIawdQiBFeNZa8BvkRvTO0zXEmRHM.cache +1 -0
  400. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tP2ZeKofBI2FtMQnZW8ee6p_IA9lHFDHcgHc60Eh4zc.cache +1 -0
  401. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tSGoiWTzIdEvHEVroaT8lItQwmfgdmYPK89M0d4ir0g.cache +1 -0
  402. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tTn02Ycpchh93xrpYXchfZWjy1sgVHMFEli_2R0_QBM.cache +1 -0
  403. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tTtLfODv9EuBAk6Fx3-bBNcPuTEv3AcUCeoOOmmqPeQ.cache +0 -0
  404. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tfG7WsK6mPFlhEOwHFtZneq_NFoSrYbikjKOeMXc-64.cache +73 -0
  405. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/twcgVFKa6le-p3OwPHhg-o9CpRG9mQZbUGHrRkGSQmU.cache +2 -0
  406. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tza_IpIlq__9ZNCqiMIDu-e_FBGkUP57RSQS6frJz2s.cache +2 -0
  407. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/u7DUeyQMGgRaWoOSs2sFdj4SLy4iO1A2a5HavRJJNyI.cache +0 -0
  408. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uV-C3cdPhWgXHYsgDO8yuPaFEG_bFneFeC6CwgbAFlc.cache +1 -0
  409. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uWdzQKBlBXAaoFalwYjv-1oGXzck_cIpW4B6LCDykss.cache +0 -0
  410. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vFwH4WFDeFRUa0QUFR91D33wQeEPoNFB8ZHFS2d9vN8.cache +1 -0
  411. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vKY7qNbO4aw37fQ8s4deRvLwOCw2jDYs30zoLiRHhQ0.cache +1 -0
  412. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vLQUCCAkPE7wbt1XlLHILqWuiNR_gNLYAuJRsDC79OQ.cache +0 -0
  413. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vQI_PlaoZepKT9HvWllnSr2LJeZFlrO-gvab5lJaDJM.cache +1 -0
  414. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vSvkmAEMh5dGPECnFcagde06DWp0zldrZTUpNWSd9G4.cache +1 -0
  415. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vW8f-TGkqtTT-wzoiFD8pWXo-DebwuTbroUisl6Svm8.cache +1 -0
  416. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vqKAGSTt1zdYLm9CZDEg5Xck8avO-DdDEfZzMV1H1Yk.cache +0 -0
  417. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vzhb-2KNiH30cXXAVbE1gmVnYVIm-FDBSwS3avKKUe0.cache +1 -0
  418. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wMUdSB1MAsMnLHlGSWQ2YjiVMKMdJBQ8eejMhMwYQQU.cache +1 -0
  419. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wUDq5L-KPEDOcz8pone7BFW6NlBb1oxFljVkOHklhKs.cache +1 -0
  420. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wcHYdJ-b1aO43-3IBtG92XncWIDwmM8S60hvgA5ADBc.cache +49 -0
  421. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xZyZrui5L2q3ipPfccVBsjnGI5Wfd05Hug4zn4hoy3I.cache +1 -0
  422. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xaRp8q3mHTvQIhDvrU12eom91JkavqwohL9yIH2gbmQ.cache +0 -0
  423. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xbWZWxH_lcik-_0JpTAfiUIY4XofLQM8NwGrdoNmobk.cache +1 -0
  424. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xz0wtLiAWLfBC8SXcz4DlllSMQcJ5YseRWgq4vaF3is.cache +1 -0
  425. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/y9PmYixdg9-fy6xU2nCRHYetK0Mrn8AvnsZ20ic8b0o.cache +1 -0
  426. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yG75HsubX5K8DVm-dnqGiQHSBcxR1Ly-GWk2ZN5roMU.cache +2 -0
  427. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yZZQdMgJTGBXOciTBEDz-ONSRpTyWhAdeY4qQz-KceQ.cache +1 -0
  428. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ybLMHsXNxhfZMqrKevUN4kyYLFhxdyxORAs3IQlM8SE.cache +1 -0
  429. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ygcoZVz-ghIslueCdu69KeH2YzNSyj7RUJHNRdr6lc4.cache +1 -0
  430. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yi9xbiM0cDaBe3Lw3fpfWnfTrmHOFHWOvGCq3nOJCDw.cache +2 -0
  431. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yky1GfqwsKUyiPVv_gZ-4CLyn_NkIGp3uZ0Qo__gc6w.cache +1 -0
  432. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yni3eCwK_O2-HJlxIs1b_PSTF-03svkXQHddRqAxwFg.cache +0 -0
  433. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yuLk6ZZTZho5r0cg_muEoSmlUOSmRSH1eOi9g2s2BuM.cache +2 -0
  434. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yxTNeqdQtWBOiD5NTlHN2jeucjNdZv4r9hQuR2aNOmY.cache +1 -0
  435. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yzbxJFH_b6sB-luMppw9rtcx5cigEeZ7aetx_cgZPOw.cache +1 -0
  436. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zM_DoL0PH82QzOPLidErcawWoUuiPQWFM5wrk5apaEo.cache +1 -0
  437. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zTth5DB3_DM2gz5MAGOUv6EQs5yMDeOFK3bxm4bkTTQ.cache +0 -0
  438. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zcPuAJTsCvXa7hQfsy3BOUm4VdnmtZ0Oueoollx2Jr8.cache +1 -0
  439. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zhhVyKQIVXbVADRm8OOQ8uxHNTljYctD2gK7DXnJPdU.cache +1 -0
  440. data/test/fixtures/admin_users.yml +7 -0
  441. data/test/fixtures/users.yml +13 -0
  442. data/test/integration/register_user_with_site_flow_test.rb +62 -0
  443. data/test/models/admin_user_test.rb +7 -0
  444. data/test/models/user_test.rb +23 -0
  445. data/test/test_helper.rb +48 -0
  446. data/test/woodlock_test.rb +7 -0
  447. metadata +1156 -0
@@ -0,0 +1,271 @@
1
+ # Use this hook to configure devise mailer, warden hooks and so forth.
2
+ # Many of these configuration options can be set straight in your model.
3
+ Devise.setup do |config|
4
+
5
+ require "omniauth-facebook"
6
+ require "omniauth-google-oauth2"
7
+ config.omniauth :facebook, "681615048637257", "54cdc978c692144022562125bd67dbf7"
8
+ config.omniauth :google_oauth2, '553987797550-7anasd3f9fpv6roecraa59oj1ngdvl0d.apps.googleusercontent.com', 'iwFoZW4ts42FiiB0aB-YZFb5', {}
9
+
10
+ # The secret key used by Devise. Devise uses this key to generate
11
+ # random tokens. Changing this key will render invalid all existing
12
+ # confirmation, reset password and unlock tokens in the database.
13
+ # Devise will use the `secret_key_base` on Rails 4+ applications as its `secret_key`
14
+ # by default. You can change it below and use your own secret key.
15
+ # config.secret_key = '492de0a122dca9f27deb9d86d7a0e1586dbfde297e3f69a360dca7956c559104ee14493d972a908c8b23aa211eb39c787cf896452960f8ff246f6c4324e13647'
16
+
17
+ # ==> Mailer Configuration
18
+ # Configure the e-mail address which will be shown in Devise::Mailer,
19
+ # note that it will be overwritten if you use your own mailer class
20
+ # with default "from" parameter.
21
+ config.mailer_sender = 'info@woodlock.com'
22
+
23
+ # Configure the class responsible to send e-mails.
24
+ config.mailer = 'Devise::Mailer'
25
+
26
+ # ==> ORM configuration
27
+ # Load and configure the ORM. Supports :active_record (default) and
28
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
29
+ # available as additional gems.
30
+ require 'devise/orm/active_record'
31
+
32
+ # ==> Configuration for any authentication mechanism
33
+ # Configure which keys are used when authenticating a user. The default is
34
+ # just :email. You can configure it to use [:username, :subdomain], so for
35
+ # authenticating a user, both parameters are required. Remember that those
36
+ # parameters are used only when authenticating and not when retrieving from
37
+ # session. If you need permissions, you should implement that in a before filter.
38
+ # You can also supply a hash where the value is a boolean determining whether
39
+ # or not authentication should be aborted when the value is not present.
40
+ # config.authentication_keys = [:email]
41
+
42
+ # Configure parameters from the request object used for authentication. Each entry
43
+ # given should be a request method and it will automatically be passed to the
44
+ # find_for_authentication method and considered in your model lookup. For instance,
45
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
46
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
47
+ # config.request_keys = []
48
+
49
+ # Configure which authentication keys should be case-insensitive.
50
+ # These keys will be downcased upon creating or modifying a user and when used
51
+ # to authenticate or find a user. Default is :email.
52
+ config.case_insensitive_keys = [:email]
53
+
54
+ # Configure which authentication keys should have whitespace stripped.
55
+ # These keys will have whitespace before and after removed upon creating or
56
+ # modifying a user and when used to authenticate or find a user. Default is :email.
57
+ config.strip_whitespace_keys = [:email]
58
+
59
+ # Tell if authentication through request.params is enabled. True by default.
60
+ # It can be set to an array that will enable params authentication only for the
61
+ # given strategies, for example, `config.params_authenticatable = [:database]` will
62
+ # enable it only for database (email + password) authentication.
63
+ # config.params_authenticatable = true
64
+
65
+ # Tell if authentication through HTTP Auth is enabled. False by default.
66
+ # It can be set to an array that will enable http authentication only for the
67
+ # given strategies, for example, `config.http_authenticatable = [:database]` will
68
+ # enable it only for database authentication. The supported strategies are:
69
+ # :database = Support basic authentication with authentication key + password
70
+ # config.http_authenticatable = false
71
+
72
+ # If 401 status code should be returned for AJAX requests. True by default.
73
+ # config.http_authenticatable_on_xhr = true
74
+
75
+ # The realm used in Http Basic Authentication. 'Application' by default.
76
+ # config.http_authentication_realm = 'Application'
77
+
78
+ # It will change confirmation, password recovery and other workflows
79
+ # to behave the same regardless if the e-mail provided was right or wrong.
80
+ # Does not affect registerable.
81
+ # config.paranoid = true
82
+
83
+ # By default Devise will store the user in session. You can skip storage for
84
+ # particular strategies by setting this option.
85
+ # Notice that if you are skipping storage for all authentication paths, you
86
+ # may want to disable generating routes to Devise's sessions controller by
87
+ # passing skip: :sessions to `devise_for` in your config/routes.rb
88
+ config.skip_session_storage = [:http_auth]
89
+
90
+ # By default, Devise cleans up the CSRF token on authentication to
91
+ # avoid CSRF token fixation attacks. This means that, when using AJAX
92
+ # requests for sign in and sign up, you need to get a new CSRF token
93
+ # from the server. You can disable this option at your own risk.
94
+ # config.clean_up_csrf_token_on_authentication = true
95
+
96
+ # ==> Configuration for :database_authenticatable
97
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
98
+ # using other encryptors, it sets how many times you want the password re-encrypted.
99
+ #
100
+ # Limiting the stretches to just one in testing will increase the performance of
101
+ # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
102
+ # a value less than 10 in other environments. Note that, for bcrypt (the default
103
+ # encryptor), the cost increases exponentially with the number of stretches (e.g.
104
+ # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
105
+ config.stretches = Rails.env.test? ? 1 : 10
106
+
107
+ # Setup a pepper to generate the encrypted password.
108
+ # config.pepper = 'db93fd2ee62e65f41b8505adb2a729edc9acbbb518a3f6168c09a5ca1e47d4fa1199f8d94043e501e335c07e83dd8a9609d222442f66647218ac39ff5d1a4bd5'
109
+
110
+ # ==> Configuration for :confirmable
111
+ # A period that the user is allowed to access the website even without
112
+ # confirming their account. For instance, if set to 2.days, the user will be
113
+ # able to access the website for two days without confirming their account,
114
+ # access will be blocked just in the third day. Default is 0.days, meaning
115
+ # the user cannot access the website without confirming their account.
116
+ # config.allow_unconfirmed_access_for = 2.days
117
+
118
+ # A period that the user is allowed to confirm their account before their
119
+ # token becomes invalid. For example, if set to 3.days, the user can confirm
120
+ # their account within 3 days after the mail was sent, but on the fourth day
121
+ # their account can't be confirmed with the token any more.
122
+ # Default is nil, meaning there is no restriction on how long a user can take
123
+ # before confirming their account.
124
+ # config.confirm_within = 3.days
125
+
126
+ # If true, requires any email changes to be confirmed (exactly the same way as
127
+ # initial account confirmation) to be applied. Requires additional unconfirmed_email
128
+ # db field (see migrations). Until confirmed, new email is stored in
129
+ # unconfirmed_email column, and copied to email column on successful confirmation.
130
+ config.reconfirmable = true
131
+
132
+ # Defines which key will be used when confirming an account
133
+ # config.confirmation_keys = [:email]
134
+
135
+ # ==> Configuration for :rememberable
136
+ # The time the user will be remembered without asking for credentials again.
137
+ # config.remember_for = 2.weeks
138
+
139
+ # Invalidates all the remember me tokens when the user signs out.
140
+ config.expire_all_remember_me_on_sign_out = true
141
+
142
+ # If true, extends the user's remember period when remembered via cookie.
143
+ # config.extend_remember_period = false
144
+
145
+ # Options to be passed to the created cookie. For instance, you can set
146
+ # secure: true in order to force SSL only cookies.
147
+ # config.rememberable_options = {}
148
+
149
+ # ==> Configuration for :validatable
150
+ # Range for password length.
151
+ config.password_length = 8..72
152
+
153
+ # Email regex used to validate email formats. It simply asserts that
154
+ # one (and only one) @ exists in the given string. This is mainly
155
+ # to give user feedback and not to assert the e-mail validity.
156
+ # config.email_regexp = /\A[^@]+@[^@]+\z/
157
+
158
+ # ==> Configuration for :timeoutable
159
+ # The time you want to timeout the user session without activity. After this
160
+ # time the user will be asked for credentials again. Default is 30 minutes.
161
+ # config.timeout_in = 30.minutes
162
+
163
+ # If true, expires auth token on session timeout.
164
+ # config.expire_auth_token_on_timeout = false
165
+
166
+ # ==> Configuration for :lockable
167
+ # Defines which strategy will be used to lock an account.
168
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
169
+ # :none = No lock strategy. You should handle locking by yourself.
170
+ # config.lock_strategy = :failed_attempts
171
+
172
+ # Defines which key will be used when locking and unlocking an account
173
+ # config.unlock_keys = [:email]
174
+
175
+ # Defines which strategy will be used to unlock an account.
176
+ # :email = Sends an unlock link to the user email
177
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
178
+ # :both = Enables both strategies
179
+ # :none = No unlock strategy. You should handle unlocking by yourself.
180
+ # config.unlock_strategy = :both
181
+
182
+ # Number of authentication tries before locking an account if lock_strategy
183
+ # is failed attempts.
184
+ # config.maximum_attempts = 20
185
+
186
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
187
+ # config.unlock_in = 1.hour
188
+
189
+ # Warn on the last attempt before the account is locked.
190
+ # config.last_attempt_warning = true
191
+
192
+ # ==> Configuration for :recoverable
193
+ #
194
+ # Defines which key will be used when recovering the password for an account
195
+ # config.reset_password_keys = [:email]
196
+
197
+ # Time interval you can reset your password with a reset password key.
198
+ # Don't put a too small interval or your users won't have the time to
199
+ # change their passwords.
200
+ config.reset_password_within = 6.hours
201
+
202
+ # When set to false, does not sign a user in automatically after their password is
203
+ # reset. Defaults to true, so a user is signed in automatically after a reset.
204
+ # config.sign_in_after_reset_password = true
205
+
206
+ # ==> Configuration for :encryptable
207
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
208
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
209
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
210
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
211
+ # REST_AUTH_SITE_KEY to pepper).
212
+ #
213
+ # Require the `devise-encryptable` gem when using anything other than bcrypt
214
+ # config.encryptor = :sha512
215
+
216
+ # ==> Scopes configuration
217
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
218
+ # "users/sessions/new". It's turned off by default because it's slower if you
219
+ # are using only default views.
220
+ # config.scoped_views = false
221
+
222
+ # Configure the default scope given to Warden. By default it's the first
223
+ # devise role declared in your routes (usually :user).
224
+ # config.default_scope = :user
225
+
226
+ # Set this configuration to false if you want /users/sign_out to sign out
227
+ # only the current scope. By default, Devise signs out all scopes.
228
+ # config.sign_out_all_scopes = true
229
+
230
+ # ==> Navigation configuration
231
+ # Lists the formats that should be treated as navigational. Formats like
232
+ # :html, should redirect to the sign in page when the user does not have
233
+ # access, but formats like :xml or :json, should return 401.
234
+ #
235
+ # If you have any extra navigational formats, like :iphone or :mobile, you
236
+ # should add them to the navigational formats lists.
237
+ #
238
+ # The "*/*" below is required to match Internet Explorer requests.
239
+ # config.navigational_formats = ['*/*', :html]
240
+
241
+ # The default HTTP method used to sign out a resource. Default is :delete.
242
+ config.sign_out_via = :delete
243
+
244
+ # ==> OmniAuth
245
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
246
+ # up on your models and hooks.
247
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
248
+
249
+ # ==> Warden configuration
250
+ # If you want to use other strategies, that are not supported by Devise, or
251
+ # change the failure app, you can configure them inside the config.warden block.
252
+ #
253
+ # config.warden do |manager|
254
+ # manager.intercept_401 = false
255
+ # manager.default_strategies(scope: :user).unshift :some_external_strategy
256
+ # end
257
+
258
+ # ==> Mountable engine configurations
259
+ # When using Devise inside an engine, let's call it `MyEngine`, and this engine
260
+ # is mountable, there are some extra configurations to be taken into account.
261
+ # The following options are available, assuming the engine is mounted as:
262
+ #
263
+ # mount MyEngine, at: '/my_engine'
264
+ #
265
+ # The router that invoked `devise_for`, in the example above, would be:
266
+ # config.router_name = :my_engine
267
+ #
268
+ # When using OmniAuth, Devise cannot automatically set OmniAuth path,
269
+ # so you need to do it manually. For the users scope, it would be:
270
+ # config.omniauth_path_prefix = '/my_engine/users/auth'
271
+ end
@@ -0,0 +1,137 @@
1
+ de:
2
+ time:
3
+ formats:
4
+ default: "%Y/%m/%d"
5
+ short: "%b %d"
6
+ long: "%B %d, %Y"
7
+ active_admin:
8
+ dashboard: Übersicht
9
+ dashboard_welcome:
10
+ welcome: "Willkommen in Active Admin. Dies ist die Standard-Übersichtsseite."
11
+ call_to_action: "Siehe 'app/admin/dashboard.rb', um Übersichts-Bereiche hinzuzufügen."
12
+ view: "Anzeigen"
13
+ edit: "Bearbeiten"
14
+ delete: "Löschen"
15
+ delete_confirmation: "Wollen Sie dieses Element wirklich löschen?"
16
+ new_model: "%{model} erstellen"
17
+ edit_model: "%{model} bearbeiten"
18
+ delete_model: "%{model} löschen"
19
+ details: "%{model} Details"
20
+ cancel: "Abbrechen"
21
+ empty: "Leer"
22
+ previous: "Zurück"
23
+ next: "Weiter"
24
+ download: "Herunterladen:"
25
+ has_many_new: "%{model} hinzufügen"
26
+ has_many_delete: "Löschen"
27
+ has_many_remove: "Entfernen"
28
+ filters:
29
+ buttons:
30
+ filter: "Filtern"
31
+ clear: "Filter entfernen"
32
+ predicates:
33
+ contains: "Enthält"
34
+ equals: "Gleich"
35
+ starts_with: "Beginnt mit"
36
+ ends_with: "Endet mit"
37
+ greater_than: "Größer als"
38
+ less_than: "Kleiner als"
39
+ search_status:
40
+ headline: "Anwendungsbereich:"
41
+ current_filters: "Aktuelle Filter:"
42
+ no_current_filters: "Keine"
43
+ status_tag:
44
+ "yes": "Ja"
45
+ "no": "Nein"
46
+ main_content: "Bitte implementieren Sie %{model}#main_content, um Inhalte anzuzeigen."
47
+ logout: "Abmelden"
48
+ powered_by: "Powered by %{active_admin} %{version}"
49
+ sidebars:
50
+ filters: "Filter"
51
+ search_status: "Suchstatus"
52
+ pagination:
53
+ empty: "Keine %{model} gefunden"
54
+ one: "Zeige <b>1</b> %{model}"
55
+ one_page: "Zeige <b>alle %{n}</b> %{model}"
56
+ multiple: "Zeige %{model} <b>%{from}&nbsp;–&nbsp;%{to}</b> von <b>%{total}</b>"
57
+ multiple_without_total: "Zeige %{model} <b>%{from}&nbsp;–&nbsp;%{to}</b>"
58
+ entry:
59
+ one: "Eintrag"
60
+ other: "Einträge"
61
+ any: "Alle"
62
+ blank_slate:
63
+ content: "Es gibt noch keine %{resource_name}."
64
+ link: "Erstellen"
65
+ dropdown_actions:
66
+ button_label: "Aktionen"
67
+ batch_actions:
68
+ button_label: "Stapelverarbeitung"
69
+ default_confirmation: "Bist du sicher, dass Sie dies tun wollen?"
70
+ delete_confirmation: "Sind Sie sicher dass sie diese %{plural_model} löschen wollen?"
71
+ succesfully_destroyed:
72
+ one: "Erfolgreich 1 %{model} gelöscht"
73
+ other: "Erfolgreich %{count} %{plural_model} gelöscht"
74
+ selection_toggle_explanation: "(Auswahl umschalten)"
75
+ link: "erstellen"
76
+ action_label: "%{title} ausgewählte"
77
+ labels:
78
+ destroy: "Lösche"
79
+ comments:
80
+ resource_type: "Res­sour­cen-Typ"
81
+ author_type: "Autor-Typ"
82
+ body: "Inhalt"
83
+ author: "Autor"
84
+ title: "Kommentar"
85
+ add: "Kommentar hinzufügen"
86
+ resource: "Res­sour­ce"
87
+ no_comments_yet: "Es gibt noch keine Kommentare."
88
+ author_missing: "Unbekannt"
89
+ title_content: "Kommentare (%{count})"
90
+ errors:
91
+ empty_text: "Der Kommentar wurde nicht gespeichert, da der Text fehlt."
92
+ devise:
93
+ username:
94
+ title: "Benutzername"
95
+ email:
96
+ title: "E-Mail-Adresse"
97
+ subdomain:
98
+ title: "Subdomain"
99
+ password:
100
+ title: "Passwort"
101
+ sign_up:
102
+ title: "Registrieren"
103
+ submit: "Registrieren"
104
+ login:
105
+ title: "Login"
106
+ remember_me: "Angemeldet bleiben"
107
+ submit: "Login"
108
+ reset_password:
109
+ title: "Passwort vergessen?"
110
+ submit: "Mein Passwort zurücksetzen"
111
+ change_password:
112
+ title: "Ändern Sie Ihr Passwort"
113
+ submit: "Mein Passwort ändern"
114
+ unlock:
115
+ title: "Entsperrungsanweisung erneut senden"
116
+ submit: "Entsperrungsanweisung erneut senden"
117
+ resend_confirmation_instructions:
118
+ title: "Anleitung zur Bestätigung noch mal schicken"
119
+ submit: "Anleitung zur Bestätigung noch mal schicken"
120
+ links:
121
+ sign_up: "Registrieren"
122
+ sign_in: "Anmeldung"
123
+ forgot_your_password: "Passwort vergessen?"
124
+ sign_in_with_omniauth_provider: "Anmeldung mit %{provider}"
125
+ resend_unlock_instructions: "Entsperrungsanweisung erneut senden"
126
+ resend_confirmation_instructions: "Bestätigungsanweisung erneut senden"
127
+ unsupported_browser:
128
+ headline: "ActiveAdmin unterstützt nicht länger den Internet Explorer in Version 8 oder niedriger."
129
+ recommendation: "Wir empfehlen die Nutzung von <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, oder <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
130
+ turn_off_compatibility_view: "Wenn sie IE 9 oder neuer benutzen, stellen sie sicher das sie den <a href=\"http://windows.microsoft.com/en-US/windows7/webpages-look-incorrect-in-Internet-Explorer\">\"Kompatibilitätsansicht\" ausgeschaltet</a> haben."
131
+ access_denied:
132
+ message: "Sie haben nicht die Berechtigung um diese Aktion auszuführen."
133
+ index_list:
134
+ table: "Tabelle"
135
+ block: "Liste"
136
+ grid: "Gitter"
137
+ blog: "Blog"
@@ -0,0 +1,98 @@
1
+ de:
2
+ activerecord:
3
+ models:
4
+ user:
5
+ one: User
6
+ other: Users
7
+ devise:
8
+ password_blank_if: Password (blank if you don't want to change it)
9
+ sign_in: Sign in
10
+ sign_in_with_facebook: Sign in with Facebook
11
+ sign_in_with_google: Sign in with Google
12
+ sign_up: Sign up
13
+ sign_up_with_facebook: Sign up with Facebook
14
+ sign_up_with_google: Sign up with Google
15
+ sign_up_with_site: Sign up with site
16
+ sign_in_with_site: Sign in with site
17
+ forgot_password: Forgot password?
18
+ send_reset_password: Send me reset password instructions
19
+ password_confirmation: Password confirmation
20
+ go_back: Go back
21
+ characters_minimum: characters minimum
22
+ resend_confirmation: Resend confirmation instructions
23
+ resend_unlock: Resend unlock instructions
24
+ welcome: Welcome
25
+ confirmation_instructions_message: 'You can confirm your account email through the link below:'
26
+ confirmation_link: Confirm my account
27
+ hello: Hello
28
+ reset_password_message: Someone has requested a link to change your password. You can do this through the link below.
29
+ current_password: Current password
30
+ change_my_password: Change my password
31
+ change_your_password: Change your password
32
+ ignore_email_message_1: If you didn't request this, please ignore this email.
33
+ ignore_email_message_2: Your password won't change until you access the link above and create a new one.
34
+ unlock_instructions_message_1: Your account has been locked due to an excessive number of unsuccessful sign in attempts.
35
+ unlock_instructions_message_2: 'Click the link below to unlock your account:'
36
+ unlock_my_account: Unlock my account
37
+ update: Update
38
+ cancel_account: Cancel my account
39
+ unhappy: Unhappy?
40
+ are_you_sure: Are you sure?
41
+ waiting_for_confirmation: 'Currently waiting confirmation for:'
42
+ new_password_confirmation: New password confirmation
43
+ confirmations:
44
+ confirmed: Vielen Dank für Ihre Registrierung. Sie sind jetzt angemeldet.
45
+ send_instructions: Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
46
+ send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail mit der Sie Ihre Registrierung bestätigen können.
47
+ failure:
48
+ already_authenticated: Sie sind bereits angemeldet.
49
+ inactive: Ihr Account ist nicht aktiv.
50
+ invalid: Ungültige Anmeldedaten.
51
+ last_attempt: Sie haben noch einen Versuch bis Ihr Account gesperrt wird.
52
+ locked: Ihr Account ist gesperrt.
53
+ not_found_in_database: Ungültige Anmeldedaten.
54
+ timeout: Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.
55
+ unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie fortfahren können.
56
+ unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren können.
57
+ mailer:
58
+ confirmation_instructions:
59
+ subject: Anleitung zur Bestätigung Ihres Accounts
60
+ reset_password_instructions:
61
+ subject: Anleitung für das Zurücksetzen Ihres Passworts
62
+ unlock_instructions:
63
+ subject: Anleitung für die Account-Freischaltung
64
+ omniauth_callbacks:
65
+ failure: Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden, weil "%{reason}".
66
+ success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
67
+ passwords:
68
+ no_token: Sie können sich nicht auf dieser Seite anmelden, wenn Sie nicht von einer Passwort-Zurücksetzen-E-Mail kommen. Wenn Sie von solch einer E-Mail kommen, überprüfen Sie bitte, ob Sie die gesamte URL verwendeten.
69
+ send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
70
+ send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
71
+ updated: Ihr Passwort wurde geändert. Sie sind jetzt angemeldet.
72
+ updated_not_active: Ihr Passwort wurde geändert.
73
+ registrations:
74
+ destroyed: Ihr Account wurde gelöscht.
75
+ signed_up: Sie haben sich erfolgreich registriert.
76
+ signed_up_but_inactive: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account noch nicht aktiviert ist.
77
+ signed_up_but_locked: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account gesperrt ist.
78
+ signed_up_but_unconfirmed: Sie erhalten in wenigen Minuten eine E-Mail mit einem Link für die Bestätigung der Registrierung. Klicken Sie auf den Link um Ihren Account zu aktivieren.
79
+ update_needs_confirmation: Ihre Daten wurden aktualisiert, aber Sie müssen Ihre neue E-Mail-Adresse bestätigen. Sie erhalten in wenigen Minuten eine E-Mail, mir der Sie die Änderung Ihrer E-Mail-Adresse abschließen können.
80
+ updated: Ihre Daten wurden aktualisiert.
81
+ sessions:
82
+ already_signed_out: Erfolgreich abgemeldet.
83
+ signed_in: Erfolgreich angemeldet.
84
+ signed_out: Erfolgreich abgemeldet.
85
+ unlocks:
86
+ send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihren Account entsperren können.
87
+ send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihren Account entsperren können.
88
+ unlocked: Ihr Account wurde entsperrt. Sie sind jetzt angemeldet.
89
+ errors:
90
+ messages:
91
+ already_confirmed: wurde bereits bestätigt, bitte versuchen Sie, sich anzumelden
92
+ confirmation_period_expired: musste innerhalb von %{period} bestätigt werden, bitte neu anfordern.
93
+ expired: ist abgelaufen, bitte neu anfordern
94
+ not_found: nicht gefunden
95
+ not_locked: ist nicht gesperrt
96
+ not_saved:
97
+ one: 'Konnte %{resource} nicht speichern: ein Fehler.'
98
+ other: 'Konnte %{resource} nicht speichern: %{count} Fehler.'