ratable 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (485) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +48 -0
  5. data/app/assets/javascripts/ratable.js.erb +9 -0
  6. data/app/assets/javascripts/ratings.js +10 -0
  7. data/app/models/ratable/rating.rb +14 -0
  8. data/app/views/ratable/ratings/_rating.html.erb +1 -0
  9. data/db/migrate/20160418175804_create_ratable_ratings.rb +12 -0
  10. data/lib/generators/ratable/install_generator.rb +26 -0
  11. data/lib/generators/ratable/templates/initializer.rb +2 -0
  12. data/lib/generators/ratable/views_generator.rb +7 -0
  13. data/lib/ratable.rb +9 -0
  14. data/lib/ratable/engine.rb +29 -0
  15. data/lib/ratable/models/ratable.rb +37 -0
  16. data/lib/ratable/models/ratee.rb +43 -0
  17. data/lib/ratable/models/rater.rb +43 -0
  18. data/lib/ratable/version.rb +3 -0
  19. data/lib/tasks/ratable_tasks.rake +4 -0
  20. data/spec/dummy/README.rdoc +28 -0
  21. data/spec/dummy/Rakefile +6 -0
  22. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  23. data/spec/dummy/app/assets/javascripts/posts.js +2 -0
  24. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  25. data/spec/dummy/app/assets/stylesheets/posts.css +4 -0
  26. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  27. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  28. data/spec/dummy/app/controllers/posts_controller.rb +58 -0
  29. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  30. data/spec/dummy/app/helpers/posts_helper.rb +2 -0
  31. data/spec/dummy/app/models/admin.rb +8 -0
  32. data/spec/dummy/app/models/post.rb +3 -0
  33. data/spec/dummy/app/models/user.rb +8 -0
  34. data/spec/dummy/app/views/admins/confirmations/new.html.erb +16 -0
  35. data/spec/dummy/app/views/admins/mailer/confirmation_instructions.html.erb +5 -0
  36. data/spec/dummy/app/views/admins/mailer/password_change.html.erb +3 -0
  37. data/spec/dummy/app/views/admins/mailer/reset_password_instructions.html.erb +8 -0
  38. data/spec/dummy/app/views/admins/mailer/unlock_instructions.html.erb +7 -0
  39. data/spec/dummy/app/views/admins/passwords/edit.html.erb +25 -0
  40. data/spec/dummy/app/views/admins/passwords/new.html.erb +16 -0
  41. data/spec/dummy/app/views/admins/registrations/edit.html.erb +39 -0
  42. data/spec/dummy/app/views/admins/registrations/new.html.erb +29 -0
  43. data/spec/dummy/app/views/admins/sessions/new.html.erb +26 -0
  44. data/spec/dummy/app/views/admins/shared/_links.html.erb +25 -0
  45. data/spec/dummy/app/views/admins/unlocks/new.html.erb +16 -0
  46. data/spec/dummy/app/views/devise/confirmations/new.html.erb +16 -0
  47. data/spec/dummy/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  48. data/spec/dummy/app/views/devise/mailer/password_change.html.erb +3 -0
  49. data/spec/dummy/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  50. data/spec/dummy/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  51. data/spec/dummy/app/views/devise/passwords/edit.html.erb +25 -0
  52. data/spec/dummy/app/views/devise/passwords/new.html.erb +16 -0
  53. data/spec/dummy/app/views/devise/registrations/edit.html.erb +39 -0
  54. data/spec/dummy/app/views/devise/registrations/new.html.erb +29 -0
  55. data/spec/dummy/app/views/devise/sessions/new.html.erb +26 -0
  56. data/spec/dummy/app/views/devise/shared/_links.html.erb +25 -0
  57. data/spec/dummy/app/views/devise/unlocks/new.html.erb +16 -0
  58. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  59. data/spec/dummy/app/views/posts/_form.html.erb +25 -0
  60. data/spec/dummy/app/views/posts/edit.html.erb +6 -0
  61. data/spec/dummy/app/views/posts/index.html.erb +29 -0
  62. data/spec/dummy/app/views/posts/new.html.erb +5 -0
  63. data/spec/dummy/app/views/posts/show.html.erb +16 -0
  64. data/spec/dummy/bin/bundle +3 -0
  65. data/spec/dummy/bin/rails +4 -0
  66. data/spec/dummy/bin/rake +4 -0
  67. data/spec/dummy/bin/setup +29 -0
  68. data/spec/dummy/config.ru +4 -0
  69. data/spec/dummy/config/application.rb +32 -0
  70. data/spec/dummy/config/boot.rb +5 -0
  71. data/spec/dummy/config/database.yml +17 -0
  72. data/spec/dummy/config/environment.rb +5 -0
  73. data/spec/dummy/config/environments/development.rb +44 -0
  74. data/spec/dummy/config/environments/production.rb +79 -0
  75. data/spec/dummy/config/environments/test.rb +42 -0
  76. data/spec/dummy/config/initializers/assets.rb +11 -0
  77. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  78. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  79. data/spec/dummy/config/initializers/devise.rb +268 -0
  80. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/spec/dummy/config/initializers/inflections.rb +16 -0
  82. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  83. data/spec/dummy/config/initializers/ratable.rb +2 -0
  84. data/spec/dummy/config/initializers/session_store.rb +3 -0
  85. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  86. data/spec/dummy/config/locales/devise.en.yml +62 -0
  87. data/spec/dummy/config/locales/en.yml +23 -0
  88. data/spec/dummy/config/routes.rb +6 -0
  89. data/spec/dummy/config/secrets.yml +22 -0
  90. data/spec/dummy/db/migrate/20160418163354_create_posts.rb +10 -0
  91. data/spec/dummy/db/migrate/20160418191311_create_ratable_ratings.ratable.rb +13 -0
  92. data/spec/dummy/db/migrate/20160418213647_devise_create_users.rb +42 -0
  93. data/spec/dummy/db/migrate/20160418213911_devise_create_admins.rb +42 -0
  94. data/spec/dummy/db/schema.rb +70 -0
  95. data/spec/dummy/db/seeds.rb +41 -0
  96. data/spec/dummy/log/development.log +4262 -0
  97. data/spec/dummy/log/test.log +0 -0
  98. data/spec/dummy/public/404.html +67 -0
  99. data/spec/dummy/public/422.html +67 -0
  100. data/spec/dummy/public/500.html +66 -0
  101. data/spec/dummy/public/favicon.ico +0 -0
  102. data/spec/dummy/spec/models/admin_spec.rb +5 -0
  103. data/spec/dummy/spec/models/user_spec.rb +5 -0
  104. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-0/-0P6La6ZzmT6FXoEmJVTsYd67CipL6SIPig0KSPSDpc.cache +3 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-D/-D2OYLYkOmdH9fcYC2PtO9TkE_AxAn76QryoqXS638M.cache +0 -0
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-M/-Mz-aEIg4VUnLUBngwGWlbsfNw9qCNjKYGTJyWSmEHc.cache +4 -0
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-e/-eyhR7sP3yfc0SA_lqck9i_bUIQdgz8_OoB0sjEKt1g.cache +0 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-f/-fwrIh6PWLNICa91SOVDX5pwLvUe1ku0mb39EEM7c34.cache +0 -0
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xf9to_i0ffKiTMoxY11Vl7X8QKj8yfeTs72JaWjXHU.cache +0 -0
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0A/0ACLrt6G5lNNTzSoPCy_WZ_FLbOETGHgPifB_RCMdN4.cache +1 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0J/0J75sVqtBbc_kT8DWhuzo8BDmJLLC4Y7dxx_UzAMHn8.cache +1 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0J/0JK4ikBalkiy4fJf4qRESjSlFALE_9rYPBFHSz9r14E.cache +1 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0J/0JNeHNE_R2TTBsVqugkCbaASPxtk78rka5Ffe4SlCtU.cache +1 -0
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0M/0MZY0ePdHrWZq-A7fPCMRXI7s07t2JkxGXcv3cZ-QO8.cache +1 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0Q/0QRrwCQDbdknB_YulZdz8empfifcThC2AT3j9OG34vk.cache +1 -0
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0X/0XieMen8kvYzB82ZEHFeb2ypfsgWur4IVZ4boJW4PYM.cache +0 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0X/0XnkUPeYIOLwue8sa-jgOwq5YN2yCThuXLG8pYTfyeM.cache +0 -0
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0h/0hgutu42EEVnkW88_Y0eG0WrpidRvMi8KK5xkVSsRNc.cache +0 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/12/12V_vScYkfo6LorsNUtYcYhvPxJGciODXPE3ewia1Gg.cache +1 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1i/1i6eEsM6rsNnj-L6F6hL12XCPaZH2cIETKlwV_AO3es.cache +0 -0
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1t/1tgucX9twqA2GiQ2L8-cCQK_LiPcI_pIy9KYlDgGwes.cache +2 -0
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2N/2NqxZ3Akl-xFHf3-CWMaUKV3W5ieEltjd1xKBd1YkFc.cache +0 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2Q/2QG-l6MxnAJRALYS5UUwjdEXmaWFsluot1XsvqjXY2k.cache +0 -0
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2W/2Wm3pQ6Di10zuEkvwH2tHW5yuF8wUClV9q5qFwBaICA.cache +1 -0
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2h/2hLG1XWQzxOq92KyUaFZrSiBT0Kw00iwA2Y0PNJCu2k.cache +0 -0
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2j/2jU-Fei7jSOpsAovJwowoJjPyjm-WdTdmY7bMwMbm0s.cache +1 -0
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2m/2mfeWEHE5nweEM6sp34wu3rWzd3rRI_i6Otfa4T761Y.cache +0 -0
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2t/2tl2Cs5THBkIwBMNSREP-mfGWT9W_WZkUc3EGwVrqIs.cache +1 -0
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/32/32DMo7jhB9V2kp2Tv-vEr1XOBk9f8UDj1jja65Nx5Gg.cache +0 -0
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3E/3ErTIpBB6JkHC_FlZWvYrAPC3QM_pOrG1V3FD3h783k.cache +2 -0
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3H/3HN83KVj2FXMNvkkF1AJyx61bRnJad_WsTlUkBniIOE.cache +1 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3c/3cJznqSUpAZ5fyywwnH39xAvwgXfqB3_hHImLpnyMtA.cache +0 -0
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3o/3oF_KO5-Z03g9GYiJDy6fyWklRlOjxcfjeCTU88TwAM.cache +3 -0
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4T/4Tdy00fAhId2Dvvh2GCyJdVX9LvvC6ipaykw5xlOcKU.cache +0 -0
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4T/4Tq322H3HUjS4K6Y8JUwsRZI4Rio18dIKEph4DxFvTk.cache +1 -0
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4Z/4Za0gOi2LjMMh27YNng8QaOiXUcpi5D7gmGdAXP-5Es.cache +2 -0
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4_/4_dqVbfAxP0w0eBwNTGgBAO6OOjmOhDvCMRbDHyDOU0.cache +1 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4_/4_fVBIN5aEnkFzKGX-c0FyDs48ZbU2gNMrXodJ0fHqo.cache +1 -0
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4r/4rUrlfqNS2HIriQqF3ckca1WxtzXujfep56n2P4ORkQ.cache +1 -0
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4x/4x6Gia2d9Z04CiT-86ijcVYa8aGHTKu934P0o9euZaY.cache +1 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5I/5IRRy-9MTxCwKBjvR1Qpq_TVkFEa8Ir67elM7A6f7Wg.cache +1 -0
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5J/5Jrn4tTHMQYUWqgrztjshuyzJkfdedPRm_Ravb4dlGg.cache +0 -0
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5M/5MYhWB4iCzOWlTpV4Ey8iXSyUODJAXwNzNWJgNJdELg.cache +0 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5O/5OBt3cPMhzR_6lde22zrLtmq2YwEkCW_GcqyG3O-yaI.cache +0 -0
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5T/5TzYmONEI2HYkxGdPZU9iJFCuuoe70CB-i-w-KEHZv0.cache +0 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5_/5_6KymAFdre8IQ9pHIH23aVS1dXrGTSRj1s8qiNd94g.cache +0 -0
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5b/5bGyEzPQFS3_XAHzH1uXIKqhJjOx6P06z8K_G46yTWY.cache +0 -0
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6-/6-RrCtPMt20_v_wgGYolCgNI4HP8JsJaZZ91hxtC6iI.cache +1 -0
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/60/6070KFC5Tk3tWfUSPniGWxLUi-0cTcAL7fFB-V0xlP0.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/61/61QoojEhQiESAXRWY3-0SGTasjVuPMOl6F-vGa0kuxc.cache +0 -0
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/67/67d8OylO3FU_fK4sGdOVZRzmM9u9r_2Q07xs2eRLd6M.cache +0 -0
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6G/6GEFLfZxAuFAKwxALMqTVPPSUqGKHri7xJbiOelVBtY.cache +0 -0
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6O/6OCEjq8nTcSmG_1UGhKWQliIvkNhkSN6TxESj1nn2Sg.cache +1 -0
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6O/6OFGAzJ_ErtfSUaTlslsdYjRF4klH1KKa5Dqb9XALVs.cache +1 -0
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6U/6URreLSakJvBkyukchTf7EXRyEE8srvFxQO50KpC-Ek.cache +0 -0
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6V/6VjkJ2GB0mQfVw6PLqG4Q_lqVaBnYuYsDfeGl6_-GIs.cache +0 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6r/6rdFYGpzW1tMeMcQi6Xdx61KZj_h0oFsoQ6mEGwXk2Y.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7A/7AobKn6Qtn8O4zMzXzDXwFlfDA6jUdpXu5zsW0sjUhQ.cache +0 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7D/7DJIKqQ317IhdWOYyGHVTCU3SWAmLIKmHyiSzlX6TY0.cache +1 -0
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7O/7OlGGYBfYLXFV-PLUyhsPIpJvaU_HujE_0LKQPHaq3k.cache +1 -0
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7i/7iPYbKt971vrZlTMV41G_37WiGrJC_QAnoHWfb5Pskc.cache +0 -0
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7s/7sBQ-K1zETGVL0D3j7sg_2kIOlVQJK-6ofy8CXHBGHY.cache +1 -0
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/80/80miDT1ZELQOxdGZLqjkGWCytEdHNjtPo7p8rKzIHL0.cache +1 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8J/8JovvyT8vSLoxAzGiWI-8JP7P4RGtZG-IJJ1fJ5ry0o.cache +0 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8K/8K0rZ1wJwpC7NLU3FlLNgsR9bPhiLtGXVk1rN7gDcnk.cache +0 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8K/8KhPX9NkGee6H1Kv7EuTBxzVAtwiYwnHJ2xH5EjR68A.cache +0 -0
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8X/8XTTkP8lA9S6zbRL7m70WYunLheXtsCpLtb91JoiXso.cache +1 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8k/8kxu2I4fYoFnlYuEnE627Tw42brSs-64noz1f3sTdW4.cache +2 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9U/9UGF00olzPRLiAAfiVLkKHjaydbuTv9dBP3uP5tSWeo.cache +1 -0
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ad/AdW9IT_UynhILNDHkscawJRodzBuoEdM6oJRe4_ApN0.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ak/AkhJz5bYT--dwCy8wq4tTRjOwnQB3YQ1pPHS_78wdY0.cache +2 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/An/Anj036nLrx8tcCNaaOXZrctn6eewhJhPaAle4zWcais.cache +1 -0
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ap/ApX4KaNWkXdpnurFmZqHC7VdJCKDGXIRulRAloCqKaY.cache +0 -0
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B8/B8MFL9JYpZfCJxy49LXfGw8l0lkNYOhLZPEoHWnuxsc.cache +1 -0
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BD/BDliBdUw1T6QjwYqWcygs5W5UmzsCpJG_Ocq3HGZtyU.cache +0 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BR/BR0S82bFImFBUNCQh4i3bLEhY1SBnLQ73haeMoSpOEo.cache +3 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bf/Bf4IMiGrr9drzLCuStU96L_khPIasZLqmg9ZQn5j6sg.cache +0 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CE/CE9VjUVT0nzEiulmfLlS8BKXJJq9NcjFQWl8uLQIFEI.cache +1 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CH/CHUUXZKh2k1LwF8qZOiOQH0j6rbt-_UDgM2xYezm_Cg.cache +1 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CT/CT98yoG55U3aGLjvcl0PFirvkzr-UEUmoOy2bEaJqsA.cache +1 -0
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CV/CVMbXiBrx1yJ6-T1bR2LOd_peNAcNKO0VrJdUlfF_Mw.cache +1 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ct/CthQhPXZZN4D2VjOfboNFzN2cYbsHSUesCjGVO_-j5c.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cx/Cxa2ZprUBICpn0x9EuRZOCp_p74uQzPFDmSKlN1r52A.cache +1 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DC/DCcOxrgPP8CqgJWOhMc2bjOWRlcblOdZKtAaKDBD3tQ.cache +3 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DU/DUUEG_PTi-CFpoGntk-WHT5TDwltVR2Cm_lfeEph76c.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DZ/DZmsQFSPGw1f6whqsZDaOM5N65f3hg70j5osEtpQKCw.cache +0 -0
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D_/D_8oJxKOur9GkYdcHodsK-2qWca-7eBusIBF_rScXeE.cache +1 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dh/DhBChgh3eTs4SB3AnZIp4J3i-2llyL2Y7JQxfJcPruQ.cache +1 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dm/DmmfrCpXtt74Hr6NO54lxyOCDv6klnDyBqeDFR7oDU8.cache +0 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E6/E6NG0yh6zhrhQVIUXbixZl0bCE25l2lfkCViuonv6ZI.cache +1 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EA/EA4oIlDLEoRR4LfI_mNG_rhop-muSDtblm6Jv3OUPGw.cache +1 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EA/EAQucS9rscrdz0FqVZZUbAK7iAkGi1cCNOzgh4xUcvE.cache +0 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EL/EL255pk8hf4gmrsxr53H7FzNQPEUZwgwtg5iVcooZak.cache +0 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EM/EMZEcKOIp9g--NYe85Ws-_sZ4Bj1LtONxnQiZ3D-em0.cache +1 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EX/EX72-m6VquzMylZ_ax-Buk1YOwR1AQzaavZODHKl7ns.cache +1 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ed/EdoHxfk996oKauzBT66ZgFFC-msevrraoH-LH5VfoEc.cache +0 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F2/F2gsn8sN68JP1tItGWlrcfFNX4QgXI8jaJTP1nEyKt8.cache +0 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FM/FMUnWWL__BEfLwlBV_ZSSHBjPxds8rHsT3Eupctj-L0.cache +0 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FQ/FQobv3lqIo_6SoE_iA2MKFvMuIcD38-DM80318i63Ak.cache +1 -0
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fe/FeW4sFpMy1FQm_rmlnUFjvci9rEce0pClgt4SA00IGs.cache +1 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fi/Fi1pc_F8f3tTRGlsnZFY-6M0zCj_mzmSWC9CxqvwX8k.cache +1 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fj/Fjd7YYxpF7FiRECE9OFyFkcP1e0JEETbs7oPb6wFoY4.cache +1 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fo/Foduhm1LHKjrVbLWyo1RHMvAx9b3OiZUHvnWKZLqjsU.cache +1 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fq/FqGGmXUpMx4pDFFiy5BD-FLD4RhUA6WT9ojBR8hkawo.cache +1 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fz/Fz_bMknEUXl06w__voIyweqrl2fN0Iw5Tg1DmRP8zHM.cache +2 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/G0/G0U6ez18MjX5TyYEbJuc3yWoJM8x9H66T3DSZnXLLHg.cache +0 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ge/GevAa9AnonJWO3_HBBO_rYTJTv7gCteqg5JG15UOP-w.cache +1 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gn/Gnjgncb6KCNU0e2ada_KYayK-ciceh2s6bX2aN19uEU.cache +1 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HF/HFXrGEMG4B_vxamu5V68rVFVdkY0wOkkFfhfHplUsO0.cache +1 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HM/HMiAHQ5mgcD9_sjXuHe4RLWQ_hhiqoR7Mt4kuzQpY-g.cache +1 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HT/HTIX92fY3rFstbhOo57Qfi930a0c-wieosdCEj3Ewts.cache +1 -0
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ht/Htut8AcOcIvhXZb1MY5fsXLV8dJFmPfkGPKzmhWkS9w.cache +0 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/I5/I5nd03xaySIq_OGOafiyS0o0b4Pdhe4NGZ0fZrTRrr0.cache +1 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IY/IY0zxSM3sWnf8MlLROliMRwbgjwcTE2oNhDTGfLN_xk.cache +1 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IY/IYRG2R0fPaEKAP_miwb2TTxVE3xnlqX-cJGsvf11IsE.cache +0 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ix/IxHhuXPOrV8LrUxuPjFMlXAnypkS1NVT5MpYKtycrcs.cache +0 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JQ/JQssFrbh8lLWChT8jehDFt9B2ajewk0XRQq7Y5kkRNQ.cache +0 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jr/JrDvYBuwYvYVcbXazL2vX__KqIvNy-pEaQzW0i5dNhQ.cache +1 -0
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KE/KEnw1m8UpMQPkWOMw0atnS37qg3aL7PfzVhj6CXDhRU.cache +1 -0
  222. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KN/KNsAJ7JLbYLHI8SJW_hIa7qkIHO4gfBYkcB4nUZpoRw.cache +1 -0
  223. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KZ/KZoSG7sFqG0WLHYuE1VdcRsY76Fn2eHiCO3Uo8uQSCE.cache +2 -0
  224. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ko/Ko0vN6BU1F6nQviJJWaiGfUS9PNv6s0Cs2V19OYoWeE.cache +1 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Kv/KvUGQwlrzbq-50DU_cIpyVMUSalo4TlSjWsOavxiTuw.cache +1 -0
  226. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LZ/LZIDK70WYueQICP6Sp1GxKpe9zFXb0ZamYYzldvmwlI.cache +0 -0
  227. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lj/Lj91Y_qqSss7cvuMdPCbK0ze3s4P-MVHgG71mjBOLfo.cache +0 -0
  228. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lk/Lk9-bjfiTOYc48Y-eTAbBkv5NujBOXIDPQZQf2xbEgQ.cache +0 -0
  229. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ML/MLhsHbUfbbN9pFk3_UBkhkhAmkXuB0L_6j3JL2sKs8w.cache +1 -0
  230. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MT/MTZqh02yPsqIJUMgTOTcKYh4Hiy_6Wpg42JXeaGG57M.cache +0 -0
  231. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mo/MoSNb2T7kLl-Xy4olGfF3gDqz08a9TzydKKtDMFg4oo.cache +1 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mp/Mp50yiPzJPvl91YZO6ge6SeMidocoLwM2bOGNeWBACE.cache +1 -0
  233. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mv/Mv_dQdsKj1UZmnBrga0FqIXeAtiH2pxSAredwbab2HY.cache +0 -0
  234. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NC/NCktFvt85hXNOOEoGzfHwXiqeIbcdU96qIuxGbhATeU.cache +1 -0
  235. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ND/NDPW_uneRsJbEQ5gF0md4seMuX3bT5vO4xkXzJPiX5U.cache +1 -0
  236. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ni/NiHH2ZJJasPeQWmHGpbBRR0UAVNvcT-8gtUfj5_LOm4.cache +1 -0
  237. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/O-/O-6mo2QAXP1MvwLdeye6PKjb_OTz9mlcmcn18hzThU8.cache +0 -0
  238. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/O9/O9v6ehP2lKNNnM7SUCtKfyPqO52GQi3jfPXpLC-cu34.cache +0 -0
  239. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  240. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OL/OLjsXAHDMUc3e1EHSlAQOWrYWRxcHLnr77S8SOxXBIk.cache +1 -0
  241. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OQ/OQ2ZSRnP6fjzzjRlbCyGgUE8DIE5t1Xo0ZM5pa6NFs8.cache +1 -0
  242. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTR2aPEkjfVuok1yuJ3D7nRZrzqM-xAkxLJfE-huIwI.cache +0 -0
  243. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OT/OTqs5_iGGmtYHhXft1zoR_UHXwRHZ_1TxlHprIDYNA8.cache +1 -0
  244. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OZ/OZWgBljc74JYadBBNqOfl76rhNxU4wWLoPEOeau191w.cache +2 -0
  245. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ow/OwiyG61Hbpl1F5dctsGOwoqXn85LqOEEBJH1t_WWdCU.cache +1 -0
  246. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/P-/P-DhsoH7MkCAtiJ5dyJ-ddXxCopmnISzS23m9ZCE09k.cache +4 -0
  247. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PM/PMN1osvu2-i9mA0l5GBjeLE7_wXe4lk75jlZrjD_uUc.cache +1 -0
  248. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q0/Q093r4Ms5t7GdGInWj69fIrfY8SzTPvoZ3u3nUKq0ZE.cache +5 -0
  249. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q4/Q4eyb5YtoQ32F04c2WEF-hNt9a-FJQmZD_En3nEXrzg.cache +0 -0
  250. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q4/Q4k7F35IUldGYRUttI5t9xlCMji8UXQQqnIk4s2rHsE.cache +2 -0
  251. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QJ/QJZvrupMD_tnINLgHpmgkGBfm2HLFpiu7vwnIViT6Tc.cache +0 -0
  252. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QN/QNVttgld_u6s3BPgs6myW9RSuU66M2aqQ2LSn4_j5Ok.cache +1 -0
  253. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QP/QP1ILA3uzqNb34QABQfDo-SR2KGZPxRiCzGM5lh2zlc.cache +0 -0
  254. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QR/QRc8vDY6yeBudxzzMcLGRFRdBxnONdmjJqHkYDtHsI0.cache +1 -0
  255. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QV/QV9VmuZLoBpIm5Ayvt85f1DOYLKYFfSi14I1k5gSkLA.cache +1 -0
  256. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qk/Qkn34q-MXGfuRqSwT86YuIWAvCI_ej7kgK0j6k-v09o.cache +0 -0
  257. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/R0/R0L6Ca3D3XVpDn5_dzGvY8S51_C5ZTpwHMgH-XayQCo.cache +1 -0
  258. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RO/ROMNCizcw6X30UMhh0Z691o1PIrM6oQwR9heyvKjdvQ.cache +0 -0
  259. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rh/RhqdoSh53rE5O7nO4pDBWpFRnL6RopKecR3w7WFmL5I.cache +0 -0
  260. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ri/RiAFS8VRs0P53KEXGEieBwBNaw89tpmPAkolo4Vs6xE.cache +1 -0
  261. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rk/RknqJtQ74m8d8u4YSuTv8AiFUC95YJduQE5iYjPRTv4.cache +0 -0
  262. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rl/RlXdBRG9TKFO2_mOZdq4YKvFtIKfCI7N7nvmTKzDstk.cache +1 -0
  263. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rn/RnKsvVqc7cw4QF0xuu0uwjJOrt5bSvmYuxPy_rzTCnE.cache +1 -0
  264. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S6/S61Mhp6gQfegG4HgkW10Jl84RWD1O7ro5z-QtZrquWQ.cache +0 -0
  265. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SK/SKl9xe2Jcd2RyaMgiL8edTvf9QlmgVJbSs4IIej7dgI.cache +1 -0
  266. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SZ/SZgBg9RPZu8htRG2g8e9XjQ0OCA654c0vebC1UOP4dQ.cache +1 -0
  267. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sr/SrAOmhCgj1EMOAGRv0vVwAQbTVriYMNGdyxA9xsb2kg.cache +0 -0
  268. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/T4/T4Ya3VzsH30WUf1NgP9gFWLdsJyyi0BnjMvKkLbQMoI.cache +1 -0
  269. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/T8/T8xpE7xaChDq07Y80XY2smJ79RXU_U8JgAmO0Oh3H9g.cache +1 -0
  270. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tf/Tfp5euTNvN853eyPD8CPGbaNEhvry-ycdse6yl67At8.cache +0 -0
  271. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwcOPpzqNCLNK2XpshasosI5Af2BxQ2q2Uv0D-3puW4.cache +3 -0
  272. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V1/V1SXb5pqcIXHUhhvhnJN2ePAxXZThF4mf-j2yNtp1dk.cache +0 -0
  273. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VJ/VJ0q1uR3rWFOHQtjVkardz4bIQclM2gfJkYJ2j5OcB0.cache +0 -0
  274. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VX/VXBCvgEX11cIhhQYd-aVJKp0cwGh3qrnXuOKYnSgKSw.cache +0 -0
  275. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vw/Vw-mt8l0X9EL9emJQxXocq6RKzuv8RFh-0PogtaYLZk.cache +0 -0
  276. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W-/W-W_Nlx2G6Z8iVOF33QrUE5He6CIQ2CvcDfYHyYLN7U.cache +2 -0
  277. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W5/W5kwVhOgKuRkjMcUvm2qm77VMZ-mCr-u6RphLFZXTCU.cache +1 -0
  278. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WW/WWmbtzbzPwlrmjGO-6YpqSAhy_MHvZI2CVOnHVBZluc.cache +0 -0
  279. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wk/WkrHpTa7llX-DFtuS35_ZaL7UWv6RO638xngImqVe4c.cache +0 -0
  280. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wn/WnWuCuhCJruFda0GB5BaRA4mfXPLpzflsbABjYEMc_w.cache +0 -0
  281. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wt/WtY-ZXHqtRgaWhNcyGpcpeXCCj4UY1ghWHLIkdJrDRM.cache +0 -0
  282. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XK/XKDSUokuccV0bnSxrRjG9V4ZxqUTLZrPyo4eoWGmZzM.cache +1 -0
  283. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X_/X_3hlTn9nMZVQmAUMNOSvjLJPHDPVEOWDNo0qLm0zos.cache +0 -0
  284. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xo/XoQy9z57H-kVlCEwVROwVgnbnKmTmiEpXX_TMeaDo2g.cache +1 -0
  285. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xu/Xu9KrPXTz_M6op45QPkxrEINEsIxLHmJluA1v3sSHPs.cache +0 -0
  286. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y9/Y9K7Q_yGX8Kuj4feQtLf15uDDyunA-ZJYFcGWa5ejsA.cache +1 -0
  287. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y9/Y9brjN0lEtfds5Bd-vIifOTsIi_MMWp8x1zCDjbw2zU.cache +0 -0
  288. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YI/YIpxUxSlcehKSpOyo94Qt5YEdlGNynH0e7feoG-xjUk.cache +1 -0
  289. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z9/Z9OtKGKobzxJM5McAiLlRpNmMhWQlvneCQlpOyF4eNA.cache +1 -0
  290. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZB/ZBFeDbSTfi52c-cpuyzmzHZBimPloYpHb5olX9VNIqU.cache +0 -0
  291. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZR/ZRLjwVIAAKQKRZN6lI-DCKGaHjdIRfvKeGaEPzz-9yI.cache +2 -0
  292. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZW/ZWYrfDTyIv6QHwv9-xh4EhemDN9_oEk1uxCmzh03Dsg.cache +1 -0
  293. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZY/ZYPwOodVuImaQrwFFocbex6gfcwT18M35b5nZc9i-04.cache +0 -0
  294. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zo/ZokXHQoLf-YkFaygPfXoHdQEpU41WdTzxh0EXt5Lwh8.cache +1 -0
  295. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvuDZXnnIXx8bPQ3sBq6ESIpXjQWAuycwtHa7evehgc.cache +0 -0
  296. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_G/_GRuSms0nwz13DJYsQpZeF25ufCunnO-r2DsYfdd6JE.cache +1 -0
  297. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_M/_Mhy5OoE3niHKbl51MkvkkqYRqeHwCLq1TqmeSK5cFU.cache +0 -0
  298. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_T/_TzTBWcSkif71xImPb6xjxJi_x8849KEUWHvfh590FY.cache +1 -0
  299. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_b/_bieb6AIVHU2NU1LH8nYkTzMtP25lxLjff4PelmGDYI.cache +1 -0
  300. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_h/_hHh9oSm-WETm88Dx5tvcmNUZSnuzw2B-qIaGN4qcGg.cache +0 -0
  301. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a9/a9ihL4K_mB0gpvMgA7aPpz6MJ7vcvHvAX_qa2lsGtCE.cache +1 -0
  302. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aH/aHOz_8PGGMNxf8nZjgObg_06CkeXckSJL2q4qYIMbzY.cache +1 -0
  303. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aI/aItns9qFHu-YEH52xlRkT-8_w7uzUNYd993a3hp6pJo.cache +1 -0
  304. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aJ/aJxRXLWRpGhobTmxVGrv7Y2cuyt8pJ_zE9vxpc-UaIg.cache +1 -0
  305. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aL/aLAZD0lUKpCBnT3vLDBu9S7iiC5dO6IAYLjFzkMZlAY.cache +0 -0
  306. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aO/aOUVRKcSgCM4iO3Z8g-H60HGmtAg6SlinaC2-VuTcsI.cache +0 -0
  307. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ac/ac1PhbHWpAMNEQ-7TGuEfFjqqv659ecYvgeisWiOJIo.cache +0 -0
  308. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/al/alRkD10dx31Qcbbu4D36m5Wj5eij_FGn4dbAlZ-bXlM.cache +0 -0
  309. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/b-/b-Ai5SZPmKqiXj9rCPPpyyGxGKo2Rs08DBdb52I_sXA.cache +0 -0
  310. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bD26JZ5tjKqGkeSjGyQfdjyAcVLu2NG4DZWF8IbcZLs.cache +0 -0
  311. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bK/bKMFkNp1JNjYGzDJHM3-mMG2vlg6Tg4XzkRetnASupM.cache +1 -0
  312. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bK/bKPUaokpNQoNSTkEFA2MY9tUl2xpt-KlvY23MPaFxGE.cache +1 -0
  313. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bL/bLD9V17DzsIS2TiJ-MvO1Z1NcGcNAwDWJ7CU5EDcLDo.cache +0 -0
  314. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ba/bacuoCkw91szBjYzoV-KZwkPDydMhPGKTLu6NqS-7c8.cache +1 -0
  315. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bo/boSXC_EKExjlvVOEldQMaUIH9WW1R4_IXjzRnFvloPc.cache +0 -0
  316. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bp/bpQ9Sw_Jn6pzry0Sn8P9nHeoICt39WODOg88P8RvMyo.cache +0 -0
  317. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c3/c34qcA_dH0lbUrKEPAh25awudaLQ77YAY5TF0eHxw6E.cache +0 -0
  318. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cB/cBBScA5eDjAVDujKDgv8v1TeOovT37A9MN4h1DCqebQ.cache +1 -0
  319. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cF/cFwot4xGFaUy2Wb9Upgo6ZcPi5s9Uh_fjmendfWkEz0.cache +1 -0
  320. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cT/cTYW-uabpE94e8HpCSKSKDmFi0tUq2bzvIs6G1tjhAs.cache +1 -0
  321. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cV/cVcbTXIkes51Oa9ciIAM6ZSDzEdQwN6Y80pn68iZvC0.cache +3 -0
  322. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c_/c_uP-sAShaLfDv07DcGvLv0E8Wn7pdETWUF6Jn7tHMA.cache +0 -0
  323. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cu/cuSeN8q233PZZcCUdyIXYV038jjtqjESgewcOxo3I1g.cache +1 -0
  324. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d-/d-SLq8oIMZTVe9WbjvRzSI4x_gn4ZQyZVIEVYT3EMiw.cache +0 -0
  325. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d0/d0bNCi6LjOgRS83y4BuaaXbvV3jEz1FwQMqkmmBJ8zY.cache +0 -0
  326. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dB/dBPV1uY9BqCkDa5HxrrKbxOUtL85VF5ForFopr8Jaj8.cache +0 -0
  327. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dF/dFIAvFsFF7IxOukm1g5_Of4gVSwGw1udN7fdAjbAEGg.cache +1 -0
  328. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dF/dFMT3a5Ul4S9xarn-YpQl9eW7PR1ZC29d1ta14LgUVs.cache +3 -0
  329. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dF/dFsSkpp_lGiiuiaeybDsonk3fYTfxlSwAYfvGu0weNI.cache +0 -0
  330. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dM/dMakIi7Qd9nhll3zLnLjNwlIdLixBeFz2PbqUuuDBUY.cache +1 -0
  331. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dS/dSPZUBUrQNFK_eFjyRd2Khwirg1GEi0pHHObOsXUtXo.cache +1 -0
  332. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/de/de1XA2I7J5_gbGV_meFQ8Br6r5E8W0Q8y0zhBjE19yI.cache +0 -0
  333. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dg/dgsJ3g6OHasp9__Hl218yQLCJWigWmyzm6R35-s6gJ8.cache +1 -0
  334. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eB/eBFh5cPXprfZwOg0TDYqKC3tvO3nqewxPYWq1FD7zZY.cache +1 -0
  335. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eF/eFD8rZm7oEQxM-un8i3gcCjcIEnPVqxMGcoAD5RoauY.cache +1 -0
  336. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eX/eXJ5o4Ya23kI9voVd9kjRU7Dv9T-U_GhQR5U-S3ASpw.cache +0 -0
  337. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ef/efSoKnPqvsEl7EBTAb46rs_bD1ZAlnOYecXh8jDhhyA.cache +1 -0
  338. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eg/ega0rmeaKFMUTPB_qtHy2Au7yb8KyX8BItioaJNpwgI.cache +1 -0
  339. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ep/epH1PFcwKcy5v18qFj1ykPMTHS5ceY0SyK-IDtYgdWA.cache +0 -0
  340. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f5/f5e-maX2K-x288udbi1cKwLWnSh4XFT6aGG0qBNvfSw.cache +1 -0
  341. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fW/fWANCVR4Ucil35K6kMGpWgh-TwhDG1TYmjwdkxzZdys.cache +1 -0
  342. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gE/gECl7_qNU3YRMGG866VDjHCouNQS6hsej3EggLDy4GU.cache +1 -0
  343. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gF/gFfg9Qz2JiIomQ_vHRIz8k7Ve7Nf_XJ0dMkWf-LQGyM.cache +0 -0
  344. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gM/gMc9crMgBxPTyprEhyL2z27KcVWhA9TSpjW9X8wCXUA.cache +1 -0
  345. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gN/gNu4wwBAuO5c2H2oZf_yULbDHm06tlMBBElMXGjpl_g.cache +1 -0
  346. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gR/gRCsBdQvxW_uTWjM4dHKF-KHs8E3f39LvEd_cYYZisQ.cache +1 -0
  347. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gX/gXwXuo-8O7dn_3HTzpDWYCJkdtOV4MW2SjcunNz89M8.cache +1 -0
  348. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gY/gYrAG7shHPYX6WEXdxqiZWufUcFaR1j7QbDHwnHj-KE.cache +3 -0
  349. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gZ/gZp3uXMHuYQC4hzCr7bQfetKNdJAtbQmg3so2KpW1Dw.cache +0 -0
  350. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gw/gwnigaigznCKL0ZNF5181AiqT4eWdD2OBxTF46YQJ6I.cache +0 -0
  351. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hC/hC5PNNTW6sOLg-0_2AySZmUPFTTcpQT1PNbcpGx-aTE.cache +2 -0
  352. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hM/hMIs8L7IBJTyd1k3npXo4qQ3qd_73KEhycioqpjzKFQ.cache +1 -0
  353. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  354. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hf/hfwFd6R9Q0zTADBylCn08zhDp3n1hgkcCyS3XruEfmQ.cache +1 -0
  355. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hw/hwzMfGnbKI1Z2ORzWUJZZzE2tbb1kW0nLC6a2QrNlTY.cache +1 -0
  356. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i5/i5lKdKMVFT3M3MtIzivPRBfb_52OGEXOPJJNmfl92TQ.cache +1 -0
  357. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i8/i8YcPGpqANQCOpDFt3Oz9u2WW60RnrQWEGoJ2-vktdU.cache +0 -0
  358. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iW/iW0MW8zrg-Ajlv0lwQG4Qh-IA5_9XXxdaZNMTDCg5bg.cache +0 -0
  359. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iW/iW_KL4QxYTqQw5H9RIfdRXWktAtNZoZpsRUgX-7LbFg.cache +1 -0
  360. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iz/izDzIF87Di81n6GvgzPtAT6gWyp5vfI4e1v93N-kn1M.cache +0 -0
  361. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j-/j-9qNW2IGZzhaMWU5l-_FDQS9APPtgeCZu83pgnwJ9w.cache +1 -0
  362. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j6/j60MH5gQNH6dSRuxNu65hpozw0OZKj-YipNY4rahAxY.cache +0 -0
  363. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j8/j87h5VF_Z-Yel_G9p9sCKQA0wtYG8m8o20tzLJrZ6Sc.cache +0 -0
  364. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jE/jEXTYeLGMuK6tAKQhru35_dXiRHg1lv6-RD1dfxp_zY.cache +1 -0
  365. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jN/jNnBaSUDJeyz3FYMKtQZwIPPmtDUUDzXzFMldyJwF0g.cache +0 -0
  366. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ja/jaU-qoKeeY7TscPU0zq1zV6tOG57Ks9r3TuzYcmhooQ.cache +3 -0
  367. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jf/jfRY5USWxRTRZJoLF8dYzWI-73joexcWZqMpKO1TOD8.cache +0 -0
  368. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jzbw_kUBJSmAlkq8TG5fQLmz6thwaDBcd1okbaej3-Y.cache +0 -0
  369. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/k4/k4_SpFqRrXmwxiuv1cUA3soLgLLDVnugsxfDqqwWLuI.cache +0 -0
  370. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kI/kIIKb14snvGdsq4jhjtyM_CP-Cd0NKE6OT9cwlYqKOI.cache +1 -0
  371. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kI/kIILfhT3orF4x5GMy0RAycKsZechDsrHq3ys96p-xG8.cache +0 -0
  372. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kV/kV7yfhXSq4CsdM--GPsdm0F3HY06SUchNq30Lj5ocRM.cache +0 -0
  373. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kY/kYbIGQNPQe4GYwbkAm58hFhdtxKwXTmYXfAHSX4MgEg.cache +1 -0
  374. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kZ/kZjXqAUjYMiylwIYpEAb8Ot58WIpgU4OBbS2Z7MJznU.cache +1 -0
  375. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kf/kfOAMoTci1jf5Kp5TNOIwca1jDee8WG4r5HYlk_7tQ0.cache +0 -0
  376. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kh/kh_iyQjGtDQQTkT91SnRDsLg3C2qFFmu5FtHLkQLw8k.cache +0 -0
  377. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ki/kix_EplWf3aUwDl85oqG9UAkKvRIHaC0UmYO-tFP7P8.cache +1 -0
  378. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l0/l02czuWXFKrW03_WZiGpk2WlZ_g3A8vytZQ_UYf-r3k.cache +1 -0
  379. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lC/lCDyfzgtIydC04gEc8SDLnYsmXAgyH8gHaUO4dYYXLI.cache +0 -0
  380. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lQ/lQTkkKL-kOi0l9-7FwLg6JqTEo0s99SVrnzKgk0k4h4.cache +1 -0
  381. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lh/lhNm7EanSsonRT0IenjGhHslSks92eIXZEmh6XvD1rQ.cache +1 -0
  382. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljxumXyloSTS34w6pFvKbHfXxmOU3cN3BcB9f7N2OZM.cache +2 -0
  383. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lk/lkH60cFFuBU9kgPplNnycS9JExF-lVd01prEbCGrvyQ.cache +0 -0
  384. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ln/ln1fPHSLJYOZY9cHWsJiYSX3rYzOq9Odq3LVuNXTeaQ.cache +1 -0
  385. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lw/lwejGQgzZav2jROeJxHlvZyKWlPieg5WUDH0BhVUdWo.cache +0 -0
  386. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mO/mO-ndURpUk6j9hvQJwS796DIrrgccWX5uE6OZIhL4Qo.cache +2 -0
  387. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mP/mPpVgJjs-fOgDBPJzzx1ecPBzyjQBMJ3wWOKnPGSwiQ.cache +0 -0
  388. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mQ/mQ-M70s1r-LRq54JMuAt7VF8p6VaMYQ3g44sxkr7ITk.cache +0 -0
  389. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mY/mYopGgRQb4d3zkyYPFndh-pstJ5xB7aut6jRRUe9EDY.cache +1 -0
  390. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/me/mex7icsJIPTvXpPzPJW3TO5plGmVKCFFuMH6_s_T8Wo.cache +0 -0
  391. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mf/mf7-BtLuahzyp24h_NIH-tNbOKMYoJkHrWBeLkbDpTc.cache +1 -0
  392. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mo/mo2HG3ywmgiYnYo5dhXXBf9BEoN4wmQqRDS-Qta7smE.cache +4 -0
  393. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/my/myEkdGCAnSGAswXZvTjBOLiHlmA53iH4-eOcswv80rM.cache +0 -0
  394. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nL/nL-b1MwtHCQouWbIsp0_4ObWKLrOoXaamGmmPLkiFQM.cache +1 -0
  395. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nN/nNEshoSAuPN4clF4MoDU768fFGqLJd7-sUEj9PFenaI.cache +1 -0
  396. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nO/nOwubzXwubtwBThehdKMfJcp0Db2hk2L7Hr9B7u_UtE.cache +0 -0
  397. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nT/nT0KwKLZIvlcs6x47LQmeSenR4VeU59104KsK1l96RA.cache +0 -0
  398. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nU/nUBcQ5RWD-uG_jkvHvVsmwMUoL1tE32skTFlRncBfXI.cache +0 -0
  399. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nm/nmpaGT3aJ_ssVYe9E2o0pgQBJhnnSGI_6m4xadTQ0dg.cache +0 -0
  400. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ny/nynREIUPUrTdMFntJ9Zc9vOnLg05V5F89hMgJZL5tZE.cache +1 -0
  401. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/o8/o8F2UeQn-8PhAxYGrOzXlbmpunURtq89qY71OL5VOss.cache +1 -0
  402. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCDFmW6LfBifHXwhM6A0IAFgxWl1rF9lVr_R7-7qaCk.cache +1 -0
  403. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oD/oDECGdvUrmeKPkrDrgfMKGdIyUOElJTJ7Lp38R8uBvQ.cache +0 -0
  404. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oF/oFdNoSLa1ar7zwN5U5Evr0nEOjWCcWuX5dxLU7r-WVM.cache +1 -0
  405. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oJ/oJANL_Z4kpEuyh5j3AbGGaLY8hn00BX-aCf8ZyR1TDU.cache +3 -0
  406. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oX/oXCnsAHeTBbeOx9sfDGy26RyrSow5v4pSThE-fj4opk.cache +0 -0
  407. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/od/odJANVcG5kLyKNpsrF0Jz3eFwF6q1zBvbUlOKsTqVLw.cache +1 -0
  408. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oj/ojBeI0iXtnLJkGQlXgG7t14Vll25zLpibOVp92tTTZs.cache +2 -0
  409. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ok/okdTv0QEprahxUvA9sQt93Z3Ro6yefSVHwvCu7zgTtc.cache +0 -0
  410. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/om/ompUzgaB0qfmoE6djKuHjLjMYlToLX0_lb6iFwWPO0o.cache +0 -0
  411. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oq/oqqKAgC5POQiehwnTyiO8PgBrM1SI_JoS2l_Lg1IEDA.cache +0 -0
  412. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  413. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pP/pPXpb0N5eqbQc3Ei5yRa0Fy_V8R5kiZ37WVgQeZn8eY.cache +1 -0
  414. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qC/qCc7R_7oXWq9nWP_7m2AKuoc00jiUUH05joEeTk2JCU.cache +0 -0
  415. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qF/qF-kWM-KfKtq7JiKb3cy2cnMahDA8bJuzLlJmQjIdZ8.cache +1 -0
  416. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qY/qYxKD9OfzGOTw4xs_y7qKNtZ6IJHMi7Bg12m_fTUEIM.cache +1 -0
  417. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qo/qoF-tFRkPzzu6inRp6TAewYl9ffGLzxufTPxOrrRqwY.cache +1 -0
  418. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qp/qppDSh_Y2DPrqkiJarQGRDzv3Hn4uOepZoPDGXFnEDU.cache +1 -0
  419. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qs/qsfm_fJNmQVajTReuz8LkocHXrdaNdp0fkLTKHnO1b4.cache +1 -0
  420. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r1/r1BIWhLcO8KkIsZhbkwAJjejXRwJJ5Du0MB9PmWsYPM.cache +0 -0
  421. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r8/r8WsPaJV1IQ3E4TTDKWcr3dZkl7b3cMs1Rhejogxygo.cache +0 -0
  422. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rW/rW2ZglIdLQbRUHw0uxtaOOtl-CDefq9_4p_PHHMsoo0.cache +3 -0
  423. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rq/rqKrEV_4DiAAw6Gs88gIbxTNoz9QdMcCj_zEnC1jc5w.cache +1 -0
  424. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s1/s1D8F0pbJyMPj5d53gMVkR9EH7jCayJknLO0CGvNzAo.cache +0 -0
  425. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s8/s82mqYtywIlap0xpsK01dO4_rRzqgSAlDUF1tbCptnQ.cache +1 -0
  426. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sd/sdQ154R_gwMPFFQXIN1fwN6Jr7LOUICxg2ExetgRw1Q.cache +0 -0
  427. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ss/sslyPVyiLxQku0iaEMSAj5Wb2vhlJfMmm9mvIB72yQ0.cache +1 -0
  428. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sw/sw4UUcUimo9PywpNkPRPU4XiQVeR-N4KFxG1HAp5FkI.cache +1 -0
  429. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t9/t9md9n8FCGyiInfVzHEMR95c3rqpx_pC2ya5zbe2Fv4.cache +1 -0
  430. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tE/tE58WITsB2JVJyDaGwXDl92QGcnS0fPlgbCU9H1cCLQ.cache +1 -0
  431. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tL/tLC1puCyQ4QiKzDg-avy7eOLObF2Wz1gj30o6mAa5jg.cache +1 -0
  432. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/te/ten0y-IlYPGHqSJNjAjxKbEKIIeZ4HBd0ODqB7_6tyk.cache +1 -0
  433. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tg/tgzS3WilK--0h1nZ0nEyLceIiEEbhh0-BuNeBkiuDJs.cache +0 -0
  434. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u0/u0yVVTjfmTSxeHmoHcP4FCgrFRa0sJ4BX2geZsgdPzw.cache +1 -0
  435. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u3/u3Av8pMPvZxQ0gEmIrN8MkvREdMHbOYAEXXGY2hVKpY.cache +0 -0
  436. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u3/u3ksgu2VcCb_ktcMhuTj8otZgoXlHnB-zOYEcIbkDj0.cache +1 -0
  437. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uA/uAB5xKUNyFA7UatV9hCegzkWgqUOzKxoZrHKZRc7ev0.cache +1 -0
  438. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uS/uSkkH3V3NrAmnPVCWDUoHDtFc95NbdwitXN3fn8r2H0.cache +1 -0
  439. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uV/uVu2L4w6hMVrDRZTRM9T_IZnLAmwU788EGYGF71qN0w.cache +2 -0
  440. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uY/uY8jf8edJYQHjBtfI4RVyxlP3REs3nQYaKpdb9qrk10.cache +1 -0
  441. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ua/uaphquNzqNAjGufnSvQy9qmB6d_TYK01qMRrVMSeQiI.cache +0 -0
  442. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uf/ufXH-6bpalNC4msRprZF6iMTIaVHMlcGfGQFdgpqDk8.cache +1 -0
  443. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ul/ul8Tx5rZ5nI7azy_Jlfj4_8YoDJboNIQpMk02gEtyy0.cache +1 -0
  444. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v-/v-evbV6wa3WXzDpxmnmjAVk-68ERLzotfSaTh-q6EC8.cache +0 -0
  445. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v1/v1bVyCCFpld9IJVldqw0KThyMHs3UxARrXD66tlUt6g.cache +1 -0
  446. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vD/vDMLANiV7sA25Z7D2trZ3k97spFJD3CsQfP8bJg_ox8.cache +0 -0
  447. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vF/vFcO6dRWrbU6WJpKwguCm4Oz8Ze_OPCLH6GORiWo28I.cache +0 -0
  448. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vH/vH8ec6kckjKdl_PIyTHfTVmtc5DzWh3dFoHNLN5VuQw.cache +1 -0
  449. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vV/vVWzR-PBGrPDaHrw8TcfdVS3gpD2yGzse0pZ3SV1YNs.cache +4 -0
  450. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vb/vbgiCIAOOms_TfUWTEZtelKALiRsoWtZxzAAgVnY8d8.cache +1 -0
  451. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w5/w5uXHPYbWYZ3sCz24VHB3CfWsd2OKbj29SUMpY07IgM.cache +1 -0
  452. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wG/wGmCa7XGNEPHQWkdKkVwvGXAZ5VWJ2hfZKMQUUUHumQ.cache +0 -0
  453. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wV/wVDZEsVp21o5r_neWnck2IcnLhwPkOFkR-DtKkGEJFg.cache +0 -0
  454. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wx/wxYaNMuP7hgPVjGHQW2a18xFWktI9LPQ-OYV89uCmWA.cache +0 -0
  455. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x0/x0Hcz4Be6B646zxEAU3YKRfiYsykIfb-PHRjW_QajO4.cache +1 -0
  456. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xF/xFj1mSFnSKGkNLTZXr0iAFDqfZ0whXE5I27DC6fziSQ.cache +0 -0
  457. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xQ/xQru24AZmMgSPky9PbHEJWJy27TQwhkIL8r-PPyejEQ.cache +1 -0
  458. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xX/xXpCfohMCa1IMmNnzIeVpdC4U3WsRgt8-K3Jp-7r6SM.cache +1 -0
  459. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xk/xkz6Vx1gK3wwr3FvY4x3k6_Qin6S816ddjRcqDvRYT4.cache +0 -0
  460. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xr/xrC8YV6w28T_rbMsncpQL_yeIICK2BHX2FjSSwgRMho.cache +1 -0
  461. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xw/xw6uMixs0a1KPgZTvTyh6HS9Z2zjAfNMmiPBYwj7FvM.cache +1 -0
  462. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yF/yF2V6IKiF0gomWo91D1e1OJoG3dIQwF863XIj-sX8gg.cache +0 -0
  463. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yO/yOH_DPSU3ZefOc-VXPD5_xhXwvvP8iuTemKFsOgz3M8.cache +1 -0
  464. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yP/yPjyATOntw2_GuUoW3B_qzeedL7XhQDeuDuHO5LLBrE.cache +0 -0
  465. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yQ/yQ5KDINqpvzdwR9HEXa4d805qbcxAjE8qEEQ59hARWQ.cache +1 -0
  466. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yR/yR0ZcgEyAejkrM5eNbGOZDidap2HJQbj3-yT0HL8HH4.cache +0 -0
  467. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yy/yy2ipVbRiOOd7_7lTFIvGse9qxfhQ3tRFhgjoA1hgVs.cache +0 -0
  468. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z0/z0ZuiY3Alvyn6BOq0-OP-03LNhOB7yFbQwMFd3Z_rhY.cache +1 -0
  469. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zE/zEkq8BXSKwHKK8Bj_Suj-l8oYonEQq8Cng6L1B5nmwM.cache +1 -0
  470. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJ2e0lYWnKU2h-XfQ9aSuhdaPpO4qo3O1e2zk1aQtGY.cache +0 -0
  471. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zN/zNUezHPK5xIZaJSlQHE6nR-2a13kdVjcNGMHcGeIwig.cache +1 -0
  472. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zT/zTASUt3y47QWYNlKzFYycnR8FyupuNqGNBS3qs_Wlss.cache +1 -0
  473. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zX/zXfl7WjRPbTllSwt-J6hPInnnobLDZz2u-OEgqmDwaM.cache +1 -0
  474. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z_/z_Uqgx0qy7PoiYppIYI3abAQUyASSJ332hg06Cy6Gb0.cache +0 -0
  475. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zc/zcdIv32RQey_zAqYsbha6wMCQOWk89d68qVcST5nU6w.cache +1 -0
  476. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ze/zeko1-9zt3D_s5fwQNZ7W4lPmmMe8nWJR2hxp83qrCI.cache +1 -0
  477. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zl/zlRY3diy7KCE4rBUAmdxTkZawqfukrfrfQElWjYtQqk.cache +0 -0
  478. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zl/zlj-FK9QDxF0uO6x4ka6CN3aSaHs5bGTuJm_JMKstaY.cache +1 -0
  479. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zp/zpSERRztqsKIBHLay1Pa74kqqJqZJSA3kTjL1BWH40I.cache +1 -0
  480. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zx/zxDhIDb-lPPulK9xGZ0mW_Yskyocslvalf6NF5Ys7Oo.cache +1 -0
  481. data/spec/models/rating_spec.rb +12 -0
  482. data/spec/rails_helper.rb +72 -0
  483. data/spec/spec_helper.rb +92 -0
  484. data/spec/test_spec.rb +7 -0
  485. metadata +1092 -0
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,268 @@
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
+ # The secret key used by Devise. Devise uses this key to generate
5
+ # random tokens. Changing this key will render invalid all existing
6
+ # confirmation, reset password and unlock tokens in the database.
7
+ # Devise will use the `secret_key_base` as its `secret_key`
8
+ # by default. You can change it below and use your own secret key.
9
+ # config.secret_key = 'ebc036d913ecfa5511307c7b36a11fbe055aa0f00ba6ed535bc34fc4141d30cd9bdc612596e2e62554b120f088d9e2d0105b7997711edceb4852f09a6b1531ea'
10
+
11
+ # ==> Mailer Configuration
12
+ # Configure the e-mail address which will be shown in Devise::Mailer,
13
+ # note that it will be overwritten if you use your own mailer class
14
+ # with default "from" parameter.
15
+ config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com'
16
+
17
+ # Configure the class responsible to send e-mails.
18
+ # config.mailer = 'Devise::Mailer'
19
+
20
+ # Configure the parent class responsible to send e-mails.
21
+ # config.parent_mailer = 'ActionMailer::Base'
22
+
23
+ # ==> ORM configuration
24
+ # Load and configure the ORM. Supports :active_record (default) and
25
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
26
+ # available as additional gems.
27
+ require 'devise/orm/active_record'
28
+
29
+ # ==> Configuration for any authentication mechanism
30
+ # Configure which keys are used when authenticating a user. The default is
31
+ # just :email. You can configure it to use [:username, :subdomain], so for
32
+ # authenticating a user, both parameters are required. Remember that those
33
+ # parameters are used only when authenticating and not when retrieving from
34
+ # session. If you need permissions, you should implement that in a before filter.
35
+ # You can also supply a hash where the value is a boolean determining whether
36
+ # or not authentication should be aborted when the value is not present.
37
+ # config.authentication_keys = [:email]
38
+
39
+ # Configure parameters from the request object used for authentication. Each entry
40
+ # given should be a request method and it will automatically be passed to the
41
+ # find_for_authentication method and considered in your model lookup. For instance,
42
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
43
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
44
+ # config.request_keys = []
45
+
46
+ # Configure which authentication keys should be case-insensitive.
47
+ # These keys will be downcased upon creating or modifying a user and when used
48
+ # to authenticate or find a user. Default is :email.
49
+ config.case_insensitive_keys = [:email]
50
+
51
+ # Configure which authentication keys should have whitespace stripped.
52
+ # These keys will have whitespace before and after removed upon creating or
53
+ # modifying a user and when used to authenticate or find a user. Default is :email.
54
+ config.strip_whitespace_keys = [:email]
55
+
56
+ # Tell if authentication through request.params is enabled. True by default.
57
+ # It can be set to an array that will enable params authentication only for the
58
+ # given strategies, for example, `config.params_authenticatable = [:database]` will
59
+ # enable it only for database (email + password) authentication.
60
+ # config.params_authenticatable = true
61
+
62
+ # Tell if authentication through HTTP Auth is enabled. False by default.
63
+ # It can be set to an array that will enable http authentication only for the
64
+ # given strategies, for example, `config.http_authenticatable = [:database]` will
65
+ # enable it only for database authentication. The supported strategies are:
66
+ # :database = Support basic authentication with authentication key + password
67
+ # config.http_authenticatable = false
68
+
69
+ # If 401 status code should be returned for AJAX requests. True by default.
70
+ # config.http_authenticatable_on_xhr = true
71
+
72
+ # The realm used in Http Basic Authentication. 'Application' by default.
73
+ # config.http_authentication_realm = 'Application'
74
+
75
+ # It will change confirmation, password recovery and other workflows
76
+ # to behave the same regardless if the e-mail provided was right or wrong.
77
+ # Does not affect registerable.
78
+ # config.paranoid = true
79
+
80
+ # By default Devise will store the user in session. You can skip storage for
81
+ # particular strategies by setting this option.
82
+ # Notice that if you are skipping storage for all authentication paths, you
83
+ # may want to disable generating routes to Devise's sessions controller by
84
+ # passing skip: :sessions to `devise_for` in your config/routes.rb
85
+ config.skip_session_storage = [:http_auth]
86
+
87
+ # By default, Devise cleans up the CSRF token on authentication to
88
+ # avoid CSRF token fixation attacks. This means that, when using AJAX
89
+ # requests for sign in and sign up, you need to get a new CSRF token
90
+ # from the server. You can disable this option at your own risk.
91
+ # config.clean_up_csrf_token_on_authentication = true
92
+
93
+ # ==> Configuration for :database_authenticatable
94
+ # For bcrypt, this is the cost for hashing the password and defaults to 11. If
95
+ # using other algorithms, it sets how many times you want the password to be hashed.
96
+ #
97
+ # Limiting the stretches to just one in testing will increase the performance of
98
+ # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
99
+ # a value less than 10 in other environments. Note that, for bcrypt (the default
100
+ # algorithm), the cost increases exponentially with the number of stretches (e.g.
101
+ # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
102
+ config.stretches = Rails.env.test? ? 1 : 11
103
+
104
+ # Set up a pepper to generate the hashed password.
105
+ # config.pepper = 'a38b0973c941ffb522044f56a5d35c4ec00f00cbe484eac14b60ebf8bef7bdb7674a4f5d3dd0771b1d1b20a1eccb94fd4f85ddc0a445bd23eb941fd37b6b5efd'
106
+
107
+ # Send a notification email when the user's password is changed
108
+ # config.send_password_change_notification = false
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 = 6..128
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
+ # ==> Configuration for :lockable
164
+ # Defines which strategy will be used to lock an account.
165
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
166
+ # :none = No lock strategy. You should handle locking by yourself.
167
+ # config.lock_strategy = :failed_attempts
168
+
169
+ # Defines which key will be used when locking and unlocking an account
170
+ # config.unlock_keys = [:email]
171
+
172
+ # Defines which strategy will be used to unlock an account.
173
+ # :email = Sends an unlock link to the user email
174
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
175
+ # :both = Enables both strategies
176
+ # :none = No unlock strategy. You should handle unlocking by yourself.
177
+ # config.unlock_strategy = :both
178
+
179
+ # Number of authentication tries before locking an account if lock_strategy
180
+ # is failed attempts.
181
+ # config.maximum_attempts = 20
182
+
183
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
184
+ # config.unlock_in = 1.hour
185
+
186
+ # Warn on the last attempt before the account is locked.
187
+ # config.last_attempt_warning = true
188
+
189
+ # ==> Configuration for :recoverable
190
+ #
191
+ # Defines which key will be used when recovering the password for an account
192
+ # config.reset_password_keys = [:email]
193
+
194
+ # Time interval you can reset your password with a reset password key.
195
+ # Don't put a too small interval or your users won't have the time to
196
+ # change their passwords.
197
+ config.reset_password_within = 6.hours
198
+
199
+ # When set to false, does not sign a user in automatically after their password is
200
+ # reset. Defaults to true, so a user is signed in automatically after a reset.
201
+ # config.sign_in_after_reset_password = true
202
+
203
+ # ==> Configuration for :encryptable
204
+ # Allow you to use another hashing or encryption algorithm besides bcrypt (default).
205
+ # You can use :sha1, :sha512 or algorithms from others authentication tools as
206
+ # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20
207
+ # for default behavior) and :restful_authentication_sha1 (then you should set
208
+ # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper).
209
+ #
210
+ # Require the `devise-encryptable` gem when using anything other than bcrypt
211
+ # config.encryptor = :sha512
212
+
213
+ # ==> Scopes configuration
214
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
215
+ # "users/sessions/new". It's turned off by default because it's slower if you
216
+ # are using only default views.
217
+ # config.scoped_views = false
218
+
219
+ # Configure the default scope given to Warden. By default it's the first
220
+ # devise role declared in your routes (usually :user).
221
+ # config.default_scope = :user
222
+
223
+ # Set this configuration to false if you want /users/sign_out to sign out
224
+ # only the current scope. By default, Devise signs out all scopes.
225
+ # config.sign_out_all_scopes = true
226
+
227
+ # ==> Navigation configuration
228
+ # Lists the formats that should be treated as navigational. Formats like
229
+ # :html, should redirect to the sign in page when the user does not have
230
+ # access, but formats like :xml or :json, should return 401.
231
+ #
232
+ # If you have any extra navigational formats, like :iphone or :mobile, you
233
+ # should add them to the navigational formats lists.
234
+ #
235
+ # The "*/*" below is required to match Internet Explorer requests.
236
+ # config.navigational_formats = ['*/*', :html]
237
+
238
+ # The default HTTP method used to sign out a resource. Default is :delete.
239
+ config.sign_out_via = :delete
240
+
241
+ # ==> OmniAuth
242
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
243
+ # up on your models and hooks.
244
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
245
+
246
+ # ==> Warden configuration
247
+ # If you want to use other strategies, that are not supported by Devise, or
248
+ # change the failure app, you can configure them inside the config.warden block.
249
+ #
250
+ # config.warden do |manager|
251
+ # manager.intercept_401 = false
252
+ # manager.default_strategies(scope: :user).unshift :some_external_strategy
253
+ # end
254
+
255
+ # ==> Mountable engine configurations
256
+ # When using Devise inside an engine, let's call it `MyEngine`, and this engine
257
+ # is mountable, there are some extra configurations to be taken into account.
258
+ # The following options are available, assuming the engine is mounted as:
259
+ #
260
+ # mount MyEngine, at: '/my_engine'
261
+ #
262
+ # The router that invoked `devise_for`, in the example above, would be:
263
+ # config.router_name = :my_engine
264
+ #
265
+ # When using OmniAuth, Devise cannot automatically set OmniAuth path,
266
+ # so you need to do it manually. For the users scope, it would be:
267
+ # config.omniauth_path_prefix = '/my_engine/users/auth'
268
+ end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,2 @@
1
+ module Ratable
2
+ end
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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] if respond_to?(:wrap_parameters)
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,62 @@
1
+ # Additional translations at https://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ devise:
5
+ confirmations:
6
+ confirmed: "Your email address has been successfully confirmed."
7
+ send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
8
+ send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
9
+ failure:
10
+ already_authenticated: "You are already signed in."
11
+ inactive: "Your account is not activated yet."
12
+ invalid: "Invalid %{authentication_keys} or password."
13
+ locked: "Your account is locked."
14
+ last_attempt: "You have one more attempt before your account is locked."
15
+ not_found_in_database: "Invalid %{authentication_keys} or password."
16
+ timeout: "Your session expired. Please sign in again to continue."
17
+ unauthenticated: "You need to sign in or sign up before continuing."
18
+ unconfirmed: "You have to confirm your email address before continuing."
19
+ mailer:
20
+ confirmation_instructions:
21
+ subject: "Confirmation instructions"
22
+ reset_password_instructions:
23
+ subject: "Reset password instructions"
24
+ unlock_instructions:
25
+ subject: "Unlock instructions"
26
+ password_change:
27
+ subject: "Password Changed"
28
+ omniauth_callbacks:
29
+ failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
30
+ success: "Successfully authenticated from %{kind} account."
31
+ passwords:
32
+ no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
33
+ send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
34
+ send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
35
+ updated: "Your password has been changed successfully. You are now signed in."
36
+ updated_not_active: "Your password has been changed successfully."
37
+ registrations:
38
+ destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
39
+ signed_up: "Welcome! You have signed up successfully."
40
+ signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
41
+ signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
42
+ signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
43
+ update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
44
+ updated: "Your account has been updated successfully."
45
+ sessions:
46
+ signed_in: "Signed in successfully."
47
+ signed_out: "Signed out successfully."
48
+ already_signed_out: "Signed out successfully."
49
+ unlocks:
50
+ send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
51
+ send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
52
+ unlocked: "Your account has been unlocked successfully. Please sign in to continue."
53
+ errors:
54
+ messages:
55
+ already_confirmed: "was already confirmed, please try signing in"
56
+ confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
57
+ expired: "has expired, please request a new one"
58
+ not_found: "not found"
59
+ not_locked: "was not locked"
60
+ not_saved:
61
+ one: "1 error prohibited this %{resource} from being saved:"
62
+ other: "%{count} errors prohibited this %{resource} from being saved:"