rails_auth 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1067) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +39 -0
  3. data/Rakefile +38 -0
  4. data/app/assets/config/rails_auth_manifest.js +2 -0
  5. data/app/assets/javascripts/controllers/rails_auth_admin/users/index.js +18 -0
  6. data/app/assets/javascripts/controllers/rails_auth_my/users/edit.js +20 -0
  7. data/app/assets/javascripts/controllers/rails_auth_my/users/edit.ready.js +4 -0
  8. data/app/assets/javascripts/controllers/rails_auth_web/join/new_mobile.js +4 -0
  9. data/app/assets/stylesheets/controllers/rails_auth_web/login/new.css +4 -0
  10. data/app/assets/stylesheets/controllers/rails_auth_web/password/new.css +4 -0
  11. data/app/controllers/concerns/rails_auth_api.rb +59 -0
  12. data/app/controllers/concerns/rails_auth_controller.rb +46 -0
  13. data/app/controllers/rails_auth_admin/base_controller.rb +5 -0
  14. data/app/controllers/rails_auth_admin/oauth_users_controller.rb +33 -0
  15. data/app/controllers/rails_auth_admin/users_controller.rb +61 -0
  16. data/app/controllers/rails_auth_api/base_controller.rb +11 -0
  17. data/app/controllers/rails_auth_api/join_controller.rb +105 -0
  18. data/app/controllers/rails_auth_api/login_controller.rb +28 -0
  19. data/app/controllers/rails_auth_api/mes_controller.rb +25 -0
  20. data/app/controllers/rails_auth_api/oauth_users_controller.rb +19 -0
  21. data/app/controllers/the_auth_my/base_controller.rb +4 -0
  22. data/app/controllers/the_auth_my/oauth_users_controller.rb +66 -0
  23. data/app/controllers/the_auth_my/users_controller.rb +64 -0
  24. data/app/controllers/the_auth_web/base_controller.rb +13 -0
  25. data/app/controllers/the_auth_web/confirm_controller.rb +21 -0
  26. data/app/controllers/the_auth_web/join_controller.rb +69 -0
  27. data/app/controllers/the_auth_web/login_controller.rb +53 -0
  28. data/app/controllers/the_auth_web/password_controller.rb +41 -0
  29. data/app/mailers/user_mailer.rb +15 -0
  30. data/app/models/rails_auth/concerns/facebook_helper.rb +14 -0
  31. data/app/models/rails_auth/concerns/jwt_token.rb +27 -0
  32. data/app/models/rails_auth/concerns/rails_auth_user.rb +106 -0
  33. data/app/models/rails_auth/concerns/verify_helper.rb +32 -0
  34. data/app/models/rails_auth/oauth_user.rb +27 -0
  35. data/app/models/rails_auth/verify_token.rb +25 -0
  36. data/app/models/rails_auth/verify_tokens/access_token.rb +9 -0
  37. data/app/models/rails_auth/verify_tokens/confirm_token.rb +9 -0
  38. data/app/models/rails_auth/verify_tokens/email_token.rb +22 -0
  39. data/app/models/rails_auth/verify_tokens/mobile_token.rb +29 -0
  40. data/app/models/rails_auth/verify_tokens/reset_token.rb +9 -0
  41. data/app/views/layouts/rails_auth_web/base.html.erb +32 -0
  42. data/app/views/rails_auth_admin/base/_nav_role.html.erb +5 -0
  43. data/app/views/rails_auth_admin/oauth_users/_search_form.html.erb +10 -0
  44. data/app/views/rails_auth_admin/oauth_users/index.html.erb +44 -0
  45. data/app/views/rails_auth_admin/users/_form.html.erb +10 -0
  46. data/app/views/rails_auth_admin/users/_nav_show.html.erb +8 -0
  47. data/app/views/rails_auth_admin/users/_search_form.html.erb +10 -0
  48. data/app/views/rails_auth_admin/users/edit.html.erb +13 -0
  49. data/app/views/rails_auth_admin/users/index.html.erb +68 -0
  50. data/app/views/rails_auth_admin/users/new.html.erb +13 -0
  51. data/app/views/rails_auth_admin/users/show.html.erb +12 -0
  52. data/app/views/rails_auth_my/oauth_users/index.html.erb +32 -0
  53. data/app/views/rails_auth_my/oauth_users/show.html.erb +3 -0
  54. data/app/views/rails_auth_my/users/edit.html.erb +55 -0
  55. data/app/views/rails_auth_my/users/show.html.erb +37 -0
  56. data/app/views/rails_auth_my/users/show.js.erb +2 -0
  57. data/app/views/rails_auth_my/users/update.js.erb +0 -0
  58. data/app/views/rails_auth_web/base/_footer.html.erb +12 -0
  59. data/app/views/rails_auth_web/base/_navbar.html.erb +34 -0
  60. data/app/views/rails_auth_web/confirm/confirm.html.erb +9 -0
  61. data/app/views/rails_auth_web/join/_form.html.erb +7 -0
  62. data/app/views/rails_auth_web/join/_new.html.erb +22 -0
  63. data/app/views/rails_auth_web/join/create.js.erb +0 -0
  64. data/app/views/rails_auth_web/join/new.html.erb +10 -0
  65. data/app/views/rails_auth_web/join/new.js.erb +7 -0
  66. data/app/views/rails_auth_web/join/new_mobile.html.erb +24 -0
  67. data/app/views/rails_auth_web/join/unlock.html.erb +12 -0
  68. data/app/views/rails_auth_web/login/_form.html.erb +16 -0
  69. data/app/views/rails_auth_web/login/_new.html.erb +27 -0
  70. data/app/views/rails_auth_web/login/create.js.erb +17 -0
  71. data/app/views/rails_auth_web/login/new.html+phone.erb +15 -0
  72. data/app/views/rails_auth_web/login/new.html.erb +10 -0
  73. data/app/views/rails_auth_web/login/new.js.erb +16 -0
  74. data/app/views/rails_auth_web/password/create.html.erb +8 -0
  75. data/app/views/rails_auth_web/password/edit.html.erb +11 -0
  76. data/app/views/rails_auth_web/password/edit_error.html.erb +7 -0
  77. data/app/views/rails_auth_web/password/new.html.erb +7 -0
  78. data/app/views/user_mailer/confirmation_instructions.html.erb +5 -0
  79. data/app/views/user_mailer/password_reset.html.erb +11 -0
  80. data/app/views/user_mailer/unlock_instructions.html.erb +7 -0
  81. data/config/locales/en.yml +11 -0
  82. data/config/locales/zh.yml +4 -0
  83. data/config/routes.rb +56 -0
  84. data/db/migrate/20170518023400_the_auth_init.rb +32 -0
  85. data/db/migrate/20170614071849_create_oauth_users.rb +17 -0
  86. data/lib/rails_auth/config.rb +14 -0
  87. data/lib/rails_auth/engine.rb +25 -0
  88. data/lib/rails_auth/version.rb +3 -0
  89. data/lib/rails_auth.rb +3 -0
  90. data/test/controllers/the_auth_my/oauth_users_controller_test.rb +48 -0
  91. data/test/controllers/the_auth_my/users_controller_test.rb +48 -0
  92. data/test/controllers/the_auth_web/join_controller_test.rb +21 -0
  93. data/test/dummy/README.md +9 -0
  94. data/test/dummy/Rakefile +6 -0
  95. data/test/dummy/app/assets/config/manifest.js +3 -0
  96. data/test/dummy/app/assets/javascripts/application.js +2 -0
  97. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  98. data/test/dummy/app/assets/stylesheets/application.css +5 -0
  99. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  100. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  101. data/test/dummy/app/controllers/admin/base_controller.rb +7 -0
  102. data/test/dummy/app/controllers/application_controller.rb +3 -0
  103. data/test/dummy/app/controllers/home_controller.rb +11 -0
  104. data/test/dummy/app/controllers/my/base_controller.rb +7 -0
  105. data/test/dummy/app/helpers/application_helper.rb +2 -0
  106. data/test/dummy/app/jobs/application_job.rb +2 -0
  107. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  108. data/test/dummy/app/models/application_record.rb +3 -0
  109. data/test/dummy/app/models/user.rb +4 -0
  110. data/test/dummy/app/views/layouts/_navbar.html.erb +7 -0
  111. data/test/dummy/app/views/layouts/_right_menu.html.erb +4 -0
  112. data/test/dummy/app/views/layouts/application.html.erb +19 -0
  113. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  114. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  115. data/test/dummy/bin/bundle +3 -0
  116. data/test/dummy/bin/rails +4 -0
  117. data/test/dummy/bin/rake +4 -0
  118. data/test/dummy/bin/setup +34 -0
  119. data/test/dummy/bin/update +29 -0
  120. data/test/dummy/config/application.rb +14 -0
  121. data/test/dummy/config/boot.rb +5 -0
  122. data/test/dummy/config/cable.yml +9 -0
  123. data/test/dummy/config/database.yml +12 -0
  124. data/test/dummy/config/database.yml.mysql +14 -0
  125. data/test/dummy/config/database.yml.sqlite3 +12 -0
  126. data/test/dummy/config/environment.rb +5 -0
  127. data/test/dummy/config/environments/development.rb +54 -0
  128. data/test/dummy/config/environments/production.rb +86 -0
  129. data/test/dummy/config/environments/test.rb +44 -0
  130. data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
  131. data/test/dummy/config/initializers/assets.rb +6 -0
  132. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  133. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  134. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  135. data/test/dummy/config/initializers/inflections.rb +16 -0
  136. data/test/dummy/config/initializers/mime_types.rb +4 -0
  137. data/test/dummy/config/initializers/new_framework_defaults.rb +18 -0
  138. data/test/dummy/config/initializers/session_store.rb +3 -0
  139. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  140. data/test/dummy/config/locales/en.yml +23 -0
  141. data/test/dummy/config/puma.rb +47 -0
  142. data/test/dummy/config/routes.rb +6 -0
  143. data/test/dummy/config/secrets.yml +22 -0
  144. data/test/dummy/config/spring.rb +6 -0
  145. data/test/dummy/config/storage.yml +3 -0
  146. data/test/dummy/config.ru +5 -0
  147. data/test/dummy/db/migrate/20180525090830_create_active_storage_tables.active_storage.rb +26 -0
  148. data/test/dummy/db/migrate/20180916100159_create_users.rb +8 -0
  149. data/test/dummy/db/schema.rb +81 -0
  150. data/test/dummy/db/test.sqlite3 +0 -0
  151. data/test/dummy/log/development.log +2512 -0
  152. data/test/dummy/log/test.log +1574 -0
  153. data/test/dummy/node_modules/jquery/AUTHORS.txt +313 -0
  154. data/test/dummy/node_modules/jquery/LICENSE.txt +36 -0
  155. data/test/dummy/node_modules/jquery/README.md +67 -0
  156. data/test/dummy/node_modules/jquery/bower.json +14 -0
  157. data/test/dummy/node_modules/jquery/dist/core.js +399 -0
  158. data/test/dummy/node_modules/jquery/dist/jquery.js +10364 -0
  159. data/test/dummy/node_modules/jquery/dist/jquery.min.js +2 -0
  160. data/test/dummy/node_modules/jquery/dist/jquery.min.map +1 -0
  161. data/test/dummy/node_modules/jquery/dist/jquery.slim.js +8269 -0
  162. data/test/dummy/node_modules/jquery/dist/jquery.slim.min.js +2 -0
  163. data/test/dummy/node_modules/jquery/dist/jquery.slim.min.map +1 -0
  164. data/test/dummy/node_modules/jquery/external/sizzle/LICENSE.txt +36 -0
  165. data/test/dummy/node_modules/jquery/external/sizzle/dist/sizzle.js +2272 -0
  166. data/test/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  167. data/test/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  168. data/test/dummy/node_modules/jquery/package.json +108 -0
  169. data/test/dummy/node_modules/jquery/src/ajax/jsonp.js +103 -0
  170. data/test/dummy/node_modules/jquery/src/ajax/load.js +77 -0
  171. data/test/dummy/node_modules/jquery/src/ajax/parseXML.js +30 -0
  172. data/test/dummy/node_modules/jquery/src/ajax/script.js +77 -0
  173. data/test/dummy/node_modules/jquery/src/ajax/var/location.js +5 -0
  174. data/test/dummy/node_modules/jquery/src/ajax/var/nonce.js +5 -0
  175. data/test/dummy/node_modules/jquery/src/ajax/var/rquery.js +5 -0
  176. data/test/dummy/node_modules/jquery/src/ajax/xhr.js +170 -0
  177. data/test/dummy/node_modules/jquery/src/ajax.js +856 -0
  178. data/test/dummy/node_modules/jquery/src/attributes/attr.js +141 -0
  179. data/test/dummy/node_modules/jquery/src/attributes/classes.js +186 -0
  180. data/test/dummy/node_modules/jquery/src/attributes/prop.js +143 -0
  181. data/test/dummy/node_modules/jquery/src/attributes/support.js +33 -0
  182. data/test/dummy/node_modules/jquery/src/attributes/val.js +191 -0
  183. data/test/dummy/node_modules/jquery/src/attributes.js +13 -0
  184. data/test/dummy/node_modules/jquery/src/callbacks.js +236 -0
  185. data/test/dummy/node_modules/jquery/src/core/DOMEval.js +30 -0
  186. data/test/dummy/node_modules/jquery/src/core/access.js +72 -0
  187. data/test/dummy/node_modules/jquery/src/core/camelCase.js +23 -0
  188. data/test/dummy/node_modules/jquery/src/core/init.js +129 -0
  189. data/test/dummy/node_modules/jquery/src/core/nodeName.js +13 -0
  190. data/test/dummy/node_modules/jquery/src/core/parseHTML.js +65 -0
  191. data/test/dummy/node_modules/jquery/src/core/ready-no-deferred.js +97 -0
  192. data/test/dummy/node_modules/jquery/src/core/ready.js +86 -0
  193. data/test/dummy/node_modules/jquery/src/core/readyException.js +13 -0
  194. data/test/dummy/node_modules/jquery/src/core/stripAndCollapse.js +14 -0
  195. data/test/dummy/node_modules/jquery/src/core/support.js +20 -0
  196. data/test/dummy/node_modules/jquery/src/core/toType.js +20 -0
  197. data/test/dummy/node_modules/jquery/src/core/var/rsingleTag.js +6 -0
  198. data/test/dummy/node_modules/jquery/src/core.js +399 -0
  199. data/test/dummy/node_modules/jquery/src/css/addGetHookIf.js +26 -0
  200. data/test/dummy/node_modules/jquery/src/css/adjustCSS.js +73 -0
  201. data/test/dummy/node_modules/jquery/src/css/curCSS.js +65 -0
  202. data/test/dummy/node_modules/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  203. data/test/dummy/node_modules/jquery/src/css/showHide.js +105 -0
  204. data/test/dummy/node_modules/jquery/src/css/support.js +102 -0
  205. data/test/dummy/node_modules/jquery/src/css/var/cssExpand.js +5 -0
  206. data/test/dummy/node_modules/jquery/src/css/var/getStyles.js +17 -0
  207. data/test/dummy/node_modules/jquery/src/css/var/isHiddenWithinTree.js +34 -0
  208. data/test/dummy/node_modules/jquery/src/css/var/rboxStyle.js +7 -0
  209. data/test/dummy/node_modules/jquery/src/css/var/rnumnonpx.js +7 -0
  210. data/test/dummy/node_modules/jquery/src/css/var/swap.js +26 -0
  211. data/test/dummy/node_modules/jquery/src/css.js +481 -0
  212. data/test/dummy/node_modules/jquery/src/data/Data.js +162 -0
  213. data/test/dummy/node_modules/jquery/src/data/var/acceptData.js +19 -0
  214. data/test/dummy/node_modules/jquery/src/data/var/dataPriv.js +7 -0
  215. data/test/dummy/node_modules/jquery/src/data/var/dataUser.js +7 -0
  216. data/test/dummy/node_modules/jquery/src/data.js +180 -0
  217. data/test/dummy/node_modules/jquery/src/deferred/exceptionHook.js +21 -0
  218. data/test/dummy/node_modules/jquery/src/deferred.js +399 -0
  219. data/test/dummy/node_modules/jquery/src/deprecated.js +98 -0
  220. data/test/dummy/node_modules/jquery/src/dimensions.js +57 -0
  221. data/test/dummy/node_modules/jquery/src/effects/Tween.js +123 -0
  222. data/test/dummy/node_modules/jquery/src/effects/animatedSelector.js +15 -0
  223. data/test/dummy/node_modules/jquery/src/effects.js +702 -0
  224. data/test/dummy/node_modules/jquery/src/event/ajax.js +22 -0
  225. data/test/dummy/node_modules/jquery/src/event/alias.js +29 -0
  226. data/test/dummy/node_modules/jquery/src/event/focusin.js +55 -0
  227. data/test/dummy/node_modules/jquery/src/event/support.js +11 -0
  228. data/test/dummy/node_modules/jquery/src/event/trigger.js +199 -0
  229. data/test/dummy/node_modules/jquery/src/event.js +748 -0
  230. data/test/dummy/node_modules/jquery/src/exports/amd.js +26 -0
  231. data/test/dummy/node_modules/jquery/src/exports/global.js +34 -0
  232. data/test/dummy/node_modules/jquery/src/jquery.js +40 -0
  233. data/test/dummy/node_modules/jquery/src/manipulation/_evalUrl.js +23 -0
  234. data/test/dummy/node_modules/jquery/src/manipulation/buildFragment.js +105 -0
  235. data/test/dummy/node_modules/jquery/src/manipulation/getAll.js +32 -0
  236. data/test/dummy/node_modules/jquery/src/manipulation/setGlobalEval.js +22 -0
  237. data/test/dummy/node_modules/jquery/src/manipulation/support.js +35 -0
  238. data/test/dummy/node_modules/jquery/src/manipulation/var/rcheckableType.js +5 -0
  239. data/test/dummy/node_modules/jquery/src/manipulation/var/rscriptType.js +5 -0
  240. data/test/dummy/node_modules/jquery/src/manipulation/var/rtagName.js +5 -0
  241. data/test/dummy/node_modules/jquery/src/manipulation/wrapMap.js +29 -0
  242. data/test/dummy/node_modules/jquery/src/manipulation.js +486 -0
  243. data/test/dummy/node_modules/jquery/src/offset.js +233 -0
  244. data/test/dummy/node_modules/jquery/src/queue/delay.js +24 -0
  245. data/test/dummy/node_modules/jquery/src/queue.js +145 -0
  246. data/test/dummy/node_modules/jquery/src/selector-native.js +237 -0
  247. data/test/dummy/node_modules/jquery/src/selector-sizzle.js +19 -0
  248. data/test/dummy/node_modules/jquery/src/selector.js +3 -0
  249. data/test/dummy/node_modules/jquery/src/serialize.js +132 -0
  250. data/test/dummy/node_modules/jquery/src/traversing/findFilter.js +97 -0
  251. data/test/dummy/node_modules/jquery/src/traversing/var/dir.js +22 -0
  252. data/test/dummy/node_modules/jquery/src/traversing/var/rneedsContext.js +8 -0
  253. data/test/dummy/node_modules/jquery/src/traversing/var/siblings.js +17 -0
  254. data/test/dummy/node_modules/jquery/src/traversing.js +191 -0
  255. data/test/dummy/node_modules/jquery/src/var/ObjectFunctionString.js +7 -0
  256. data/test/dummy/node_modules/jquery/src/var/arr.js +5 -0
  257. data/test/dummy/node_modules/jquery/src/var/class2type.js +6 -0
  258. data/test/dummy/node_modules/jquery/src/var/concat.js +7 -0
  259. data/test/dummy/node_modules/jquery/src/var/document.js +5 -0
  260. data/test/dummy/node_modules/jquery/src/var/documentElement.js +7 -0
  261. data/test/dummy/node_modules/jquery/src/var/fnToString.js +7 -0
  262. data/test/dummy/node_modules/jquery/src/var/getProto.js +5 -0
  263. data/test/dummy/node_modules/jquery/src/var/hasOwn.js +7 -0
  264. data/test/dummy/node_modules/jquery/src/var/indexOf.js +7 -0
  265. data/test/dummy/node_modules/jquery/src/var/isFunction.js +13 -0
  266. data/test/dummy/node_modules/jquery/src/var/isWindow.js +8 -0
  267. data/test/dummy/node_modules/jquery/src/var/pnum.js +5 -0
  268. data/test/dummy/node_modules/jquery/src/var/push.js +7 -0
  269. data/test/dummy/node_modules/jquery/src/var/rcssNum.js +9 -0
  270. data/test/dummy/node_modules/jquery/src/var/rnothtmlwhite.js +8 -0
  271. data/test/dummy/node_modules/jquery/src/var/slice.js +7 -0
  272. data/test/dummy/node_modules/jquery/src/var/support.js +6 -0
  273. data/test/dummy/node_modules/jquery/src/var/toString.js +7 -0
  274. data/test/dummy/node_modules/jquery/src/wrap.js +78 -0
  275. data/test/dummy/node_modules/turbolinks/CHANGELOG.md +3 -0
  276. data/test/dummy/node_modules/turbolinks/LICENSE +20 -0
  277. data/test/dummy/node_modules/turbolinks/README.md +558 -0
  278. data/test/dummy/node_modules/turbolinks/dist/turbolinks.js +6 -0
  279. data/test/dummy/node_modules/turbolinks/package.json +28 -0
  280. data/test/dummy/node_modules/turbolinks/src/turbolinks/BANNER.js.erb +4 -0
  281. data/test/dummy/node_modules/turbolinks/src/turbolinks/VERSION +1 -0
  282. data/test/dummy/node_modules/turbolinks/src/turbolinks/browser_adapter.coffee +60 -0
  283. data/test/dummy/node_modules/turbolinks/src/turbolinks/compatibility.coffee +30 -0
  284. data/test/dummy/node_modules/turbolinks/src/turbolinks/controller.coffee +244 -0
  285. data/test/dummy/node_modules/turbolinks/src/turbolinks/error_renderer.coffee +27 -0
  286. data/test/dummy/node_modules/turbolinks/src/turbolinks/head_details.coffee +68 -0
  287. data/test/dummy/node_modules/turbolinks/src/turbolinks/helpers.coffee +74 -0
  288. data/test/dummy/node_modules/turbolinks/src/turbolinks/history.coffee +48 -0
  289. data/test/dummy/node_modules/turbolinks/src/turbolinks/http_request.coffee +88 -0
  290. data/test/dummy/node_modules/turbolinks/src/turbolinks/index.coffee +22 -0
  291. data/test/dummy/node_modules/turbolinks/src/turbolinks/location.coffee +70 -0
  292. data/test/dummy/node_modules/turbolinks/src/turbolinks/progress_bar.coffee +83 -0
  293. data/test/dummy/node_modules/turbolinks/src/turbolinks/renderer.coffee +28 -0
  294. data/test/dummy/node_modules/turbolinks/src/turbolinks/script_warning.coffee +16 -0
  295. data/test/dummy/node_modules/turbolinks/src/turbolinks/scroll_manager.coffee +28 -0
  296. data/test/dummy/node_modules/turbolinks/src/turbolinks/snapshot.coffee +65 -0
  297. data/test/dummy/node_modules/turbolinks/src/turbolinks/snapshot_cache.coffee +43 -0
  298. data/test/dummy/node_modules/turbolinks/src/turbolinks/snapshot_renderer.coffee +104 -0
  299. data/test/dummy/node_modules/turbolinks/src/turbolinks/start.coffee +18 -0
  300. data/test/dummy/node_modules/turbolinks/src/turbolinks/view.coffee +37 -0
  301. data/test/dummy/node_modules/turbolinks/src/turbolinks/visit.coffee +162 -0
  302. data/test/dummy/node_modules/yougexiangfa_ui/404.html +1 -0
  303. data/test/dummy/node_modules/yougexiangfa_ui/CNAME +1 -0
  304. data/test/dummy/node_modules/yougexiangfa_ui/Gemfile +7 -0
  305. data/test/dummy/node_modules/yougexiangfa_ui/Gemfile.lock +79 -0
  306. data/test/dummy/node_modules/yougexiangfa_ui/LICENSE +674 -0
  307. data/test/dummy/node_modules/yougexiangfa_ui/README.md +29 -0
  308. data/test/dummy/node_modules/yougexiangfa_ui/_config.yml +33 -0
  309. data/test/dummy/node_modules/yougexiangfa_ui/_includes/categorie_list.html +11 -0
  310. data/test/dummy/node_modules/yougexiangfa_ui/_includes/categories_list.html +18 -0
  311. data/test/dummy/node_modules/yougexiangfa_ui/_includes/footer.html +8 -0
  312. data/test/dummy/node_modules/yougexiangfa_ui/_includes/nav.html +16 -0
  313. data/test/dummy/node_modules/yougexiangfa_ui/_includes/pages_list.html +39 -0
  314. data/test/dummy/node_modules/yougexiangfa_ui/_includes/side_bar.html +10 -0
  315. data/test/dummy/node_modules/yougexiangfa_ui/_includes/sidenav.html +17 -0
  316. data/test/dummy/node_modules/yougexiangfa_ui/_includes/sidenav_collection.html +17 -0
  317. data/test/dummy/node_modules/yougexiangfa_ui/_includes/sidenav_example.html +14 -0
  318. data/test/dummy/node_modules/yougexiangfa_ui/_includes/sidenav_js.html +13 -0
  319. data/test/dummy/node_modules/yougexiangfa_ui/_includes/tags_list.html +26 -0
  320. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/about.html +28 -0
  321. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/blog.html +33 -0
  322. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/category.html +10 -0
  323. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/collection.html +17 -0
  324. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/default.html +21 -0
  325. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/example.html +18 -0
  326. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/module.html +17 -0
  327. data/test/dummy/node_modules/yougexiangfa_ui/_layouts/post.html +21 -0
  328. data/test/dummy/node_modules/yougexiangfa_ui/_plugins/debug.rb +38 -0
  329. data/test/dummy/node_modules/yougexiangfa_ui/_plugins/lessjs.rb +30 -0
  330. data/test/dummy/node_modules/yougexiangfa_ui/_plugins/url.rb +11 -0
  331. data/test/dummy/node_modules/yougexiangfa_ui/_posts/2013-05-28-3-vacuous-topics.md +72 -0
  332. data/test/dummy/node_modules/yougexiangfa_ui/_posts/git/2014-09-14-git-skill-ignore.md +92 -0
  333. data/test/dummy/node_modules/yougexiangfa_ui/_posts/git/2014-12-21-remove-git-history.md +53 -0
  334. data/test/dummy/node_modules/yougexiangfa_ui/_posts/git/2014-12-7-git-sheet.md +45 -0
  335. data/test/dummy/node_modules/yougexiangfa_ui/_posts/git/ssh-agent-config.md +49 -0
  336. data/test/dummy/node_modules/yougexiangfa_ui/_posts/linux/2017-05-17-nginx.md +36 -0
  337. data/test/dummy/node_modules/yougexiangfa_ui/_posts/linux/2018-01-23-nginx/351/205/215/347/275/256/347/244/272/344/276/213.md +57 -0
  338. data/test/dummy/node_modules/yougexiangfa_ui/_posts/linux/2018-03-24-linux/345/270/270/347/224/250/345/221/275/344/273/244.md +36 -0
  339. data/test/dummy/node_modules/yougexiangfa_ui/_posts/one-work//347/220/206/345/277/265.md +18 -0
  340. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-08-20-rack-based-app-boot.md +36 -0
  341. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-08-21-ruby/347/216/257/345/242/203.md +68 -0
  342. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-08-22-how-to-write-rakefile.md +56 -0
  343. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-09-17-migrate-from-mongodb-to-mysql.md +47 -0
  344. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-09-27-activesupport-message-verifier.md +60 -0
  345. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-10-12-ruby-serialize.md +69 -0
  346. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-10-19-rails-middleware.md +60 -0
  347. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-10-26-research-ruby.md +40 -0
  348. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-11-16-ruby-code-and-decode.md +37 -0
  349. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-11-24-mysql-sheet.md +38 -0
  350. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-11-25-ruby-require.md +127 -0
  351. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-12-14-ruby-observer-pattern.md +80 -0
  352. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-12-28-rescue-exception.md +44 -0
  353. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2014-12-31-linux-ready.md +11 -0
  354. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-01-07-socket-basic.md +110 -0
  355. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-01-25-rails-request.md +105 -0
  356. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-02-01-activesupport-notifications.md +46 -0
  357. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-02-04-activesupport-notifications-2.md +103 -0
  358. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-02-04-activesupport-notifications-3.md +48 -0
  359. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-03-01-object-space.md +66 -0
  360. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-03-08-ruby-module-position.md +54 -0
  361. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-03-15-web-and-sales.md +46 -0
  362. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-03-22-return-break-next.md +104 -0
  363. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-03-27-trace-point.md +58 -0
  364. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2015-04-12-file-dir-pathname.md +42 -0
  365. data/test/dummy/node_modules/yougexiangfa_ui/_posts/ruby/2018-05-05-eql.md +36 -0
  366. data/test/dummy/node_modules/yougexiangfa_ui/_posts//344/272/247/345/223/201/2014-08-21-how-to-classify-better.md +33 -0
  367. data/test/dummy/node_modules/yougexiangfa_ui/_posts//344/272/247/345/223/201/2015-07-17-programer-think-with-product.md +48 -0
  368. data/test/dummy/node_modules/yougexiangfa_ui/_posts//345/205/263/344/272/216/346/210/221/344/273/254/2017-05-17-group-wenhua.md +19 -0
  369. data/test/dummy/node_modules/yougexiangfa_ui/_posts//345/216/237/345/210/231.md +11 -0
  370. data/test/dummy/node_modules/yougexiangfa_ui/_posts//345/267/245/345/205/267/2016-4-11-ipsec.md +79 -0
  371. data/test/dummy/node_modules/yougexiangfa_ui/_posts//346/212/200/346/234/257/351/203/250/351/227/250/347/256/241/347/220/206/345/217/212/346/262/237/351/200/232.md +41 -0
  372. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/237/346/264/273/2013-05-28-vacuous-topics.md +72 -0
  373. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/237/346/264/273/2015-04-04-what-is-pleaure.md +9 -0
  374. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-06-10-persuade.md +32 -0
  375. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-06-11-a-better-web1.md +35 -0
  376. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-06-12-a-better-web.md +31 -0
  377. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-06-6-the-coming-e-business.md +70 -0
  378. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-06-8-howto-keep-users.md +21 -0
  379. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2013-06-07-14-why-do-b2c-self.md +36 -0
  380. data/test/dummy/node_modules/yougexiangfa_ui/_posts//347/224/265/345/255/220/345/225/206/345/212/241/2017-05-17-why-build-website.md +74 -0
  381. data/test/dummy/node_modules/yougexiangfa_ui/about.html +15 -0
  382. data/test/dummy/node_modules/yougexiangfa_ui/assets/semantic.less +53 -0
  383. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/breadcrumb.overrides +3 -0
  384. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/breadcrumb.variables +3 -0
  385. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/form.overrides +37 -0
  386. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/form.variables +1 -0
  387. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/grid.overrides +3 -0
  388. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/grid.variables +3 -0
  389. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/menu.overrides +23 -0
  390. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/menu.variables +1 -0
  391. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/message.overrides +3 -0
  392. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/message.variables +3 -0
  393. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/table.overrides +12 -0
  394. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/collections/table.variables +3 -0
  395. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/button.overrides +3 -0
  396. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/button.variables +1 -0
  397. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/container.overrides +3 -0
  398. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/container.variables +3 -0
  399. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/divider.overrides +3 -0
  400. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/divider.variables +3 -0
  401. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/flag.overrides +3 -0
  402. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/flag.variables +3 -0
  403. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/header.overrides +3 -0
  404. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/header.variables +3 -0
  405. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/icon.overrides +3 -0
  406. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/icon.variables +3 -0
  407. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/image.overrides +3 -0
  408. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/image.variables +3 -0
  409. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/input.overrides +3 -0
  410. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/input.variables +3 -0
  411. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/label.overrides +3 -0
  412. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/label.variables +3 -0
  413. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/list.overrides +3 -0
  414. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/list.variables +3 -0
  415. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/loader.overrides +3 -0
  416. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/loader.variables +3 -0
  417. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/rail.overrides +3 -0
  418. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/rail.variables +3 -0
  419. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/reveal.overrides +3 -0
  420. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/reveal.variables +3 -0
  421. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/segment.overrides +7 -0
  422. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/segment.variables +3 -0
  423. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/step.overrides +9 -0
  424. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/elements/step.variables +3 -0
  425. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/globals/reset.overrides +33 -0
  426. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/globals/reset.variables +3 -0
  427. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/globals/site.overrides +88 -0
  428. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/globals/site.variables +4 -0
  429. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/accordion.overrides +3 -0
  430. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/accordion.variables +3 -0
  431. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/chatroom.overrides +3 -0
  432. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/chatroom.variables +3 -0
  433. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/checkbox.overrides +3 -0
  434. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/checkbox.variables +3 -0
  435. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/dimmer.overrides +3 -0
  436. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/dimmer.variables +3 -0
  437. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/dropdown.overrides +3 -0
  438. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/dropdown.variables +0 -0
  439. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/embed.overrides +3 -0
  440. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/embed.variables +0 -0
  441. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/modal.overrides +3 -0
  442. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/modal.variables +3 -0
  443. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/nag.overrides +3 -0
  444. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/nag.variables +3 -0
  445. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/popup.overrides +3 -0
  446. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/popup.variables +3 -0
  447. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/progress.overrides +3 -0
  448. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/progress.variables +3 -0
  449. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/rating.overrides +3 -0
  450. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/rating.variables +3 -0
  451. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/search.overrides +3 -0
  452. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/search.variables +3 -0
  453. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/shape.overrides +3 -0
  454. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/shape.variables +3 -0
  455. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/sidebar.overrides +3 -0
  456. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/sidebar.variables +3 -0
  457. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/sticky.overrides +3 -0
  458. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/sticky.variables +3 -0
  459. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/tab.overrides +3 -0
  460. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/tab.variables +3 -0
  461. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/transition.overrides +3 -0
  462. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/modules/transition.variables +3 -0
  463. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/ad.overrides +3 -0
  464. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/ad.variables +3 -0
  465. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/card.overrides +3 -0
  466. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/card.variables +3 -0
  467. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/comment.overrides +3 -0
  468. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/comment.variables +3 -0
  469. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/feed.overrides +3 -0
  470. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/feed.variables +3 -0
  471. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/item.overrides +44 -0
  472. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/item.variables +2 -0
  473. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/statistic.overrides +3 -0
  474. data/test/dummy/node_modules/yougexiangfa_ui/assets/site/views/statistic.variables +3 -0
  475. data/test/dummy/node_modules/yougexiangfa_ui/assets/theme.config +62 -0
  476. data/test/dummy/node_modules/yougexiangfa_ui/assets/theme.less +27 -0
  477. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/brand-icons.eot +0 -0
  478. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/brand-icons.svg +1008 -0
  479. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/brand-icons.ttf +0 -0
  480. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/brand-icons.woff +0 -0
  481. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/brand-icons.woff2 +0 -0
  482. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.eot +0 -0
  483. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.otf +0 -0
  484. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.svg +1518 -0
  485. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.ttf +0 -0
  486. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.woff +0 -0
  487. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/icons.woff2 +0 -0
  488. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/outline-icons.eot +0 -0
  489. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/outline-icons.svg +366 -0
  490. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/outline-icons.ttf +0 -0
  491. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/outline-icons.woff +0 -0
  492. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  493. data/test/dummy/node_modules/yougexiangfa_ui/assets/themes/default/assets/images/flags.png +0 -0
  494. data/test/dummy/node_modules/yougexiangfa_ui/category.html +4 -0
  495. data/test/dummy/node_modules/yougexiangfa_ui/dist/favicon.ico +0 -0
  496. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/avatar/famale.jpg +0 -0
  497. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/avatar/male.jpg +0 -0
  498. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/avatar/nan.jpg +0 -0
  499. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/avatar/tom.jpg +0 -0
  500. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/centered-paragraph.png +0 -0
  501. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/image-square.png +0 -0
  502. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/image-text.png +0 -0
  503. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/image.png +0 -0
  504. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/media-paragraph-alt.png +0 -0
  505. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/media-paragraph.png +0 -0
  506. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/paragraph.png +0 -0
  507. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/short-paragraph.png +0 -0
  508. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/square-image.png +0 -0
  509. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/text-image.png +0 -0
  510. data/test/dummy/node_modules/yougexiangfa_ui/dist/images/wireframe/white-image.png +0 -0
  511. data/test/dummy/node_modules/yougexiangfa_ui/dist/javascripts/footer.js +40 -0
  512. data/test/dummy/node_modules/yougexiangfa_ui/dist/javascripts/jquery.min.js +4 -0
  513. data/test/dummy/node_modules/yougexiangfa_ui/dist/javascripts/semantic.js +11 -0
  514. data/test/dummy/node_modules/yougexiangfa_ui/dist/javascripts/turbolinks.js +6 -0
  515. data/test/dummy/node_modules/yougexiangfa_ui/dist/stylesheets/semantic.css +21147 -0
  516. data/test/dummy/node_modules/yougexiangfa_ui/dist/stylesheets/syntax.css +60 -0
  517. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/breadcrumb.html +78 -0
  518. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/card.html +249 -0
  519. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/form.html +264 -0
  520. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/grid.html +55 -0
  521. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/item.html +113 -0
  522. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/menu.html +117 -0
  523. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/message.html +120 -0
  524. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections/table.html +426 -0
  525. data/test/dummy/node_modules/yougexiangfa_ui/examples/collections.html +4 -0
  526. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/button.html +163 -0
  527. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/divider.html +88 -0
  528. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/header.html +38 -0
  529. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/image.html +40 -0
  530. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/input.html +101 -0
  531. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/label.html +286 -0
  532. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/loader.html +18 -0
  533. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/segment.html +169 -0
  534. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/site.html +40 -0
  535. data/test/dummy/node_modules/yougexiangfa_ui/examples/elements/step.html +201 -0
  536. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/admin.html +445 -0
  537. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/am.html +321 -0
  538. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/archives.html +687 -0
  539. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/attached.html +348 -0
  540. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/bootstrap.html +428 -0
  541. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/clientFiles.html +650 -0
  542. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/collectionManagement.html +220 -0
  543. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/customerDistribution.html +190 -0
  544. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/enquiry.html +176 -0
  545. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/fixed.html +92 -0
  546. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/grid.html +317 -0
  547. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/homepage.html +147 -0
  548. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/index.html +4 -0
  549. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/invoice-print.html +108 -0
  550. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/leads.html +403 -0
  551. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/login.html +39 -0
  552. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/myTask.html +160 -0
  553. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/order.html +210 -0
  554. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/orderDetails.html +241 -0
  555. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/poManagement.html +168 -0
  556. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/quotation.html +330 -0
  557. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/responsive.html +674 -0
  558. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/sticky.html +115 -0
  559. data/test/dummy/node_modules/yougexiangfa_ui/examples/examples/verification.html +228 -0
  560. data/test/dummy/node_modules/yougexiangfa_ui/examples/index.md +13 -0
  561. data/test/dummy/node_modules/yougexiangfa_ui/examples/modules/accordion.html +116 -0
  562. data/test/dummy/node_modules/yougexiangfa_ui/examples/modules/modal.html +89 -0
  563. data/test/dummy/node_modules/yougexiangfa_ui/examples/modules/popup.html +48 -0
  564. data/test/dummy/node_modules/yougexiangfa_ui/examples/modules/search.html +33 -0
  565. data/test/dummy/node_modules/yougexiangfa_ui/examples/modules.html +4 -0
  566. data/test/dummy/node_modules/yougexiangfa_ui/index.html +20 -0
  567. data/test/dummy/node_modules/yougexiangfa_ui/package.json +26 -0
  568. data/test/dummy/node_modules/yougexiangfa_ui/postcss.config.js +42 -0
  569. data/test/dummy/node_modules/yougexiangfa_ui/postcss.json +18 -0
  570. data/test/dummy/node_modules/yougexiangfa_ui/yarn.lock +3605 -0
  571. data/test/dummy/package.json +7 -0
  572. data/test/dummy/public/404.html +67 -0
  573. data/test/dummy/public/422.html +67 -0
  574. data/test/dummy/public/500.html +66 -0
  575. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  576. data/test/dummy/public/apple-touch-icon.png +0 -0
  577. data/test/dummy/public/favicon.ico +0 -0
  578. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-M/-MkEXK0qHwpu1hAhaFD1TPJsRSrZGlbrXZ8Jf2xDhZg.cache +1 -0
  579. data/test/dummy/tmp/cache/assets/sprockets/v3.0/06/067Joj_N0JJvxTXsmHbENplZY5Pl94SYRUamc0cUxfc.cache +1 -0
  580. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0q/0qC4YsbJvF6X2X_XrpAP-ItFgfq8t8Mebh_bkKVYplo.cache +1 -0
  581. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0s/0sh1kxIWXp8tHKrhjON4zAsdienBBmvcL7A4Te6k83w.cache +0 -0
  582. data/test/dummy/tmp/cache/assets/sprockets/v3.0/10/10pE1b83xlNyVJ8lwtbU6qNOd1ooWfnkMXa-2QZKjsE.cache +1 -0
  583. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1L/1L0EvxEF85lQVCRcfxJaogkVXXdc9jRQ9b2CSmIk3QA.cache +1 -0
  584. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1M/1M1-Koy2UtUc6vmO2zH0yQoPamVO_yTDdUYxHAjE-Kw.cache +3 -0
  585. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1b/1bBQw6uREDRzPWfFwx5ztKhd2sWeOx2a_JBqAyUHoU4.cache +3 -0
  586. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1r/1rAmdS0RwJ7Y8fvSMuFmGaP4NEyyv3YSTBeXRl5h5qQ.cache +2 -0
  587. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1r/1ruYmBsnOcoQfLK2ZJ374pOpHWTAwWCculvLMqyEP_k.cache +0 -0
  588. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1t/1tZENCdbD18Absj5VJT3jnNKckUM-YbinCHsfsXNTUQ.cache +0 -0
  589. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2O/2O_t58eG-Ff5oWLoL_5Ndn9jw2QscQKK4pKmgSZWbtw.cache +0 -0
  590. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3m/3mV4EKCOSssf7xk_fU0wELZBwd0woDATazbRzmhMjdQ.cache +0 -0
  591. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3p/3peAGjQgdpgKKMfzWSxIr-pIIs_b_xMmv9wy7kGSIIM.cache +1 -0
  592. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3t/3tYk_T8haIzrDjJXh81kY4ybamHx6XJlQU2puIgwqnQ.cache +0 -0
  593. data/test/dummy/tmp/cache/assets/sprockets/v3.0/46/46UkV-60OA-H_1AKnSISXMgBUW3-dR-W1bft6FtbIN8.cache +0 -0
  594. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4Z/4ZIgv7vDbVHIIgrzxYL2poHHQB64Mr7G49xG6HBNua8.cache +1 -0
  595. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4m/4mRmCUjkMrERSGbDr097x9JNGK6i7uw8rqsoUq8SA78.cache +0 -0
  596. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4w/4wFWSVKelaxWSHtZ5J3RxAwk6hv8XEhZ3lXsti9laFc.cache +0 -0
  597. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5O/5O2twjpLzmTXnnycA-OkvFAIPe-LnCqmMufzuKi_uCU.cache +3 -0
  598. data/test/dummy/tmp/cache/assets/sprockets/v3.0/65/65tMd-uwkfzBh9h1fX87ck145YCkeDb6IlK_2FK_NJQ.cache +2 -0
  599. data/test/dummy/tmp/cache/assets/sprockets/v3.0/66/66ob78vB1kvmBnpsCTA3TCqpR4gJOgMWxO5-LKJcCIg.cache +1 -0
  600. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6P/6PNtC7LiuNb8zChuSCbXt8hIFXbLy3rzhnWF3kXUs78.cache +1 -0
  601. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6b/6bll8f2cMtMFF70TozSoCW5fgCSr6FFefsg_6Tte94o.cache +0 -0
  602. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6y/6yvoSXerqKRjKi_FI7GO_8tREv5SOVYu37mVS_T7xiQ.cache +1 -0
  603. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7b/7b6uxXhXhqw0gC9uuIIO8KYexdZ5oG6q-zVuFH1Iq7w.cache +0 -0
  604. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7f/7f6yYPXhb0iZicPQ863koC6UsxpkAus_Nfgy1aunDkk.cache +4 -0
  605. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7h/7h7oPxo15-xFCTKW6UUIy-034OXkCrniKNDRu-MeoDI.cache +0 -0
  606. data/test/dummy/tmp/cache/assets/sprockets/v3.0/85/85p0pjnHCIFmiB_yCgyiELiuj3AFIrQDjJrtJYeh64I.cache +1 -0
  607. data/test/dummy/tmp/cache/assets/sprockets/v3.0/87/87vQIpovqz4PhewWJvwSqsC1xV8RmtL6-eykbMOyUjE.cache +0 -0
  608. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8H/8HD51CuRLpqXLgq4F0MMpYBMfRrIrL-LE96eDDqMsWw.cache +1 -0
  609. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8k/8khqGAqyDaP4POrc7VmcKrc4uRzuIqKpnsyLP7lVHEk.cache +0 -0
  610. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8p/8pL09DfkGBglTpmm1vFAYm9ketP4gkmYl92zFrI9rw0.cache +0 -0
  611. data/test/dummy/tmp/cache/assets/sprockets/v3.0/94/94Y7SGknBIM4nTlVPrz_dPJmfqC1MPLJhBLrSDlOlHc.cache +0 -0
  612. data/test/dummy/tmp/cache/assets/sprockets/v3.0/99/99_kKH2j9N0WXjLl08Pb14qvelAYeKQF36X3ZwFOLIc.cache +2 -0
  613. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9Z/9ZuY06Jg-JPXrBDARk6U8SNFcH8lWh7l_dQuqDIQyok.cache +1 -0
  614. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9b/9b-UtUPzC6Vd99L-mVFGSYPL6Vbcp75zVIktSoxDqxs.cache +0 -0
  615. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9l/9ljCgq4RN7_r_qyROJAeZur971xFTWu3RKeylKpNBA0.cache +1 -0
  616. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9u/9uoXc_A1D9KX284lQ6RUjIrGrgQDzaGWdnCNvWybGQg.cache +1 -0
  617. data/test/dummy/tmp/cache/assets/sprockets/v3.0/A6/A6Kj2CcF5QEDIq0pw2Gzz3GTAsEwrFrm-ShYX1k6ljk.cache +1 -0
  618. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AH/AHDoQuKdfS4eJi0TeJyte_kdZ9q2LGpD73j3mXlrWJc.cache +1 -0
  619. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AV/AVRzuC3oKwV5S2p0KecGs-VlZlVyjifP2UVzfi3Yl5o.cache +1 -0
  620. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B8/B89c51UbCE49-vu62dirRUKsPy4ufy6nPnp1dc2TUiM.cache +0 -0
  621. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BI/BIw_9hg6oq6Xji_PyvJ_6oqqGpVQ9yMdf5M3Q9c5-LY.cache +1 -0
  622. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bo/Bog5NkVzBTCYEqzG4Q8Ube-twNtemBSEZ_3_lPbNrnk.cache +1 -0
  623. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bz/BzTn6SQBGSpPItsTi-UV-bZPGChETJpQDM94NOuwH4E.cache +0 -0
  624. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bz/BztZMhOx_59J4miS3L9-k3LrUntg8NnjuwSB5X7nKRs.cache +1 -0
  625. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CQ/CQSWGMWEMAxvbagcOPIIhDAAGMiGfy1Kn3IMVOBkOsA.cache +0 -0
  626. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ca/CAgKkgED0Ke7iiTUUgscUqdRfbXMLHurOMwn1o85eN0.cache +0 -0
  627. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ca/CaWHFI_lzzG9wP5bJRRUejLCE7wdGnjYXRxNl_W45l0.cache +1 -0
  628. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cg/CgoZ2hoi4rMGlBpJw5rJVF53BEph0gZxlnGi_RqKQqo.cache +1 -0
  629. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dc/Dc-XG8jrPZf4bAegLX1NIT2hCGcpV5qxtA6RFdNQWxE.cache +1 -0
  630. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dj/DjUbVgnKr0Txipx6bU8olkWMVfsGrJ-UQxU953xB_Wc.cache +0 -0
  631. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ES/ESSr4GgDhxy88ErCbfdxNO37d0poaSukweRbWRyB8CI.cache +2 -0
  632. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ES/ESUnmaEESyPlQJTFjGWflgOBAsI_xg2LH2LpUIutOPA.cache +1 -0
  633. data/test/dummy/tmp/cache/assets/sprockets/v3.0/El/ElpgrpUMFIwxclK_CFWpc1cg8Lombab2C-921bCJD84.cache +1 -0
  634. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F5/F5lpCVuHGaSaZoWY2_J0NKRd2Gw41bEqOKA1LF3ry0c.cache +1 -0
  635. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F9/F9FKuW692ATt4c7riTXW92QHc4ynjucfnwnUptnB5AA.cache +1 -0
  636. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FH/FHMWTWz3orG_HNZRqNr3EV7-Z-kkFidD5Zc0jnqW4u0.cache +1 -0
  637. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FT/FTgGOe0gH_EVsjGGSIyjNrtSviKpkNLQ_RUURlHkLXE.cache +1 -0
  638. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fg/Fg-U1JnPxKFpLo6k3BizLXcseJI1-Rfy_FQXc70kERw.cache +0 -0
  639. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fs/Fs17Nxsqrsw8zo0bSvGkrFOTUnK5wr84EPrl8abbQT4.cache +1 -0
  640. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G1/G1hJ9O7IdXxxpoqly4nGipJR6GNhbOkbh-ridZM8Dj0.cache +0 -0
  641. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hd/HdF6QSBTv5ZPQFZIVzWqXS0rDbLnuHzkwjMjiTMrg4M.cache +0 -0
  642. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hd/hDayQD51ZeNrIUxwB3ajBeWEoKjv3XC2jqu2DsVjJeA.cache +0 -0
  643. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hq/Hqn8waDsoK4Un2uguvvnKf9IO9CpW60FHy2ICqpNqes.cache +1 -0
  644. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hs/HsnzfshPRl6cEqE8FY9GV5xmiGRCCbFCRNT8E4q0MvQ.cache +1 -0
  645. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hu/HuYYpPOCNiAHWYD5J-XdUzjNV-OO7TkLOKosVP0kW5w.cache +0 -0
  646. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ID/IDuDPxel9WMdxbBOa2KDYjmWK7UMrO-F3ePsjiGQ8dA.cache +1 -0
  647. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IH/IHNU4L2hDW8MimRnv-z4407N9pNdjTKW7SMSh6BGGSk.cache +0 -0
  648. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IP/IPB4tPpXnRI0EHtbcDlQPy7U5ueQzYaMG6TEaW118QY.cache +0 -0
  649. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Il/IlPq-0v9CRnv5i4h6S6Q11jWvx7pxlwZUELW4oW1AII.cache +0 -0
  650. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Il/il2UQMfN6yjxjlDHICUxki3I4fCOklUZUEZRPRWKYcg.cache +0 -0
  651. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Io/Io1waBaeVXr-bLO7IDdunIrPJAfqxODuysh67UQJ-pU.cache +0 -0
  652. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Io/ioHeIlJyeUpIDpVZbASRqgmnPBf2219LofFk0iyk1mw.cache +1 -0
  653. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J-/J-MFMmHRrqE6Jqm0iGwDHY4kqywfY-nBtEWsFtZ_qOY.cache +2 -0
  654. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J0/J04LdCnlf749JZClOZeZ1i07EKWvUPUEQfS-45_EBIM.cache +3 -0
  655. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JG/JGB01igQ1TXyDvUUXUw7PRQa4km76xXqtERtVaV1XPg.cache +0 -0
  656. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jz/Jz5b_8XOQzceOIkO-mhQrvhFLe5wJbKxtWzXl9os4_0.cache +0 -0
  657. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KF/KFNhns8LkpTF1ixdjKCt2j4Wjt534cEaRFPuJHoW_l0.cache +1 -0
  658. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kj/Kj9K12g5cbKrta5fyLbbXR4h3OiT_kVplt-5sAyRdds.cache +1 -0
  659. data/test/dummy/tmp/cache/assets/sprockets/v3.0/L8/L8b8aIpoSB3il8Pro0hGs3xA4sncnbx8vJN1pH0sUQo.cache +0 -0
  660. data/test/dummy/tmp/cache/assets/sprockets/v3.0/L8/L8m1rXgccp0BGS0z7H4H_OvHYszEQvBYwG5LbuNTyKY.cache +1 -0
  661. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LT/LTqlN8HxEHKRv3SUUBaEcZp3DlTvcEKj2krGx63Cd_Q.cache +0 -0
  662. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ll/LlTIjtC2JsIkG64DpVPJvrl3y997HRD3cWKAo3M5kwY.cache +2 -0
  663. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lm/Lm3qPpO2_YPD8lIcW2ULyjJJq-M3iFDQv9dZN2p7fpA.cache +1 -0
  664. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MF/MFLDq4URM0StVh9cW19udcxbc41t4hsNnRK1tF6yTKo.cache +0 -0
  665. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MHzDtMVlH1Pud_QxNIUKKiSZ8nYt4s0BeTRCUxNcE_c.cache +1 -0
  666. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MY/MY1LgL2CoUPw305YxcCg20mg5CuC_xkqU40RM6unkeY.cache +0 -0
  667. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NG/NGkmu_ZEj05vRRKGCXGTZLfao2zK9ThV3mJyaC1LG2k.cache +2 -0
  668. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ne/NeXkmfJL6svXKb3L9aP7fsZIj11CkwiENiAuZVeJsq4.cache +1 -0
  669. data/test/dummy/tmp/cache/assets/sprockets/v3.0/No/NoRCh4kHXad8ryvSNBmK2aDTgPmWbL3920JgYqMM0K8.cache +1 -0
  670. data/test/dummy/tmp/cache/assets/sprockets/v3.0/No/Nouo16MJbE6g4NXKuc7sfv97gHF3nFxZJNECzVV5lqQ.cache +0 -0
  671. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nz/Nz1ttFmSfftC_0gq0CdAtwDoqeEBiyUm3Ws5Fa4a9PM.cache +0 -0
  672. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nz/nZ44PA8R-Bw0YDxlHydm9ir461Qk0ipTV-DBWJT3Nho.cache +0 -0
  673. data/test/dummy/tmp/cache/assets/sprockets/v3.0/O8/O8x6MmsR7JcKzWGbxIKMoE8ny7e8AXpYjwh0_p2BDsM.cache +2 -0
  674. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OV/OVW5bQtyUZ6FveK0ltULiWg4gWuOiRweNjcMV2Ix5I0.cache +1 -0
  675. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Oo/OoX1HEhvrOxnHNyfKpQKbBsVk4MKuxcgHZJ50sqNI9g.cache +1 -0
  676. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pn/PnkZz8Zmj7fd97jotMG5uAYj5tkdTQ8OtkNFQaTupEs.cache +1 -0
  677. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pn/pnQ2iX7EWFsckgSofkoGmd90_8uTAJAMuvBS2LMcJMg.cache +1 -0
  678. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q2/Q2eMbHuImKddX2slL6xJ19cCBCG7NLxLFffbASae7oA.cache +2 -0
  679. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QQ/QQLW_e8aRcc37CB9X6LpuNeTiHlHcuPYUn7vMzmnEVU.cache +1 -0
  680. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qd/Qd-dbbmKyx0er-F_mzfPvdCoWC7zVvA5GFccGQeswzI.cache +0 -0
  681. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qf/Qf_I2G-h3kZQX5oY8WP8qOTKahChnTsvfTAeW7Gl58M.cache +0 -0
  682. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qk/QkVYMPqu1kVMignVM2gGnMFkGm0J1290aCY43ChxGEQ.cache +3 -0
  683. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qp/QpIyRNYUTNnNpEGFFL6YbY2xAT6bHSXhQOAmk2W1rgk.cache +1 -0
  684. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R5/R53eX6dKpCERhgKeR8BPX_A4EIL76NzRgOUoJuT-97k.cache +1 -0
  685. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R9/R9UMd3wpOQ5qgdI3f8EfAs9zHG-N0mfbqoG5IOZUN1c.cache +1 -0
  686. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RE/REw_3N5MZ9zxTWBsYrK_udxWv4FkuCncWPrPdGXWL_w.cache +1 -0
  687. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RS/RSbZ5TDIFhrRR1Rq9ye9MKSNil5Co0Du5xLzo-53t0I.cache +1 -0
  688. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RX/RXtaxVxvIKpaTD-YvU2AOB8Asot-joXtjWDBI2QM_0g.cache +1 -0
  689. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RZ/RZCGZEJr8lekWZWk4xjDcNYg8f6h_YYbbW73Q9j3br0.cache +1 -0
  690. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rd/RdFBcncTpZwnUf7AZyLCsMUXiOp78p3VSJmpIAgkIlk.cache +0 -0
  691. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rd/rDaje5nLkUcfI5krh3bE5UKwgyGxScLDkqNAP6TuKvc.cache +1 -0
  692. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S_/S_fAHR48DRK3X1bYg-IuUQWH8hdmmOZkPV6gIKIEg_8.cache +1 -0
  693. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sc/ScXmTwCt-3jcOwaqs_wrdte5UT_4Xu_gXZJU38T-rOA.cache +0 -0
  694. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Se/Sepj5qdky8MeilZJTigfYY5_rDHh0ND8yK7TitQfNb8.cache +0 -0
  695. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sp/SpfyYHc-b8L2JwBOZ71Rg2gphDzy05coKgi_D1udzkc.cache +0 -0
  696. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TG/TGbsCVu85g_VAE2vaz-DSBqmmXfqRHfynVDfoHcDRTA.cache +0 -0
  697. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tf/Tf1NLvJLJLlGTWpnxaHpZD-z-axJtH9PtIBj0SGAFmw.cache +1 -0
  698. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tf/tf6-yepCHuVqX3y97OlqauFgMzY_CFaJMIFa-ojPylk.cache +1 -0
  699. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Th/Th6DJP_cxn1BFv2XnF2zzy4gw6q0jmmwzFlbmpIAYTc.cache +5 -0
  700. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tr/Tr7TcOVyfEQlyEMNbcd8eARVW2hLHnhZH_P8uGJZE_0.cache +0 -0
  701. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Um/Um4iZ2VxA4Pu9Rd3fFfdB1Sb0sWsrejIckslBMAUNDg.cache +0 -0
  702. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Um/UmvZiL6gVXlil8cO8ZZBt8qQwJqi2O9uO5yw212AAc4.cache +3 -0
  703. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ux/Ux43_p9wVXeESRS9yWZS66ki4vWckQZiG7og0U083Wg.cache +0 -0
  704. data/test/dummy/tmp/cache/assets/sprockets/v3.0/V3/V3h1gDfRjoafAoi43oG7K_jsDIoPgcMI4UaQaOHjw6g.cache +1 -0
  705. data/test/dummy/tmp/cache/assets/sprockets/v3.0/V5/V5O7JjRtAIvQX1NZyHqtGqWuooLHw8Qeu5igSUd-tqE.cache +1 -0
  706. data/test/dummy/tmp/cache/assets/sprockets/v3.0/V9/V9Hf7FDN8i3nwz9JWRTeLU8o5gvoA3m2CAE3unGj6Y0.cache +1 -0
  707. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VP/VPOCzpC_UV7ufOk79PTsRTYi3PfTpQyY-7t-ZFIgN18.cache +1 -0
  708. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VU/VUGK8LXcfk6uVPTikJz1zQYVPd6tshDg7CPHjWfSLjk.cache +0 -0
  709. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vn/Vnx7_4fe33hE8e3ItntbuMPKWFi6FztqF7nZ1kejxjg.cache +1 -0
  710. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WX/WXDYoEXUg7YGVdSzul5-rLfwn0dd0AZtcT--NXJ9MK4.cache +1 -0
  711. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wl/Wl9_LQjwcK1fhk0srRsv2XhLAWzgf-LVeKwotq1s2IE.cache +1 -0
  712. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xg/XgM1_T9by5VdoI54kNeYQXcebzV-wSf4Emx334pRuYw.cache +2 -0
  713. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xg/XgcmB_gl-YJz7DJANeKH_x2TuYH7ZuKkUhMel-ujqYM.cache +0 -0
  714. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y2/Y2OpVZIgeUO0Nc5wibYqXixtiRgAiJV0zcmzSPAm-dE.cache +1 -0
  715. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YH/YHXaDenxFt-ULk_Ya4ZVTTNNgzW5gbUf_ARHjsI2974.cache +1 -0
  716. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YR/YR5NHNobBFDgETuRBaQD7TRgijqLsuPUw_u9OLdxkPw.cache +1 -0
  717. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YX/YX0srnvlCYpB9F5i6xEuJB328jeEIw8wCceZOCOR-M0.cache +1 -0
  718. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YX/yXx4S0xorXR-I7eODEIU18e1IH60tD_ZlcHCMXyJMg8.cache +0 -0
  719. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yk/YksrckSnDmihvv6XedtFgJ0zdfrav-Cf6W65PHkLHCQ.cache +1 -0
  720. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yk/ykG_XFeUjo8slW-51gYtFWz1XDxfBKcbLFJ3G92md2k.cache +0 -0
  721. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yo/YoI2ymnUKI7WiMvxI70dCPov4GOg4eqTaDxXx2_oiKg.cache +0 -0
  722. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yu/YukUy25MPtBFfrn9Bz9gb7-_6T1sLIaqhkrTYoDLy5w.cache +0 -0
  723. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z1/Z1oRDWrV3NLUUXEXsjvcd_ZtNrqnDIhx7vjSNQPHPMI.cache +1 -0
  724. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z4/Z4330ElJAZ8WEhwpjDlRucV2bLAV-Qegb_Gl1Aox8EM.cache +0 -0
  725. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZC/ZCy6lupzZspa3NxNxutT8uqo-Q6I4O1u2Y-m2ydzQ5c.cache +5 -0
  726. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZG/ZGUTg_KCAG9DL6zfc30Lh4PqgYrrDIzvoY9We21nwqo.cache +0 -0
  727. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZJ/ZJYIdEU95UzZr_-4C2pc8JZM8wDItOcC9oPzNo9LA4k.cache +1 -0
  728. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZJ/zj_kxl94UEGescsAg8OMTdsjvhWxa99BesCc2QJOuWk.cache +1 -0
  729. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZM/ZMKPdJq2EkiNPeGU1_iBpaEz78BkfhBk2SQLmD9c4zI.cache +1 -0
  730. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZM/ZMYCw1Beuf2X9oSjlFTxDJiW0V6pl7ooqwrZgHMWExQ.cache +1 -0
  731. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zb/ZbC8kDDWqG1yE_tqBHW_ddmFJYbMs_TrockDs9FpD2w.cache +0 -0
  732. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zd/ZdRcv_1q3K73YYuM2P6FvylwyH6rNFutY9otH7Wj6Aw.cache +0 -0
  733. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zd/zd5AdPW1qPWYnXt3hsCakZ28-bZK1ElyGLW7l1lErb8.cache +1 -0
  734. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ze/ZeMAiijOdj_duDnxcsKXm7bxv6NTDsmR4cduAOyLtIE.cache +1 -0
  735. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ze/zeFYJ44_F50CtOkpxpQMt5FVtczrQX3bQy9V7bTXT5I.cache +1 -0
  736. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zf/ZfheBLXuaHl5Qw8n6CghKvhUktYCeTgrE48U5qB9zYg.cache +1 -0
  737. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zi/ZiBDN6oCO2hl-wfnEU7nEmdZ2CzH6zYyMYMRcmRwWCM.cache +1 -0
  738. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zl/Zlkz1N9AAJ5c_uRYdqSPrpukVYbW3dJQdRWPCrXVN84.cache +0 -0
  739. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8-T9Nuzho7J9nuQLeuE1cS4ZzygnD4gjHUCu6Ki0_Y.cache +0 -0
  740. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8VjO38REmO_8c54lGssvNN4QE02NyPjlD0ksKkXffY.cache +2 -0
  741. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_A/_ACDSJFbKwQCGi1D8PfrFJfxyIBMW4ux9brB22_tAQc.cache +0 -0
  742. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_N/_N4TGRztKgSVX_lI6RUkHCQZgURXKVE4Xj8nTrjA94E.cache +2 -0
  743. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_S/_Ssbc6aeIEJqR5LiP34KVce78fDVpm4Gu1-0OZiZArc.cache +1 -0
  744. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_X/_XCSPPPOaQfLAbE8DUJKlZLC3A0FmPQwr0kLPJEggu0.cache +1 -0
  745. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aB/aBiaOadikbonE73A_pT1FfOzxufO6ctwK4xdmyWGbF0.cache +1 -0
  746. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aD/aDVDTy-4GcdF95xchaQOv5tudXrE4VIhzBDufBUTsq0.cache +0 -0
  747. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aU/aULydCjq9WV3UdJdvIOPvaH6-_GsWHKFWe866ofTggs.cache +0 -0
  748. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ax/axQZtfiHvmG8kjv887C56dVBZUGCQ0m_h7b5MYGjO0U.cache +1 -0
  749. data/test/dummy/tmp/cache/assets/sprockets/v3.0/b-/b-m9u8yCxBEFRjA1AQXgRFT0r-xkOmF_ZnQTTGa6FjU.cache +1 -0
  750. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bQ/bQmmIoVu8L25M-mfFUu_bZfCjPBPz372GK4I3d-fsuU.cache +1 -0
  751. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bc/bcbT8as0OkdGGvC8SL32t61N2frn2bRPB8SLCJI2qBA.cache +0 -0
  752. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bk/bK5lpPuSbHOczT7k1UxStDz7PNZTKQqFUEWniOVmfQ8.cache +1 -0
  753. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bk/bk-fVRBLyDwTN38I_OeUBuucb7ab6KlF-g6W5l6YsyY.cache +1 -0
  754. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bn/bn2u8Gk-zWLgFpsm_0xEhdR_7NKWnlcy_gssvz6hSbE.cache +1 -0
  755. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bu/BU5BYFOtfh6_H7TFFFsq-_w-oQJFHwlEak-5Idd2GAg.cache +0 -0
  756. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bu/buGKMscDW1-jZVeeluKi2TI8e2aEKxsuG1tZAM4D0lk.cache +0 -0
  757. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bx/bx8mXM9T7dqgh3tVPajQwz1IDZ4SH634xOYjtcCfhZI.cache +0 -0
  758. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c-/c-pZDJ_2vxjTMSM33wupE0XubVHK0Pnmx3IHdXDjbT4.cache +0 -0
  759. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c7/c7-L3n_h8uim6DKKofwgqFXTDeAntEUJ0KOrVVBC-HI.cache +1 -0
  760. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cB/cBrZVOhbA_3bfAt5qy4SJPcVSRFPtdQ_SuvjQYrTeTE.cache +0 -0
  761. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cT/cTO6HWMiKlQ88IL378mSXcDpEKuN2bPSk9U72E9n3t0.cache +1 -0
  762. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cW/cW0P9OIEph7oQOP-Nv0v7k0trDIJb9-TXhGg2aOOdIs.cache +3 -0
  763. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cm/cmzw9N3auHrlY4vyAKTgJqmaFnkNA9ESpHHoykQ9U3A.cache +3 -0
  764. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cn/cN0xdRjo4XWBL_Ef0Rpi7A6qlu9WneXfuhOL10g9oyI.cache +2 -0
  765. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cn/cnBP0oFgUkltvcUhTgXyr5QYDeCP7enrSUuV8KUEOiM.cache +0 -0
  766. data/test/dummy/tmp/cache/assets/sprockets/v3.0/d-/d-UkYxjG-4nDR6juaMtG6EhWph6YUEBN--6c3BIou1M.cache +1 -0
  767. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dk/dkJSmZDOFwucYACocRIVRPljJpsYmw0MddqM4aV80Q8.cache +1 -0
  768. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e-/e-lEALGLtHBBOrxttDCaBEpAvPotzMR0pjmCcSkbhr0.cache +0 -0
  769. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eJ/eJ7oiWhCPKuX8OGxnR53zVgDvZfJo08HevYwlQzvYuI.cache +3 -0
  770. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eY/eYN-nRBHw_mOYO7ScMK9wca70gcBtxdAmd4-dBDO1_E.cache +0 -0
  771. data/test/dummy/tmp/cache/assets/sprockets/v3.0/er/erxVyBQs1Te7WPzSapDTBht1xreb6HZjg97JVjZyoN0.cache +1 -0
  772. data/test/dummy/tmp/cache/assets/sprockets/v3.0/et/etDGBgjDY5YBEmXc-MYEImcLSteHn48xQCL395ifouA.cache +1 -0
  773. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ex/exDVCg8px2s9oU8Ng3yLh1mEI9CUDvnxniTSSwKk7qI.cache +1 -0
  774. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fB/fBdQN2Jl7w9lG-SgU944fjt7NU_WCYABQPGtrtwYP-Q.cache +0 -0
  775. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fN/fNVSg1rTLREsz0moQE0kQRe49nLW6yhuAEyJ0bMHDKg.cache +0 -0
  776. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fR/fRzcVciVDPPxkOJmdFTjCwPSTAEVTaWN2dOtQzJ3UuY.cache +1 -0
  777. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fV/fVoryFXpcTlqRAOaxVx0i-FM5vFJs7aHjCZs0stKHVg.cache +0 -0
  778. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g2/g2Q5Cju1RKpdYQ-O9mJZaTxFEA_zrfuQtI7EGkNCtGQ.cache +1 -0
  779. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g9/g9NAG18gDccQ7Cd-VVQM_eBpTL6_BdkUibQUUPZswDk.cache +0 -0
  780. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gI/gIdseODEGfRwmx_ouz2-FpFxDfERPkPKYuLoLqnmjAw.cache +1 -0
  781. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gV/gV_DJq1kGLlqKcZXYaRB0O3Jjv4oTcnUF4_MEIwzAQM.cache +0 -0
  782. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h0/h0TzUNxPqG5-LSZ03y_sKGNTluktXuRvJMKkfD-NkgA.cache +1 -0
  783. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h3/h3LUTjA5rXOTJF-WGpKw6uH3sV6fprJ02_knTOOzr0o.cache +0 -0
  784. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hO/hOPN3iMhPS55AlbWnB3_lt0Ml-9lO5NBvpHsseUfXzI.cache +1 -0
  785. data/test/dummy/tmp/cache/assets/sprockets/v3.0/he/heFwXy2MtYezl49pYwZHmemRcWq4NK4CBpaBuaz7Pyc.cache +1 -0
  786. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hl/hldSB0JIPew2zl-5vK96KRgc40IQVM716nzdiDfT2V8.cache +1 -0
  787. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hz/hzSPiTz8z5F0jFoScGlw_3jo--28w8f3uutr8Ft7dH4.cache +1 -0
  788. data/test/dummy/tmp/cache/assets/sprockets/v3.0/i-/i-vfittJWbHhszmrxPFC-c0w4vWxpY72XWZjq8bgMSs.cache +0 -0
  789. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iE/iEzDDOmCkeXawHeny7_65LPtyWnI1UASUvjEdG8J6HA.cache +1 -0
  790. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ia/ia1P3cyQyeHAVhjkma5ZJfz7Dye8A3HotCUCFCBrOe0.cache +0 -0
  791. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ir/irXQsC_MTBbWvzZoQjPKeLbQrkH6on5K9v54zcuB6q4.cache +0 -0
  792. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j3/j3AtBCvTE6-t8NV-Z1zcPnJgzhXidy_sUNVmsZx8R5k.cache +0 -0
  793. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j4/j4t6pApdl3Uq-XyHD6oE4BztHkRjQ5wqUc-Jz4MRDyM.cache +2 -0
  794. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j9/j9wUMM63eav4GHtex0btysItZA_ogkYHi0KunAhr9oE.cache +1 -0
  795. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jJ/jJA8pFSpkBxs5GqZg6IcF-uKOkymWki2t6J1tscEHRM.cache +0 -0
  796. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jR/jR8jsNuNdizf_RLUc8RiiYT0OEgPdhtGmaEeqbMG2SU.cache +0 -0
  797. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jV/jVSFco95Eg9mcOf2lqjINbDoumsnWqoRDR6eGfJyy8o.cache +0 -0
  798. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jY/jYJSBhmzr3HOfALbhZvNkshranGT2WWtlArUFHVUiEM.cache +0 -0
  799. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kI/kIVJsTCCCKIEPn6B7GlwMN8tZSFk4tjyZ8iWf9phlyY.cache +2 -0
  800. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lF/lFRQ_IJGALDl7VpTcemmYVITLHhZ-oZ6uwW2nCPm_aQ.cache +1 -0
  801. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lQ/lQhS5sutT_ix838J9l0Yoof0aocCSoGMITm-fg9pvt4.cache +0 -0
  802. data/test/dummy/tmp/cache/assets/sprockets/v3.0/li/liMDXE7v_K8hsOsDAbEvnzFWUcBzYGlLx2G4egedmoM.cache +1 -0
  803. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lj/lj7kfcn50dFxxkI_F0x4Hr04kBjneGJBzFo5uKiaZvE.cache +0 -0
  804. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lw/lwezXs1L2P00-iJmBjHnSDs_MmYgG98G3l5texI0rGY.cache +1 -0
  805. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m7/m7TY9DVmPIqzSqje9jFwmShZNnuJImxfs9lfsrGyW3s.cache +1 -0
  806. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mI/mIRVKJyux1JVqft9XLv8vgBkVNS3TUB5tXjct7aMymk.cache +0 -0
  807. data/test/dummy/tmp/cache/assets/sprockets/v3.0/me/Me_MU5-33Fz2UnO3CDsvkt0qSZcVHsQj5aLl6-LPc50.cache +1 -0
  808. data/test/dummy/tmp/cache/assets/sprockets/v3.0/me/meoD-Ds4DPMYR8U5F989C97-RWDk82ijQtN2Jiukjeo.cache +1 -0
  809. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mz/mzBdVykCLK3VhiU3UnR5v8r9KRxFF-99kSWgR_OXfLs.cache +1 -0
  810. data/test/dummy/tmp/cache/assets/sprockets/v3.0/o4/o4Rbmfmj3Bk_98VTprxYY36wMK0VsDnI9qIrBki324Q.cache +1 -0
  811. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oK/oKaQZZpTL8ZevvoV5MawRL3FqKhOt2Gln5TQqHRbYMo.cache +1 -0
  812. data/test/dummy/tmp/cache/assets/sprockets/v3.0/o_/o_Q2cvjHNFB017rfkS46z7LsMDFZeDlXzHLZuKQW5xI.cache +1 -0
  813. data/test/dummy/tmp/cache/assets/sprockets/v3.0/og/ogkubP8IrtoUJYpDwuUA4QC3A9P0wJrwoIDSeiDgE3U.cache +3 -0
  814. data/test/dummy/tmp/cache/assets/sprockets/v3.0/om/omCm_3DCdFxe1SuqGDx35cj50JxrKa6-eQ-6uR725wc.cache +0 -0
  815. data/test/dummy/tmp/cache/assets/sprockets/v3.0/p5/p5ydKKbvZuNz_1nJQ-ACW-atAHkEavzYReLkxT5wOk8.cache +1 -0
  816. data/test/dummy/tmp/cache/assets/sprockets/v3.0/p7/p7P9-K3ySa_n6euQhlelRVkHaeWWUPnDDv0Nkdq7trU.cache +0 -0
  817. data/test/dummy/tmp/cache/assets/sprockets/v3.0/p_/p_ltyim8ihaVfGFdLhgQ4oK-6RCSLKssWi6jZJR1Zyc.cache +0 -0
  818. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pg/pgcxvM0IelX3lvs-C083VsqciHSehoTCJKJYB-zx1lc.cache +1 -0
  819. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pl/plL4v6QZ_saK-o9SmIxcffCZWSdBhaQPfIgiKVKXbIQ.cache +0 -0
  820. data/test/dummy/tmp/cache/assets/sprockets/v3.0/q9/q9SRpHQNgz2dqTPRNRifYoJ0xjSBJOlef1XKidtgPOY.cache +0 -0
  821. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qM/qMPjjnOmZnmet95cBLE1aog54LnVsdkXJ0HutmulfrY.cache +1 -0
  822. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ql/ql0AbEjKX04DZvMBealT-eqb3atiGtLBGGiS0fArUIk.cache +0 -0
  823. data/test/dummy/tmp/cache/assets/sprockets/v3.0/r7/r7zBNyf6JLJNLzLj3ciC5MdsMk7mme29rC93ip-r-fQ.cache +1 -0
  824. data/test/dummy/tmp/cache/assets/sprockets/v3.0/s3/s37EH9gmSTWv1nImQd4nZlg-t-TJGQDlDZ3EX0N_8aA.cache +3 -0
  825. data/test/dummy/tmp/cache/assets/sprockets/v3.0/s8/s8uYoY9FQ5Zsex9LaC94WZW8nYiFtQiul-ktpB7K0MM.cache +0 -0
  826. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sL/sLPAiQd7QTe1ZeVqx5NYUM5huUAQBwpsnMN9Zc3f4No.cache +0 -0
  827. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sf/sfcsEK45xZumqTE1gcc_2yIgo37Ba-VpFzeusMacnXQ.cache +1 -0
  828. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sm/smapFFdC1LyjJhp_fPQd4yuNTUoKOHe8Zj85PIcku0k.cache +1 -0
  829. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sq/sq6OSAOZtaRvF3nq8tNZk6epLfLS9OvsaZtY8yexGfQ.cache +1 -0
  830. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t0/t0cstjFBNC3OJBhdATUle0q5AMH8S_INTMGVla0Dq7k.cache +0 -0
  831. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t2/t2lhYbTPCPFvtwQeJU5TWf8gDiPjfZbGC80sxYqygHE.cache +0 -0
  832. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t9/t9R2-cR4hxqnQVVfB4X30lMdHJLMiUkeS6N7dYI6f0A.cache +1 -0
  833. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tA/tA3akHoInCqzQ53PMrTrMpCyopE2PGe8Z3yKfJlqEAo.cache +1 -0
  834. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tA/tASYsyuVbAkZIfhyUTQQw270pSqq7O0_RL-dkw34MbY.cache +1 -0
  835. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tN/tN9Q7Cy-vZOsSYsHWOTxcZIHGiDl4VMBI19sko0hM2s.cache +1 -0
  836. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/tsvFfMkzPABXkDtuaGEEd6HFxYhu1ua20IZ6v12GYLQ.cache +0 -0
  837. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tw/Twx_66_CNB76KlSBX3tUuvsHxsMnSvbIxvLxwJx330A.cache +0 -0
  838. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tw/tw0Sp5pTpHORktzzHpv45_RK1aTBzRlvb59VzutdQyA.cache +1 -0
  839. data/test/dummy/tmp/cache/assets/sprockets/v3.0/u4/u4tRy7KCMwlfVoAHKLlbeloVco6-dHjQuf93JG6ERHU.cache +0 -0
  840. data/test/dummy/tmp/cache/assets/sprockets/v3.0/u6/u6rD9OPVuVXvncXqYsapUWxjUnnVU0sxVis5OPTIxl4.cache +1 -0
  841. data/test/dummy/tmp/cache/assets/sprockets/v3.0/u9/u9_QmMLt6rCHpI5naUN3ANjOy6jbhtWJj_cKr8BMh50.cache +0 -0
  842. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uB/uBQqg7pISXBBYTUvCEpdxHhHemgFlkxUauT-7koHyOk.cache +0 -0
  843. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uR/uRZPol6sodI8ojAJNt_YuwNaep5cdYOYTuMli9hpJ48.cache +1 -0
  844. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ut/utoxKbBZnYI6P-w_Zi6oo4BptxcWNicL6gvWQcrmGUM.cache +1 -0
  845. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uy/uykVJqXSICUis2YvYiKZXg8CtY2vVnwaZrISnqnMYvc.cache +1 -0
  846. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uz/uzmX347dwenkAQFszo1V0dV1Cy4zZdnJRLJFMUM1clE.cache +0 -0
  847. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vI1RooKd6it5rCV0ByLw_inChjzhKGLeL-uNsDdU7UI.cache +1 -0
  848. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vV/vVA0awgOSwWDRDoJ2ICIDBviV3tVpaJ9zbEBwwS0k5Y.cache +2 -0
  849. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vd/vdYcXh2j0mzlP6DYCfmXnt45jEG-s7y2cTM7PG2d6Os.cache +0 -0
  850. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vs/vs0bZ78LozN7mNpDLSRmJTak8OF81hlYdu_MKxHextw.cache +1 -0
  851. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vs/vsJQIHfOQP9rwOQCr0Q7Ptt_7duMUbUaJTRQdbrEjLI.cache +2 -0
  852. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wQ/wQSs5mPFL5FDhpTzyJO1MrLG1ZUMj2Ihn9UdP5C4hoM.cache +1 -0
  853. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wy/wyom3yyC5EpXFKYGzGFaKYsFZ-_y0Reb6-XqcXy-g50.cache +3 -0
  854. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -0
  855. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x9/x9kYUMDsV4ARlVRhByYXKvXnVW_Ai3DojIUoiBODXa0.cache +0 -0
  856. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xl/xLoiUUOJ1ItWnIVScHfQatuY0RBHle2F3EqNDjDq_G4.cache +0 -0
  857. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xl/xl_vDYfpe05FsyufAxfJIhUlgwQTBgQHOx2gD-L-WDg.cache +0 -0
  858. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xq/xqUNjanZ9c9T3jcjPlNpCYOk_jiyCcvjnon2RB5izXc.cache +1 -0
  859. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ye/YeYo5la5d5htOE7Qlq1Zj9faHjQ48RazLw68H6kGltI.cache +0 -0
  860. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ye/ye7GRQsbivfcFBvgo9TNp8VDKvoGNBogpjsFnDEmzzA.cache +1 -0
  861. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yi/yiC6C0MvEv_omyb1l6g3ZdfnMOqjrU99ZQGQOZi825c.cache +0 -0
  862. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yj/yjG9gaQh_UFv3mGkdqnILnPEl8WM1xBTaz2P1jlPl0s.cache +0 -0
  863. data/test/dummy/tmp/cache/assets/sprockets/v3.0/z0/z0-D43mSZX82L-Fr7uimjFbuZdPrYy2X83rQP5ns00E.cache +1 -0
  864. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPA0Rs-8ljm56_FFC8G6UG2W2hDWxG35Q19AnokNt0Q.cache +1 -0
  865. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zS/zSThYdCw9u8CXob5DBMZBKsSF0RdH44HiNvJLGnP_SQ.cache +0 -0
  866. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/-A/-A3Ndc4_jEm1yuTyYgWmGqZ9p3Whhw7yMyp-WGyUdc8.cache +0 -0
  867. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/-I/-Ip6yN20dIDfG-0sUQKNVSxEPpM7R-k5NANs_90fTbI.cache +1 -0
  868. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/-x/-x_JXC2N1oWpCNEPi1VbuEpzlzom9_WzDow9TtqkMLE.cache +1 -0
  869. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/0C/0CEki9udzRWAEENVlheNOVmlGbboKG83wvp8QTtF1FU.cache +1 -0
  870. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/12/12wXLQ-wo6IZ8M8Rb-hJiL2JbbHX1JiR6-T7I9NbEhM.cache +1 -0
  871. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/1L/1L0EvxEF85lQVCRcfxJaogkVXXdc9jRQ9b2CSmIk3QA.cache +1 -0
  872. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/1R/1R_QdAGrGMYB_N1nK8p0B9H30nWEgXc1Y7nsohKdZI8.cache +0 -0
  873. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/1f/1f6JIDvPtmY5K4YykDEXmF8Gm-tTdEhp53KvCnWlFJA.cache +0 -0
  874. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/1k/1kCMdi7-qQMmhGRFi-KkDFJevRiQf4wInv-JdWeCxJo.cache +1 -0
  875. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/2-/2-45kGxGtRe1p1Gx4ayluOe7a8ToI1Rrpf75RI_qufA.cache +0 -0
  876. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/2-/2-OIwNgj9fdSDJMY5T_3lvlXc2vEmT0Gm26V90dXzo4.cache +1 -0
  877. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/2C/2CGSZLxo50Yo7xekGIkJdMCqxxZIzr8CZxa_SloGn2Q.cache +0 -0
  878. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/2F/2FnGlDta3AeYaFVMqSCQG8tIjKD9HJbEcWJdnhsSZ58.cache +0 -0
  879. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/4d/4d3R5YzN-EjlCkhlrChVn35lvb29_ICYV6AvCi8c90E.cache +1 -0
  880. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/4n/4NyulnO47CtD1TzB_yc23D4cAiWmkQNcL102pDKXyQw.cache +1 -0
  881. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/4n/4na_bZ_W0FEp5BK0iqiMKTTuGwrSzyNhXJBqrfyhNCw.cache +0 -0
  882. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/4u/4uOIqE5yiets3t9WSyq3AZBd0queIUYR_prWEdrf4FM.cache +1 -0
  883. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5K/5K3bukv7znJ1doFntv-4e0KlCiMDoRqcFhkKp44hpxE.cache +0 -0
  884. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5S/5SGIB5MJDLatRpAm0cRa9mBp0cZl0GIs2KTgZnV2ZM8.cache +1 -0
  885. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5b/5b7dx09SSfOyx3F5_T8fI1dLQ6OgdnEDbbzoh-4BFR8.cache +1 -0
  886. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5j/5j1FaxS1eYjd9gE5DPyCMnH9VktmvnFM-vwNjnlBIpM.cache +0 -0
  887. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5m/5mOTBDcbIKN9xR8PVP5FgN38MoXJu-rBlZ4tchECsAY.cache +1 -0
  888. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/5y/5yK7Hgu8XDoph_K8lllqYFaSRHKQBVJA4UJ_CyZwnck.cache +1 -0
  889. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/6-/6-ZeK-mGo0IUG7u20x9tw8CdWCwAC7L6Kv8Y-eF6MqU.cache +1 -0
  890. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/6e/6e1N70V7pJ2QM7cdXd0WSwGg85euTmrktTo4-97bvk0.cache +1 -0
  891. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/6l/6l3FVEIfvNEmafN5Y9xLR4NVyQ9MOJ7khyf5hiJqzps.cache +0 -0
  892. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/7U/7Uyq1vnnMKFaQZwiEOhmSt-SmeD2muq8FlU3VhLSuU8.cache +1 -0
  893. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/7X/7XmEoATBblIjulwscLBR7skbjNuRiudytexgRI-Ctb4.cache +0 -0
  894. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/80/80QxmJR_TOpnxFuvPfnw4qeHOhObQ7Wmcn3Zf85t6K0.cache +0 -0
  895. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/8B/8BdNVuFdQW-7YobRs-4Qp2oar9BSUsjGS6192bYrMhA.cache +0 -0
  896. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/8H/8HwPcynnpODYfJ2nKPPT7OD8nzZOVx2b0aQEjpW8jBU.cache +2 -0
  897. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/8S/8SMwC4Z0KuUfq3W7HvLeOrC40TmPXMJKWJ43viuIRko.cache +0 -0
  898. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/8r/8rXkBPAzkVArGkJq7LcwxN7-i6JhopVENg9RM2qstfU.cache +1 -0
  899. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/9A/9AmJ16EPc0JnA1dBPlg8XpKRnoYke_mWcPaj-TToMn0.cache +2 -0
  900. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/9Z/9ZMDITiX81kh2ughwDArZo9MgWF1FZELhhDcPtbUpX8.cache +1 -0
  901. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/9u/9uA5Qm2y6foBd1J5utYec4_N1JHnrDKbbMgqVJHqIys.cache +1 -0
  902. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/9u/9uB_o7s4BrmZ4WdlvMv6VwKFDThkiKZ7tNLKveyn0hg.cache +0 -0
  903. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/9w/9wMEBDfag9W8KSQKopLnNKbdY10o_XYQxgtEY8dHC1Q.cache +0 -0
  904. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/A9/A926RDKpxIyjtFz2Zylpad5MAKApVyEoerprfMvuHPw.cache +0 -0
  905. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/AV/AV2_gQKjpZ9yXp-mYKElAt5gkliRxzJe6ZIhLLaEvZk.cache +0 -0
  906. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/AZ/AZ29dubCiNi-8VLpPWnhOfZON9rv1ojYipOX-zaR3hM.cache +0 -0
  907. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ap/ApLGNMMP15BxvkgIPVhm7tMw1axx2FzalGhdCV1EKBM.cache +2 -0
  908. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ap/Apo4ys34yqctwCwVRfJ2JS-fsEdkRNibCyBc5Ngl_gY.cache +0 -0
  909. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/C1/C1E6V236N1Whw-EqjQhirNA0j1hDBnblbH8j3r1SPjU.cache +0 -0
  910. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/C1/C1prwfWjNAyD30jln1auOqr2KAvGUlf50avBhGyM7Mk.cache +0 -0
  911. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/C1/c1DW3OqWrHFML18sSmj5dxsZAVbdAit0DV_AA0VjwcA.cache +0 -0
  912. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/CC/CCwwOSHjS5eRE2aAZm23hBz3Zqy7a-IdFXYfM9r8nbU.cache +1 -0
  913. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/CJ/CJCRBUt_zD2Sn6R92m6-Z-BNdlth7JgeemMfEUz-X9I.cache +1 -0
  914. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/CQ/CQb3XoNJrPW1UQLYBQINMTHM2bnB7k0GcDGGhIJ2SWg.cache +0 -0
  915. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Cf/CfJy7x3UE7t4mWN5nhK2n-9ypZWL97HaGnIT-RUwbh4.cache +0 -0
  916. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/D0/D0bqzrsAzgLyBhvAw5YO6SPRvA16j2teMS5AWpBXoEM.cache +0 -0
  917. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/D5/D5RGNZxX1e0-6D5nRjDDebqzXLqjAssd5n1FwdzBhB0.cache +0 -0
  918. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/D7/D7T_eD1ZRv-NUeHewU8aLftQvUsX5jTWhCjJLqCjQ2s.cache +0 -0
  919. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/DO/DONZFB2OUukD_QJD_jzhfr9pZGN9au8mFOktMc1GEe8.cache +0 -0
  920. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Dl/DlViL8VKS9BoNAIQKaiXJZK21ZrE9vCKMsWgMfp_X-8.cache +0 -0
  921. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/FF/FFkmnWhcejN9KCs1CRGSkRjOFeEmzSf0gRK-Qa-yWXE.cache +1 -0
  922. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/FF/FflBwhFOFQz5ded02oDqtdLN_hY-yqBO3bJ7AVZJoRU.cache +0 -0
  923. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Fb/FbqNRpvViMelaH4_WougBHLejafwxmuCB7_NiW61BXI.cache +1 -0
  924. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Fi/FisBxgFTDmYllseRmMMhLBXSpmqQtLjEqVzs9NQSlEE.cache +0 -0
  925. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Gf/Gf8dpGF7Yb47kf1A4kFT_avnEcaW7KuRYViIlCpdf9U.cache +0 -0
  926. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Gi/GiFk2TU35799eLI1t407pcTL5FwwHYyEU97oUGMyt0s.cache +0 -0
  927. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/HG/HGeSZIJPZ7JYc1k1TcAdyeezwSYarD8NOCAkSPYcqE8.cache +1 -0
  928. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/HH/HHnoSbh-3sP-zIDszqlyPCeMcuBo6AlNPDGjr-AaDkY.cache +0 -0
  929. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Hi/Hi7VnLWK1qWcUTRp6PJxB3UtqJ8CXfw6ZfPxZlfaoqA.cache +3 -0
  930. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Hi/HiLAxAYSkm9IUF_TO0NSh0tqjHd1N5FUcgJGEao8QSw.cache +0 -0
  931. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ID/IDuDPxel9WMdxbBOa2KDYjmWK7UMrO-F3ePsjiGQ8dA.cache +1 -0
  932. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ID/iDJuSLTx6s5mgKYuqkMjlwKdX0b43iFznhv6mY-SouA.cache +0 -0
  933. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/IE/IERkTpNRMMpRJ6sph_D8H5lORzLq9B9ctXw1g6AQyDA.cache +0 -0
  934. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Jg/Jg9ixVMZ-n4hBjgiQo9lATXBXhlWQNR0pipSNoGKh1w.cache +1 -0
  935. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Jj/Jjg6oCBSp1SMLZAH6N7-QSfnGDAFGOemOT63jg2qkYM.cache +1 -0
  936. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Jj/jjjajfMvhkFQN4_cXQbi4sl7Q3Vd2qna9Pt8JjRRsvs.cache +0 -0
  937. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/K-/K-Gvrr685LWNTKWCKsBKUre9H1NxPb0_WM34weSc1UY.cache +1 -0
  938. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/K6/K6yH_yjZBvrJK3iXbPmBxV14l7jAMMx2FLUXYu57R4g.cache +0 -0
  939. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/KD/KDQM0lewlNlKvR6sUcWtKSTMqsABKjWMIHW97m9tz7U.cache +1 -0
  940. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/KO/KOCN2FgEmqnM61gA4f16eJBrqqQk82Sd2KFxLp0jKGg.cache +0 -0
  941. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/KT/KTi5eDjxLgMsY-tG7nbEZtfo3KfCUwJUaZ8T4QptOp8.cache +0 -0
  942. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Kw/KwaYTPXEB-OVIuFcpl1xKBZfn5jW1Oe4Aqx0xEl36ig.cache +0 -0
  943. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/MV/MVeKJ_f7auIdSQdb--yoRaHwqHfE0xyiMRZw_pD27fY.cache +0 -0
  944. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Md/MdQJEX39lIRy78_RcCpy81Z-Q-XBltcedLyZCXX6V0Q.cache +1 -0
  945. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/My/Myuze3S8di1KOdW5DRbGcDcnJXB6dqO80dTGD4RIVlQ.cache +1 -0
  946. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/N1/N15PHR_Khz6jvrDLjL5X-p3WKIBvBv5FBR-238Q5XzY.cache +0 -0
  947. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/NK/NKML0Izxq8UCD80eFVXlYp8HW32TUyonyarvw6FBIDI.cache +1 -0
  948. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/NP/NPAaTkz3DT34Ui315dT3mz-qLOa8EghKhbDLG9V8LaE.cache +0 -0
  949. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Na/NaxpKAvTF2U04xjybPJ7xru39PDt7SxF-gyswB9ggFM.cache +1 -0
  950. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Nn/Nn_0I0PThcVZvgSiRrwXSEJan5_2aanfGqjGggZUcrM.cache +1 -0
  951. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Nt/NtrUG1QPl9_j5SLvR_ZaZtQzh74YShCm00QWbRtP8_s.cache +0 -0
  952. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/OV/OVW5bQtyUZ6FveK0ltULiWg4gWuOiRweNjcMV2Ix5I0.cache +1 -0
  953. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/P5/P5sszPOkPGIEHDpBvVDyy78p30wgfh8-xq71vTgzWQw.cache +0 -0
  954. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Po/PoWOvfDfEClPri2hgFP0e-9vN6zb_ARq5lWlQrtP_GU.cache +1 -0
  955. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Px/PxLwiEQHb_Qbhn2lr3Lp8el1fAS9-Iq8y3wjs8JzkFw.cache +1 -0
  956. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Q7/Q7HmiFv3L6OyTR861zNnUuqd1Vx9fLkK0eAGdZPAA5g.cache +1 -0
  957. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/QG/QG0_TJgsdfSoeGbgfBzEATMQQIT6clQ9k6aTlVgAt3o.cache +1 -0
  958. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Qi/QiBN09OoH0QSdOvfoPxCYmxCP7BG9gBZa3Vp7aN-AQ4.cache +0 -0
  959. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/RY/RYVRXQ4YiJROgc-gZMHHLjODESTjYNQxmgCJthR7Dac.cache +0 -0
  960. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Rf/RfzdzleXI3x3hReb1gB4iStYwXbolkRHdxIUCdWAdJM.cache +1 -0
  961. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Rm/Rmn64XKjNJLUUcDtLMxdfzmI6QH3rxYU_Lt3i3w4yXc.cache +0 -0
  962. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ST/ST_ddQ-GdYvkj4_2E2zv9nP-K6KszNKXaFFY8NH2U04.cache +0 -0
  963. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Sv/SvoTRo11BR7tnqi3YxDhpKFDzu19798n0t4eqlFIZRE.cache +1 -0
  964. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/T1/T1NJGnxKu54Eb1nJbgKvO2NzpYPbX41FXGhDMP4p7-E.cache +1 -0
  965. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/T_/T_2s1nXJFJJDHBzMO9YR-dqupDcyvaNNhVKF16XDRUc.cache +1 -0
  966. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tg/TgTbmLvJ_bMdnY1szufmBQitbrfPwdjXx-GRCS5fg8A.cache +1 -0
  967. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tm/Tm-NZLa9u7WX3NfK7Ds1jL-F2GymVCKR3e4wJETPFdQ.cache +1 -0
  968. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tp/Tpt9H9BMFA40hGCtkIMjmsoaZGyUPgceZJe9SfxCnx4.cache +1 -0
  969. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tv/TvmYpNlAOLwlnqv1R_4ombfLA-3jJARYX82SnCsMFP0.cache +0 -0
  970. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tw/TwjKwlDIwKzL-V-JtWx2m_1sLoQkIlTQTpzOibysdUs.cache +1 -0
  971. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ub/UbVFEHA2NspFRc5Tc_i760MTBUR5XOmvZ6m-7DnBLOc.cache +0 -0
  972. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ux/UxIO0nLf1zQ303KAlnaNsIho0ea3_4Y5XuQeiUOXQCw.cache +1 -0
  973. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/VJ/VJ3DALuZ7Y7n9QI_vOhI2mYovwMb5T_Lu1Wmw5uAWNk.cache +1 -0
  974. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/VU/VUF2FJrkCLUHpvd7n8hC30pX_rwWXsPgo6KEFYlQr5U.cache +1 -0
  975. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/WB/WB7A0tQtRkUF8B0FGIwlcyAW-roU5fapMsa1vuM7OB0.cache +1 -0
  976. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/WK/WKGkT4heEH6Os_O_D1bS-MbqkjU2Ufg6XZXqBZuCCHo.cache +1 -0
  977. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Wa/WaKN01tOvD0FctxO9Ar5SoHZyoqh7sKyj8k9vAoxgcU.cache +1 -0
  978. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ww/Wwws5e6PYGY3Iq-xqu-7mJCuTDrkkwDc03rb5O9s1ws.cache +1 -0
  979. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/XH/XHoK-91v0_qagLEOS4wK7iT6l4F_dkoAZTKspMadA4I.cache +0 -0
  980. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Xq/Xqf5CzxAbCcTmhVnlMptAc5pbtCxIxyJ3zw3EHwfTmU.cache +0 -0
  981. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Y6/Y6vMI5KeWt61h-SrW-cu0D04mEx4jvnwzV8GRfHdvd0.cache +0 -0
  982. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Y7/Y79-qeIQkNWOK2-vdxQGfWqlla8rj5r-7MxnCG7YT4s.cache +1 -0
  983. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ZC/ZCZt2XCDHeFoFlh67JLNbRzvs3Vds45xts7kn0yDmww.cache +1 -0
  984. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Z_/Z_jnPTvf5YLcpDviPR2QLzSul0dz0BtOkbKZjQe-8H0.cache +1 -0
  985. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Zb/ZbC8kDDWqG1yE_tqBHW_ddmFJYbMs_TrockDs9FpD2w.cache +0 -0
  986. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Zo/Zo4ZF2E1pLxM91h2oODwb5bgBWToG438oLWIoMFRRYs.cache +0 -0
  987. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/Zz/ZzCi9UViPDUXtau7s4FIjR8olGkJGDDfK9deIIlOYvs.cache +1 -0
  988. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/_B/_Bb-da79iYMwsu8aSUxJMif2EDMIHYiuV5VDz9evsB0.cache +1 -0
  989. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/_o/_ot7K8KtifZueQsx81UY_6NM4F0GcC32lbA_Frz5cbA.cache +1 -0
  990. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/_w/_wKYWrdL166oHEwCH1DTdddVAgXAZKDNmt_wjgJ__IE.cache +0 -0
  991. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/a-/a-QpEesxkTOvkpq1jBz7jc3B6inE6d62pQfoJGZCqjk.cache +0 -0
  992. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/a2/a2ZeE-bV6DVJpqwDCFhY6-I2DXhqJdxzlmGuZ22MKY8.cache +1 -0
  993. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/aN/aNBElmGVD0fNgATHY42wcmpQjcY9nda3VknyVn9DQ3E.cache +0 -0
  994. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/as/as5z22bzDOlRwL2XbZcjDNM5GWQn-XQ7Df-vXvxjbrE.cache +1 -0
  995. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/at/at3Cbd1lE-lS1uyjkLJpQFoHYiPAgDAEvPVGppfaGMo.cache +1 -0
  996. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/bT/bTQmLHjCjfmAfL8ezUSHAckfNTzWmVHGaWP5RB0n-fE.cache +0 -0
  997. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache +3 -0
  998. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/br/brSB2fGEYhVcK-lhULJMWut_2nLI9eEv7_USBuCUQMc.cache +0 -0
  999. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/c4/c4JuItZ8OC8ty_CFP7JHS4ImM_IX0vYPEwije2DdwZY.cache +1 -0
  1000. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/c7/c72tXAOcdtjiiRytsBCVWh8zlB_Vel-PG5AiPnBmMQM.cache +0 -0
  1001. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/cV/cV5fQLxdUmHIs288-PI0aMX8W7Nh0ifpkLhdxB0DVoE.cache +0 -0
  1002. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/d_/d_MW3T-uGbCMno2tBVIcARff26UKyB9KzDFB5a3aZbU.cache +0 -0
  1003. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/di/diEAVKjQ-_vod4AiCtS6ym8718VuHaeA4n2MjoOkVe4.cache +0 -0
  1004. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/di/diXEpN06nqkFqWhxjNJiuUCbrQLTOQjWpEZDG-Gnys4.cache +1 -0
  1005. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/dm/dmexeqnm7oSqnpTN8pyFPra-FO9RlVld7c1OfiVGmnM.cache +1 -0
  1006. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/du/du6LZvvprR4AjeVbsCpgkgow2paNBKuymIlgk2oz7Yk.cache +1 -0
  1007. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/e-/e-ImROT8EIdvE8f6ohsFyM-Scd_Blz71vr4pDvHqzrQ.cache +0 -0
  1008. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/eP/ePl-DdQAUi5XFPsfXznXvxWZGMELrBRJB2PfgoPNIEo.cache +0 -0
  1009. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ed/edySPCZphMyQce_gPZKK2tHae0wk4xHt38EYVa0QXok.cache +1 -0
  1010. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ee/eEuVU1xSyMOQIE6e5ft2ifa2JYUTzZYqosfkae7Hmkk.cache +1 -0
  1011. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ee/eekmX_k75ktzmFAfOS_T5WHq4sxiPSwyXmzJ_6EDXk0.cache +1 -0
  1012. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ex/exDVCg8px2s9oU8Ng3yLh1mEI9CUDvnxniTSSwKk7qI.cache +1 -0
  1013. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/fv/fv0YkU4gUlaPqnoBOJxQYVzO4hTt5CeKgEey567hJDM.cache +1 -0
  1014. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/go/go8-Qjt1OkRrre3szpZGK1ltcW7XRtyGpUExVcWblS0.cache +1 -0
  1015. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/h3/h3cKhoJ_tlxjfSnXi8d9eCU7uaC8uGf34lIQowVGgYg.cache +1 -0
  1016. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/if/ifWg8CzF_pJQNSRqPNBtDp88537Sm3eL1qSYr2T0JZ0.cache +2 -0
  1017. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ir/irLLELUmJx-pU8usACB0U5rRBWKoHdoQRy-C0P3Y-r0.cache +1 -0
  1018. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/j9/j97B16ZobCwlHCmgWLOjvBMwxV8YpqcfCJ-40alB3BU.cache +2 -0
  1019. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/jr/jrBAq5zZpW1tB6WsfGn-uxM9Y1gBbFlJDkKFYoYiPZk.cache +1 -0
  1020. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/kP/kPDUD989rMQWUhrtwwzF4ixPZ_AFhT5lbgafjckvsI8.cache +1 -0
  1021. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ki/kidoJrhvNGakRsBogPFja1MtRSUpuyuQNYZkqtMQRU4.cache +0 -0
  1022. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/lP/lPVvvIFgqkMg3MzzJ4YLrt8I15BnwHPnQdd5I-w8VLw.cache +0 -0
  1023. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/m4/m4dhyunRq-Uind1bd5unwA-rlu2G4uC8pY4JfGRubiA.cache +0 -0
  1024. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache +0 -0
  1025. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/MaBzscu747pD3AimboWmAvdJU-ljDZGRNvrxgbfmqZg.cache +0 -0
  1026. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/maRh7IPZQtQrSfaUm8HhfhdTj_YHBLPJMIvtVE4ZW8E.cache +1 -0
  1027. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
  1028. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
  1029. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/oF/oFR4LgVRWsPSfgcZ6W4EyLT7BcnYuK3BBeaSl4cy2rE.cache +1 -0
  1030. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/oP/oPW8p13sUzwKMjxYG0-jZx8HaDohCTRyi-oDKh74JOA.cache +1 -0
  1031. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ox/oxhfh6f_Dg-TItnJ5SDMhVBBlA3o3ELNPcxnYQzy1o0.cache +1 -0
  1032. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/pC/pCDwOVVUkPmcyKN3-iebog0lfBhpJPRNtqCdVQwi_ps.cache +0 -0
  1033. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/pI/pIAR0T2DJoxc731z7A7cubgdGmULdrzlKqxuKjm_flw.cache +1 -0
  1034. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/q3/q3AD_JUTGIOnua_lqRQ7RD7z8PUaK5AV6pTAODraFbo.cache +1 -0
  1035. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/qY/qYpUDaRLUN3Vi0C_FqrNR5QGO80X6SaqCBLJkRut6Hk.cache +1 -0
  1036. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/qe/qeIqqQaV5akagAtl8PUz5T9rDefpuU9Co54jgHBQUW8.cache +0 -0
  1037. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/qm/qmHE7QEU5wolclFvrtf43tOTYJarEb-i42c6ht9m4HY.cache +3 -0
  1038. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/s_/s_wRPqTOjY28omUsIHBA93hmuud1MQiePMQqrdrO4ww.cache +0 -0
  1039. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/sf/sfcsEK45xZumqTE1gcc_2yIgo37Ba-VpFzeusMacnXQ.cache +1 -0
  1040. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/ts/tspTVu_uTDRLQPTjLEUPbGaBRKgSAhFwJYeWG1-a258.cache +0 -0
  1041. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/u1/u1nRuOZThzHmY1_g1WoZ4ylqVj4odtcTD6NzHxz1isE.cache +0 -0
  1042. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/uG/uGV3RZHWVB7i51h_f5Vy6_DBIlYb44UR_13caon7-yg.cache +0 -0
  1043. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/v-/v-5z8NAgmOgJu0vNVTyQtiXIs-ORcxPaHUEU4d10tXs.cache +1 -0
  1044. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/v9/V9OkwJGRpnkfZ6EsZztX6hEQM7jwtW_4qWJlubWTrM8.cache +1 -0
  1045. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/v9/v96ET90iXN8Zq8H1AZ_gfeZ07vFkbL_uTXKHAYFZCMU.cache +0 -0
  1046. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/vL/vLfnm_0qGW2wxYbSrJNo2JDSkewtJaohHwJ0q8c6PYc.cache +1 -0
  1047. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/vV/vVA0awgOSwWDRDoJ2ICIDBviV3tVpaJ9zbEBwwS0k5Y.cache +2 -0
  1048. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/wC/wC9loRKK3ywXgiG0lHlD7NCnwk0WH1wPFjEwdk674ms.cache +0 -0
  1049. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/wh/whzETExjcZCkn4msasD2aylgfhfpKPZrNxTkY-SOIDg.cache +0 -0
  1050. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/wu/wuub1kuCla39MNVitiXr3pZZLKjF7LNq7Dz1sduet0U.cache +0 -0
  1051. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/x4/x4p2nKw6chtgc_Y_lZszfk2Xkmj0mE6aicIz8LRDOAU.cache +1 -0
  1052. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -0
  1053. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/xg/xg2uAZHgmmvdj6bFd7GKD3zckwRelPpfVTjPLZwIQEA.cache +1 -0
  1054. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/xi/xi7OTBT1iAxzM5s4yhDdCgZxvnTSX_nSIJVpp2AoQBQ.cache +1 -0
  1055. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/y1/y1ngk_2OPPbuJ68zLv6nnjRVEUWcs9x1dEzBfikNAAI.cache +1 -0
  1056. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/yt/yt9ja-PNYPX4ES65GcCs5H7vc5xS9oCJz6s0CoVJtAc.cache +0 -0
  1057. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/yu/yupBqv0LYrJoFiqgqb8acBhUktFM5MIdvtpFQU-WBHo.cache +1 -0
  1058. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/z0/z0YCOJslHB8asAKUz--3fDwXUh5odTPA639UUIecR6U.cache +1 -0
  1059. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/z6/z6ZONv_5EBJET4qSgLYrqb30Mz2w9Qexso5KOfZr3Uw.cache +1 -0
  1060. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/zK/zKS_M0o9NqNIqUZQF4o604dLae8MHDJYRzfZnIex5Y0.cache +0 -0
  1061. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/zq/zqNJkrWuLypnGlSDnN-5Dt6WJ1rtTbDb1XoAUZuEIVU.cache +0 -0
  1062. data/test/dummy/tmp/cache/assets/sprockets/v4.0.0/zr/zrUCq5mEZpUMt9C31q4jU7UE5qHQ2IVQ5xJhM8fRbjI.cache +0 -0
  1063. data/test/dummy/yarn.lock +15 -0
  1064. data/test/factories/users.rb +7 -0
  1065. data/test/models/the_auth_user_test.rb +13 -0
  1066. data/test/test_helper.rb +16 -0
  1067. metadata +2156 -0
@@ -0,0 +1,6 @@
1
+ /*
2
+ Turbolinks 5.2.0
3
+ Copyright © 2018 Basecamp, LLC
4
+ */
5
+ (function(){var t=this;(function(){(function(){this.Turbolinks={supported:function(){return null!=window.history.pushState&&null!=window.requestAnimationFrame&&null!=window.addEventListener}(),visit:function(t,r){return e.controller.visit(t,r)},clearCache:function(){return e.controller.clearCache()},setProgressBarDelay:function(t){return e.controller.setProgressBarDelay(t)}}}).call(this)}).call(t);var e=t.Turbolinks;(function(){(function(){var t,r,n,o=[].slice;e.copyObject=function(t){var e,r,n;r={};for(e in t)n=t[e],r[e]=n;return r},e.closest=function(e,r){return t.call(e,r)},t=function(){var t,e;return t=document.documentElement,null!=(e=t.closest)?e:function(t){var e;for(e=this;e;){if(e.nodeType===Node.ELEMENT_NODE&&r.call(e,t))return e;e=e.parentNode}}}(),e.defer=function(t){return setTimeout(t,1)},e.throttle=function(t){var e;return e=null,function(){var r;return r=1<=arguments.length?o.call(arguments,0):[],null!=e?e:e=requestAnimationFrame(function(n){return function(){return e=null,t.apply(n,r)}}(this))}},e.dispatch=function(t,e){var r,o,i,s,a,u;return a=null!=e?e:{},u=a.target,r=a.cancelable,o=a.data,i=document.createEvent("Events"),i.initEvent(t,!0,r===!0),i.data=null!=o?o:{},i.cancelable&&!n&&(s=i.preventDefault,i.preventDefault=function(){return this.defaultPrevented||Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}}),s.call(this)}),(null!=u?u:document).dispatchEvent(i),i},n=function(){var t;return t=document.createEvent("Events"),t.initEvent("test",!0,!0),t.preventDefault(),t.defaultPrevented}(),e.match=function(t,e){return r.call(t,e)},r=function(){var t,e,r,n;return t=document.documentElement,null!=(e=null!=(r=null!=(n=t.matchesSelector)?n:t.webkitMatchesSelector)?r:t.msMatchesSelector)?e:t.mozMatchesSelector}(),e.uuid=function(){var t,e,r;for(r="",t=e=1;36>=e;t=++e)r+=9===t||14===t||19===t||24===t?"-":15===t?"4":20===t?(Math.floor(4*Math.random())+8).toString(16):Math.floor(15*Math.random()).toString(16);return r}}).call(this),function(){e.Location=function(){function t(t){var e,r;null==t&&(t=""),r=document.createElement("a"),r.href=t.toString(),this.absoluteURL=r.href,e=r.hash.length,2>e?this.requestURL=this.absoluteURL:(this.requestURL=this.absoluteURL.slice(0,-e),this.anchor=r.hash.slice(1))}var e,r,n,o;return t.wrap=function(t){return t instanceof this?t:new this(t)},t.prototype.getOrigin=function(){return this.absoluteURL.split("/",3).join("/")},t.prototype.getPath=function(){var t,e;return null!=(t=null!=(e=this.requestURL.match(/\/\/[^\/]*(\/[^?;]*)/))?e[1]:void 0)?t:"/"},t.prototype.getPathComponents=function(){return this.getPath().split("/").slice(1)},t.prototype.getLastPathComponent=function(){return this.getPathComponents().slice(-1)[0]},t.prototype.getExtension=function(){var t,e;return null!=(t=null!=(e=this.getLastPathComponent().match(/\.[^.]*$/))?e[0]:void 0)?t:""},t.prototype.isHTML=function(){return this.getExtension().match(/^(?:|\.(?:htm|html|xhtml))$/)},t.prototype.isPrefixedBy=function(t){var e;return e=r(t),this.isEqualTo(t)||o(this.absoluteURL,e)},t.prototype.isEqualTo=function(t){return this.absoluteURL===(null!=t?t.absoluteURL:void 0)},t.prototype.toCacheKey=function(){return this.requestURL},t.prototype.toJSON=function(){return this.absoluteURL},t.prototype.toString=function(){return this.absoluteURL},t.prototype.valueOf=function(){return this.absoluteURL},r=function(t){return e(t.getOrigin()+t.getPath())},e=function(t){return n(t,"/")?t:t+"/"},o=function(t,e){return t.slice(0,e.length)===e},n=function(t,e){return t.slice(-e.length)===e},t}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.HttpRequest=function(){function r(r,n,o){this.delegate=r,this.requestCanceled=t(this.requestCanceled,this),this.requestTimedOut=t(this.requestTimedOut,this),this.requestFailed=t(this.requestFailed,this),this.requestLoaded=t(this.requestLoaded,this),this.requestProgressed=t(this.requestProgressed,this),this.url=e.Location.wrap(n).requestURL,this.referrer=e.Location.wrap(o).absoluteURL,this.createXHR()}return r.NETWORK_FAILURE=0,r.TIMEOUT_FAILURE=-1,r.timeout=60,r.prototype.send=function(){var t;return this.xhr&&!this.sent?(this.notifyApplicationBeforeRequestStart(),this.setProgress(0),this.xhr.send(),this.sent=!0,"function"==typeof(t=this.delegate).requestStarted?t.requestStarted():void 0):void 0},r.prototype.cancel=function(){return this.xhr&&this.sent?this.xhr.abort():void 0},r.prototype.requestProgressed=function(t){return t.lengthComputable?this.setProgress(t.loaded/t.total):void 0},r.prototype.requestLoaded=function(){return this.endRequest(function(t){return function(){var e;return 200<=(e=t.xhr.status)&&300>e?t.delegate.requestCompletedWithResponse(t.xhr.responseText,t.xhr.getResponseHeader("Turbolinks-Location")):(t.failed=!0,t.delegate.requestFailedWithStatusCode(t.xhr.status,t.xhr.responseText))}}(this))},r.prototype.requestFailed=function(){return this.endRequest(function(t){return function(){return t.failed=!0,t.delegate.requestFailedWithStatusCode(t.constructor.NETWORK_FAILURE)}}(this))},r.prototype.requestTimedOut=function(){return this.endRequest(function(t){return function(){return t.failed=!0,t.delegate.requestFailedWithStatusCode(t.constructor.TIMEOUT_FAILURE)}}(this))},r.prototype.requestCanceled=function(){return this.endRequest()},r.prototype.notifyApplicationBeforeRequestStart=function(){return e.dispatch("turbolinks:request-start",{data:{url:this.url,xhr:this.xhr}})},r.prototype.notifyApplicationAfterRequestEnd=function(){return e.dispatch("turbolinks:request-end",{data:{url:this.url,xhr:this.xhr}})},r.prototype.createXHR=function(){return this.xhr=new XMLHttpRequest,this.xhr.open("GET",this.url,!0),this.xhr.timeout=1e3*this.constructor.timeout,this.xhr.setRequestHeader("Accept","text/html, application/xhtml+xml"),this.xhr.setRequestHeader("Turbolinks-Referrer",this.referrer),this.xhr.onprogress=this.requestProgressed,this.xhr.onload=this.requestLoaded,this.xhr.onerror=this.requestFailed,this.xhr.ontimeout=this.requestTimedOut,this.xhr.onabort=this.requestCanceled},r.prototype.endRequest=function(t){return this.xhr?(this.notifyApplicationAfterRequestEnd(),null!=t&&t.call(this),this.destroy()):void 0},r.prototype.setProgress=function(t){var e;return this.progress=t,"function"==typeof(e=this.delegate).requestProgressed?e.requestProgressed(this.progress):void 0},r.prototype.destroy=function(){var t;return this.setProgress(1),"function"==typeof(t=this.delegate).requestFinished&&t.requestFinished(),this.delegate=null,this.xhr=null},r}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.ProgressBar=function(){function e(){this.trickle=t(this.trickle,this),this.stylesheetElement=this.createStylesheetElement(),this.progressElement=this.createProgressElement()}var r;return r=300,e.defaultCSS=".turbolinks-progress-bar {\n position: fixed;\n display: block;\n top: 0;\n left: 0;\n height: 3px;\n background: #0076ff;\n z-index: 9999;\n transition: width "+r+"ms ease-out, opacity "+r/2+"ms "+r/2+"ms ease-in;\n transform: translate3d(0, 0, 0);\n}",e.prototype.show=function(){return this.visible?void 0:(this.visible=!0,this.installStylesheetElement(),this.installProgressElement(),this.startTrickling())},e.prototype.hide=function(){return this.visible&&!this.hiding?(this.hiding=!0,this.fadeProgressElement(function(t){return function(){return t.uninstallProgressElement(),t.stopTrickling(),t.visible=!1,t.hiding=!1}}(this))):void 0},e.prototype.setValue=function(t){return this.value=t,this.refresh()},e.prototype.installStylesheetElement=function(){return document.head.insertBefore(this.stylesheetElement,document.head.firstChild)},e.prototype.installProgressElement=function(){return this.progressElement.style.width=0,this.progressElement.style.opacity=1,document.documentElement.insertBefore(this.progressElement,document.body),this.refresh()},e.prototype.fadeProgressElement=function(t){return this.progressElement.style.opacity=0,setTimeout(t,1.5*r)},e.prototype.uninstallProgressElement=function(){return this.progressElement.parentNode?document.documentElement.removeChild(this.progressElement):void 0},e.prototype.startTrickling=function(){return null!=this.trickleInterval?this.trickleInterval:this.trickleInterval=setInterval(this.trickle,r)},e.prototype.stopTrickling=function(){return clearInterval(this.trickleInterval),this.trickleInterval=null},e.prototype.trickle=function(){return this.setValue(this.value+Math.random()/100)},e.prototype.refresh=function(){return requestAnimationFrame(function(t){return function(){return t.progressElement.style.width=10+90*t.value+"%"}}(this))},e.prototype.createStylesheetElement=function(){var t;return t=document.createElement("style"),t.type="text/css",t.textContent=this.constructor.defaultCSS,t},e.prototype.createProgressElement=function(){var t;return t=document.createElement("div"),t.className="turbolinks-progress-bar",t},e}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.BrowserAdapter=function(){function r(r){this.controller=r,this.showProgressBar=t(this.showProgressBar,this),this.progressBar=new e.ProgressBar}var n,o,i;return i=e.HttpRequest,n=i.NETWORK_FAILURE,o=i.TIMEOUT_FAILURE,r.prototype.visitProposedToLocationWithAction=function(t,e){return this.controller.startVisitToLocationWithAction(t,e)},r.prototype.visitStarted=function(t){return t.issueRequest(),t.changeHistory(),t.loadCachedSnapshot()},r.prototype.visitRequestStarted=function(t){return this.progressBar.setValue(0),t.hasCachedSnapshot()||"restore"!==t.action?this.showProgressBarAfterDelay():this.showProgressBar()},r.prototype.visitRequestProgressed=function(t){return this.progressBar.setValue(t.progress)},r.prototype.visitRequestCompleted=function(t){return t.loadResponse()},r.prototype.visitRequestFailedWithStatusCode=function(t,e){switch(e){case n:case o:return this.reload();default:return t.loadResponse()}},r.prototype.visitRequestFinished=function(t){return this.hideProgressBar()},r.prototype.visitCompleted=function(t){return t.followRedirect()},r.prototype.pageInvalidated=function(){return this.reload()},r.prototype.showProgressBarAfterDelay=function(){return this.progressBarTimeout=setTimeout(this.showProgressBar,this.controller.progressBarDelay)},r.prototype.showProgressBar=function(){return this.progressBar.show()},r.prototype.hideProgressBar=function(){return this.progressBar.hide(),clearTimeout(this.progressBarTimeout)},r.prototype.reload=function(){return window.location.reload()},r}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.History=function(){function r(e){this.delegate=e,this.onPageLoad=t(this.onPageLoad,this),this.onPopState=t(this.onPopState,this)}return r.prototype.start=function(){return this.started?void 0:(addEventListener("popstate",this.onPopState,!1),addEventListener("load",this.onPageLoad,!1),this.started=!0)},r.prototype.stop=function(){return this.started?(removeEventListener("popstate",this.onPopState,!1),removeEventListener("load",this.onPageLoad,!1),this.started=!1):void 0},r.prototype.push=function(t,r){return t=e.Location.wrap(t),this.update("push",t,r)},r.prototype.replace=function(t,r){return t=e.Location.wrap(t),this.update("replace",t,r)},r.prototype.onPopState=function(t){var r,n,o,i;return this.shouldHandlePopState()&&(i=null!=(n=t.state)?n.turbolinks:void 0)?(r=e.Location.wrap(window.location),o=i.restorationIdentifier,this.delegate.historyPoppedToLocationWithRestorationIdentifier(r,o)):void 0},r.prototype.onPageLoad=function(t){return e.defer(function(t){return function(){return t.pageLoaded=!0}}(this))},r.prototype.shouldHandlePopState=function(){return this.pageIsLoaded()},r.prototype.pageIsLoaded=function(){return this.pageLoaded||"complete"===document.readyState},r.prototype.update=function(t,e,r){var n;return n={turbolinks:{restorationIdentifier:r}},history[t+"State"](n,null,e)},r}()}.call(this),function(){e.HeadDetails=function(){function t(t){var e,r,n,s,a,u;for(this.elements={},n=0,a=t.length;a>n;n++)u=t[n],u.nodeType===Node.ELEMENT_NODE&&(s=u.outerHTML,r=null!=(e=this.elements)[s]?e[s]:e[s]={type:i(u),tracked:o(u),elements:[]},r.elements.push(u))}var e,r,n,o,i;return t.fromHeadElement=function(t){var e;return new this(null!=(e=null!=t?t.childNodes:void 0)?e:[])},t.prototype.hasElementWithKey=function(t){return t in this.elements},t.prototype.getTrackedElementSignature=function(){var t,e;return function(){var r,n;r=this.elements,n=[];for(t in r)e=r[t].tracked,e&&n.push(t);return n}.call(this).join("")},t.prototype.getScriptElementsNotInDetails=function(t){return this.getElementsMatchingTypeNotInDetails("script",t)},t.prototype.getStylesheetElementsNotInDetails=function(t){return this.getElementsMatchingTypeNotInDetails("stylesheet",t)},t.prototype.getElementsMatchingTypeNotInDetails=function(t,e){var r,n,o,i,s,a;o=this.elements,s=[];for(n in o)i=o[n],a=i.type,r=i.elements,a!==t||e.hasElementWithKey(n)||s.push(r[0]);return s},t.prototype.getProvisionalElements=function(){var t,e,r,n,o,i,s;r=[],n=this.elements;for(e in n)o=n[e],s=o.type,i=o.tracked,t=o.elements,null!=s||i?t.length>1&&r.push.apply(r,t.slice(1)):r.push.apply(r,t);return r},t.prototype.getMetaValue=function(t){var e;return null!=(e=this.findMetaElementByName(t))?e.getAttribute("content"):void 0},t.prototype.findMetaElementByName=function(t){var r,n,o,i;r=void 0,i=this.elements;for(o in i)n=i[o].elements,e(n[0],t)&&(r=n[0]);return r},i=function(t){return r(t)?"script":n(t)?"stylesheet":void 0},o=function(t){return"reload"===t.getAttribute("data-turbolinks-track")},r=function(t){var e;return e=t.tagName.toLowerCase(),"script"===e},n=function(t){var e;return e=t.tagName.toLowerCase(),"style"===e||"link"===e&&"stylesheet"===t.getAttribute("rel")},e=function(t,e){var r;return r=t.tagName.toLowerCase(),"meta"===r&&t.getAttribute("name")===e},t}()}.call(this),function(){e.Snapshot=function(){function t(t,e){this.headDetails=t,this.bodyElement=e}return t.wrap=function(t){return t instanceof this?t:"string"==typeof t?this.fromHTMLString(t):this.fromHTMLElement(t)},t.fromHTMLString=function(t){var e;return e=document.createElement("html"),e.innerHTML=t,this.fromHTMLElement(e)},t.fromHTMLElement=function(t){var r,n,o,i;return o=t.querySelector("head"),r=null!=(i=t.querySelector("body"))?i:document.createElement("body"),n=e.HeadDetails.fromHeadElement(o),new this(n,r)},t.prototype.clone=function(){return new this.constructor(this.headDetails,this.bodyElement.cloneNode(!0))},t.prototype.getRootLocation=function(){var t,r;return r=null!=(t=this.getSetting("root"))?t:"/",new e.Location(r)},t.prototype.getCacheControlValue=function(){return this.getSetting("cache-control")},t.prototype.getElementForAnchor=function(t){try{return this.bodyElement.querySelector("[id='"+t+"'], a[name='"+t+"']")}catch(e){}},t.prototype.getPermanentElements=function(){return this.bodyElement.querySelectorAll("[id][data-turbolinks-permanent]")},t.prototype.getPermanentElementById=function(t){return this.bodyElement.querySelector("#"+t+"[data-turbolinks-permanent]")},t.prototype.getPermanentElementsPresentInSnapshot=function(t){var e,r,n,o,i;for(o=this.getPermanentElements(),i=[],r=0,n=o.length;n>r;r++)e=o[r],t.getPermanentElementById(e.id)&&i.push(e);return i},t.prototype.findFirstAutofocusableElement=function(){return this.bodyElement.querySelector("[autofocus]")},t.prototype.hasAnchor=function(t){return null!=this.getElementForAnchor(t)},t.prototype.isPreviewable=function(){return"no-preview"!==this.getCacheControlValue()},t.prototype.isCacheable=function(){return"no-cache"!==this.getCacheControlValue()},t.prototype.isVisitable=function(){return"reload"!==this.getSetting("visit-control")},t.prototype.getSetting=function(t){return this.headDetails.getMetaValue("turbolinks-"+t)},t}()}.call(this),function(){var t=[].slice;e.Renderer=function(){function e(){}var r;return e.render=function(){var e,r,n,o;return n=arguments[0],r=arguments[1],e=3<=arguments.length?t.call(arguments,2):[],o=function(t,e,r){r.prototype=t.prototype;var n=new r,o=t.apply(n,e);return Object(o)===o?o:n}(this,e,function(){}),o.delegate=n,o.render(r),o},e.prototype.renderView=function(t){return this.delegate.viewWillRender(this.newBody),t(),this.delegate.viewRendered(this.newBody)},e.prototype.invalidateView=function(){return this.delegate.viewInvalidated()},e.prototype.createScriptElement=function(t){var e;return"false"===t.getAttribute("data-turbolinks-eval")?t:(e=document.createElement("script"),e.textContent=t.textContent,e.async=!1,r(e,t),e)},r=function(t,e){var r,n,o,i,s,a,u;for(i=e.attributes,a=[],r=0,n=i.length;n>r;r++)s=i[r],o=s.name,u=s.value,a.push(t.setAttribute(o,u));return a},e}()}.call(this),function(){var t,r,n=function(t,e){function r(){this.constructor=t}for(var n in e)o.call(e,n)&&(t[n]=e[n]);return r.prototype=e.prototype,t.prototype=new r,t.__super__=e.prototype,t},o={}.hasOwnProperty;e.SnapshotRenderer=function(e){function o(t,e,r){this.currentSnapshot=t,this.newSnapshot=e,this.isPreview=r,this.currentHeadDetails=this.currentSnapshot.headDetails,this.newHeadDetails=this.newSnapshot.headDetails,this.currentBody=this.currentSnapshot.bodyElement,this.newBody=this.newSnapshot.bodyElement}return n(o,e),o.prototype.render=function(t){return this.shouldRender()?(this.mergeHead(),this.renderView(function(e){return function(){return e.replaceBody(),e.isPreview||e.focusFirstAutofocusableElement(),t()}}(this))):this.invalidateView()},o.prototype.mergeHead=function(){return this.copyNewHeadStylesheetElements(),this.copyNewHeadScriptElements(),this.removeCurrentHeadProvisionalElements(),this.copyNewHeadProvisionalElements()},o.prototype.replaceBody=function(){var t;return t=this.relocateCurrentBodyPermanentElements(),this.activateNewBodyScriptElements(),this.assignNewBody(),this.replacePlaceholderElementsWithClonedPermanentElements(t)},o.prototype.shouldRender=function(){return this.newSnapshot.isVisitable()&&this.trackedElementsAreIdentical()},o.prototype.trackedElementsAreIdentical=function(){return this.currentHeadDetails.getTrackedElementSignature()===this.newHeadDetails.getTrackedElementSignature()},o.prototype.copyNewHeadStylesheetElements=function(){var t,e,r,n,o;for(n=this.getNewHeadStylesheetElements(),o=[],e=0,r=n.length;r>e;e++)t=n[e],o.push(document.head.appendChild(t));return o},o.prototype.copyNewHeadScriptElements=function(){var t,e,r,n,o;for(n=this.getNewHeadScriptElements(),o=[],e=0,r=n.length;r>e;e++)t=n[e],o.push(document.head.appendChild(this.createScriptElement(t)));return o},o.prototype.removeCurrentHeadProvisionalElements=function(){var t,e,r,n,o;for(n=this.getCurrentHeadProvisionalElements(),o=[],e=0,r=n.length;r>e;e++)t=n[e],o.push(document.head.removeChild(t));return o},o.prototype.copyNewHeadProvisionalElements=function(){var t,e,r,n,o;for(n=this.getNewHeadProvisionalElements(),o=[],e=0,r=n.length;r>e;e++)t=n[e],o.push(document.head.appendChild(t));return o},o.prototype.relocateCurrentBodyPermanentElements=function(){var e,n,o,i,s,a,u;for(a=this.getCurrentBodyPermanentElements(),u=[],e=0,n=a.length;n>e;e++)i=a[e],s=t(i),o=this.newSnapshot.getPermanentElementById(i.id),r(i,s.element),r(o,i),u.push(s);return u},o.prototype.replacePlaceholderElementsWithClonedPermanentElements=function(t){var e,n,o,i,s,a,u;for(u=[],o=0,i=t.length;i>o;o++)a=t[o],n=a.element,s=a.permanentElement,e=s.cloneNode(!0),u.push(r(n,e));return u},o.prototype.activateNewBodyScriptElements=function(){var t,e,n,o,i,s;for(i=this.getNewBodyScriptElements(),s=[],e=0,o=i.length;o>e;e++)n=i[e],t=this.createScriptElement(n),s.push(r(n,t));return s},o.prototype.assignNewBody=function(){return document.body=this.newBody},o.prototype.focusFirstAutofocusableElement=function(){var t;return null!=(t=this.newSnapshot.findFirstAutofocusableElement())?t.focus():void 0},o.prototype.getNewHeadStylesheetElements=function(){return this.newHeadDetails.getStylesheetElementsNotInDetails(this.currentHeadDetails)},o.prototype.getNewHeadScriptElements=function(){return this.newHeadDetails.getScriptElementsNotInDetails(this.currentHeadDetails)},o.prototype.getCurrentHeadProvisionalElements=function(){return this.currentHeadDetails.getProvisionalElements()},o.prototype.getNewHeadProvisionalElements=function(){return this.newHeadDetails.getProvisionalElements()},o.prototype.getCurrentBodyPermanentElements=function(){return this.currentSnapshot.getPermanentElementsPresentInSnapshot(this.newSnapshot)},o.prototype.getNewBodyScriptElements=function(){return this.newBody.querySelectorAll("script")},o}(e.Renderer),t=function(t){var e;return e=document.createElement("meta"),e.setAttribute("name","turbolinks-permanent-placeholder"),e.setAttribute("content",t.id),{element:e,permanentElement:t}},r=function(t,e){var r;return(r=t.parentNode)?r.replaceChild(e,t):void 0}}.call(this),function(){var t=function(t,e){function n(){this.constructor=t}for(var o in e)r.call(e,o)&&(t[o]=e[o]);return n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype,t},r={}.hasOwnProperty;e.ErrorRenderer=function(e){function r(t){var e;e=document.createElement("html"),e.innerHTML=t,this.newHead=e.querySelector("head"),this.newBody=e.querySelector("body")}return t(r,e),r.prototype.render=function(t){return this.renderView(function(e){return function(){return e.replaceHeadAndBody(),e.activateBodyScriptElements(),t()}}(this))},r.prototype.replaceHeadAndBody=function(){var t,e;return e=document.head,t=document.body,e.parentNode.replaceChild(this.newHead,e),t.parentNode.replaceChild(this.newBody,t)},r.prototype.activateBodyScriptElements=function(){var t,e,r,n,o,i;for(n=this.getScriptElements(),i=[],e=0,r=n.length;r>e;e++)o=n[e],t=this.createScriptElement(o),i.push(o.parentNode.replaceChild(t,o));return i},r.prototype.getScriptElements=function(){return document.documentElement.querySelectorAll("script")},r}(e.Renderer)}.call(this),function(){e.View=function(){function t(t){this.delegate=t,this.htmlElement=document.documentElement}return t.prototype.getRootLocation=function(){return this.getSnapshot().getRootLocation()},t.prototype.getElementForAnchor=function(t){return this.getSnapshot().getElementForAnchor(t)},t.prototype.getSnapshot=function(){return e.Snapshot.fromHTMLElement(this.htmlElement)},t.prototype.render=function(t,e){var r,n,o;return o=t.snapshot,r=t.error,n=t.isPreview,this.markAsPreview(n),null!=o?this.renderSnapshot(o,n,e):this.renderError(r,e)},t.prototype.markAsPreview=function(t){return t?this.htmlElement.setAttribute("data-turbolinks-preview",""):this.htmlElement.removeAttribute("data-turbolinks-preview")},t.prototype.renderSnapshot=function(t,r,n){return e.SnapshotRenderer.render(this.delegate,n,this.getSnapshot(),e.Snapshot.wrap(t),r)},t.prototype.renderError=function(t,r){return e.ErrorRenderer.render(this.delegate,r,t)},t}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.ScrollManager=function(){function r(r){this.delegate=r,this.onScroll=t(this.onScroll,this),this.onScroll=e.throttle(this.onScroll)}return r.prototype.start=function(){return this.started?void 0:(addEventListener("scroll",this.onScroll,!1),this.onScroll(),this.started=!0)},r.prototype.stop=function(){return this.started?(removeEventListener("scroll",this.onScroll,!1),this.started=!1):void 0},r.prototype.scrollToElement=function(t){return t.scrollIntoView()},r.prototype.scrollToPosition=function(t){var e,r;return e=t.x,r=t.y,window.scrollTo(e,r)},r.prototype.onScroll=function(t){return this.updatePosition({x:window.pageXOffset,y:window.pageYOffset})},r.prototype.updatePosition=function(t){var e;return this.position=t,null!=(e=this.delegate)?e.scrollPositionChanged(this.position):void 0},r}()}.call(this),function(){e.SnapshotCache=function(){function t(t){this.size=t,this.keys=[],this.snapshots={}}var r;return t.prototype.has=function(t){var e;return e=r(t),e in this.snapshots},t.prototype.get=function(t){var e;if(this.has(t))return e=this.read(t),this.touch(t),e},t.prototype.put=function(t,e){return this.write(t,e),this.touch(t),e},t.prototype.read=function(t){var e;return e=r(t),this.snapshots[e]},t.prototype.write=function(t,e){var n;return n=r(t),this.snapshots[n]=e},t.prototype.touch=function(t){var e,n;return n=r(t),e=this.keys.indexOf(n),e>-1&&this.keys.splice(e,1),this.keys.unshift(n),this.trim()},t.prototype.trim=function(){var t,e,r,n,o;for(n=this.keys.splice(this.size),o=[],t=0,r=n.length;r>t;t++)e=n[t],o.push(delete this.snapshots[e]);return o},r=function(t){return e.Location.wrap(t).toCacheKey()},t}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.Visit=function(){function r(r,n,o){this.controller=r,this.action=o,this.performScroll=t(this.performScroll,this),this.identifier=e.uuid(),this.location=e.Location.wrap(n),this.adapter=this.controller.adapter,this.state="initialized",this.timingMetrics={}}var n;return r.prototype.start=function(){return"initialized"===this.state?(this.recordTimingMetric("visitStart"),this.state="started",this.adapter.visitStarted(this)):void 0},r.prototype.cancel=function(){var t;return"started"===this.state?(null!=(t=this.request)&&t.cancel(),this.cancelRender(),this.state="canceled"):void 0},r.prototype.complete=function(){var t;return"started"===this.state?(this.recordTimingMetric("visitEnd"),this.state="completed","function"==typeof(t=this.adapter).visitCompleted&&t.visitCompleted(this),this.controller.visitCompleted(this)):void 0},r.prototype.fail=function(){var t;return"started"===this.state?(this.state="failed","function"==typeof(t=this.adapter).visitFailed?t.visitFailed(this):void 0):void 0},r.prototype.changeHistory=function(){var t,e;return this.historyChanged?void 0:(t=this.location.isEqualTo(this.referrer)?"replace":this.action,e=n(t),this.controller[e](this.location,this.restorationIdentifier),this.historyChanged=!0)},r.prototype.issueRequest=function(){return this.shouldIssueRequest()&&null==this.request?(this.progress=0,this.request=new e.HttpRequest(this,this.location,this.referrer),this.request.send()):void 0},r.prototype.getCachedSnapshot=function(){var t;return!(t=this.controller.getCachedSnapshotForLocation(this.location))||null!=this.location.anchor&&!t.hasAnchor(this.location.anchor)||"restore"!==this.action&&!t.isPreviewable()?void 0:t},r.prototype.hasCachedSnapshot=function(){return null!=this.getCachedSnapshot()},r.prototype.loadCachedSnapshot=function(){var t,e;return(e=this.getCachedSnapshot())?(t=this.shouldIssueRequest(),this.render(function(){var r;return this.cacheSnapshot(),this.controller.render({snapshot:e,isPreview:t},this.performScroll),"function"==typeof(r=this.adapter).visitRendered&&r.visitRendered(this),t?void 0:this.complete()})):void 0},r.prototype.loadResponse=function(){return null!=this.response?this.render(function(){var t,e;return this.cacheSnapshot(),this.request.failed?(this.controller.render({error:this.response},this.performScroll),"function"==typeof(t=this.adapter).visitRendered&&t.visitRendered(this),this.fail()):(this.controller.render({snapshot:this.response},this.performScroll),"function"==typeof(e=this.adapter).visitRendered&&e.visitRendered(this),this.complete())}):void 0},r.prototype.followRedirect=function(){return this.redirectedToLocation&&!this.followedRedirect?(this.location=this.redirectedToLocation,this.controller.replaceHistoryWithLocationAndRestorationIdentifier(this.redirectedToLocation,this.restorationIdentifier),this.followedRedirect=!0):void 0},r.prototype.requestStarted=function(){var t;return this.recordTimingMetric("requestStart"),"function"==typeof(t=this.adapter).visitRequestStarted?t.visitRequestStarted(this):void 0},r.prototype.requestProgressed=function(t){var e;return this.progress=t,"function"==typeof(e=this.adapter).visitRequestProgressed?e.visitRequestProgressed(this):void 0},r.prototype.requestCompletedWithResponse=function(t,r){return this.response=t,null!=r&&(this.redirectedToLocation=e.Location.wrap(r)),this.adapter.visitRequestCompleted(this)},r.prototype.requestFailedWithStatusCode=function(t,e){return this.response=e,this.adapter.visitRequestFailedWithStatusCode(this,t)},r.prototype.requestFinished=function(){var t;return this.recordTimingMetric("requestEnd"),"function"==typeof(t=this.adapter).visitRequestFinished?t.visitRequestFinished(this):void 0},r.prototype.performScroll=function(){return this.scrolled?void 0:("restore"===this.action?this.scrollToRestoredPosition()||this.scrollToTop():this.scrollToAnchor()||this.scrollToTop(),this.scrolled=!0)},r.prototype.scrollToRestoredPosition=function(){var t,e;return t=null!=(e=this.restorationData)?e.scrollPosition:void 0,null!=t?(this.controller.scrollToPosition(t),!0):void 0},r.prototype.scrollToAnchor=function(){return null!=this.location.anchor?(this.controller.scrollToAnchor(this.location.anchor),!0):void 0},r.prototype.scrollToTop=function(){return this.controller.scrollToPosition({x:0,y:0})},r.prototype.recordTimingMetric=function(t){var e;return null!=(e=this.timingMetrics)[t]?e[t]:e[t]=(new Date).getTime()},r.prototype.getTimingMetrics=function(){return e.copyObject(this.timingMetrics)},n=function(t){switch(t){case"replace":return"replaceHistoryWithLocationAndRestorationIdentifier";case"advance":case"restore":return"pushHistoryWithLocationAndRestorationIdentifier"}},r.prototype.shouldIssueRequest=function(){return"restore"===this.action?!this.hasCachedSnapshot():!0},r.prototype.cacheSnapshot=function(){return this.snapshotCached?void 0:(this.controller.cacheSnapshot(),this.snapshotCached=!0)},r.prototype.render=function(t){return this.cancelRender(),this.frame=requestAnimationFrame(function(e){return function(){return e.frame=null,t.call(e)}}(this))},r.prototype.cancelRender=function(){return this.frame?cancelAnimationFrame(this.frame):void 0},r}()}.call(this),function(){var t=function(t,e){return function(){return t.apply(e,arguments)}};e.Controller=function(){function r(){this.clickBubbled=t(this.clickBubbled,this),this.clickCaptured=t(this.clickCaptured,this),this.pageLoaded=t(this.pageLoaded,this),this.history=new e.History(this),this.view=new e.View(this),this.scrollManager=new e.ScrollManager(this),this.restorationData={},this.clearCache(),this.setProgressBarDelay(500)}return r.prototype.start=function(){return e.supported&&!this.started?(addEventListener("click",this.clickCaptured,!0),addEventListener("DOMContentLoaded",this.pageLoaded,!1),this.scrollManager.start(),this.startHistory(),this.started=!0,this.enabled=!0):void 0},r.prototype.disable=function(){return this.enabled=!1},r.prototype.stop=function(){return this.started?(removeEventListener("click",this.clickCaptured,!0),removeEventListener("DOMContentLoaded",this.pageLoaded,!1),this.scrollManager.stop(),this.stopHistory(),this.started=!1):void 0},r.prototype.clearCache=function(){return this.cache=new e.SnapshotCache(10)},r.prototype.visit=function(t,r){var n,o;return null==r&&(r={}),t=e.Location.wrap(t),this.applicationAllowsVisitingLocation(t)?this.locationIsVisitable(t)?(n=null!=(o=r.action)?o:"advance",this.adapter.visitProposedToLocationWithAction(t,n)):window.location=t:void 0},r.prototype.startVisitToLocationWithAction=function(t,r,n){var o;return e.supported?(o=this.getRestorationDataForIdentifier(n),this.startVisit(t,r,{restorationData:o})):window.location=t},r.prototype.setProgressBarDelay=function(t){return this.progressBarDelay=t},r.prototype.startHistory=function(){return this.location=e.Location.wrap(window.location),this.restorationIdentifier=e.uuid(),this.history.start(),this.history.replace(this.location,this.restorationIdentifier)},r.prototype.stopHistory=function(){return this.history.stop()},r.prototype.pushHistoryWithLocationAndRestorationIdentifier=function(t,r){return this.restorationIdentifier=r,this.location=e.Location.wrap(t),this.history.push(this.location,this.restorationIdentifier)},r.prototype.replaceHistoryWithLocationAndRestorationIdentifier=function(t,r){return this.restorationIdentifier=r,this.location=e.Location.wrap(t),this.history.replace(this.location,this.restorationIdentifier)},r.prototype.historyPoppedToLocationWithRestorationIdentifier=function(t,r){var n;return this.restorationIdentifier=r,this.enabled?(n=this.getRestorationDataForIdentifier(this.restorationIdentifier),this.startVisit(t,"restore",{restorationIdentifier:this.restorationIdentifier,restorationData:n,historyChanged:!0}),this.location=e.Location.wrap(t)):this.adapter.pageInvalidated()},r.prototype.getCachedSnapshotForLocation=function(t){var e;return null!=(e=this.cache.get(t))?e.clone():void 0},r.prototype.shouldCacheSnapshot=function(){return this.view.getSnapshot().isCacheable();
6
+ },r.prototype.cacheSnapshot=function(){var t,r;return this.shouldCacheSnapshot()?(this.notifyApplicationBeforeCachingSnapshot(),r=this.view.getSnapshot(),t=this.lastRenderedLocation,e.defer(function(e){return function(){return e.cache.put(t,r.clone())}}(this))):void 0},r.prototype.scrollToAnchor=function(t){var e;return(e=this.view.getElementForAnchor(t))?this.scrollToElement(e):this.scrollToPosition({x:0,y:0})},r.prototype.scrollToElement=function(t){return this.scrollManager.scrollToElement(t)},r.prototype.scrollToPosition=function(t){return this.scrollManager.scrollToPosition(t)},r.prototype.scrollPositionChanged=function(t){var e;return e=this.getCurrentRestorationData(),e.scrollPosition=t},r.prototype.render=function(t,e){return this.view.render(t,e)},r.prototype.viewInvalidated=function(){return this.adapter.pageInvalidated()},r.prototype.viewWillRender=function(t){return this.notifyApplicationBeforeRender(t)},r.prototype.viewRendered=function(){return this.lastRenderedLocation=this.currentVisit.location,this.notifyApplicationAfterRender()},r.prototype.pageLoaded=function(){return this.lastRenderedLocation=this.location,this.notifyApplicationAfterPageLoad()},r.prototype.clickCaptured=function(){return removeEventListener("click",this.clickBubbled,!1),addEventListener("click",this.clickBubbled,!1)},r.prototype.clickBubbled=function(t){var e,r,n;return this.enabled&&this.clickEventIsSignificant(t)&&(r=this.getVisitableLinkForNode(t.target))&&(n=this.getVisitableLocationForLink(r))&&this.applicationAllowsFollowingLinkToLocation(r,n)?(t.preventDefault(),e=this.getActionForLink(r),this.visit(n,{action:e})):void 0},r.prototype.applicationAllowsFollowingLinkToLocation=function(t,e){var r;return r=this.notifyApplicationAfterClickingLinkToLocation(t,e),!r.defaultPrevented},r.prototype.applicationAllowsVisitingLocation=function(t){var e;return e=this.notifyApplicationBeforeVisitingLocation(t),!e.defaultPrevented},r.prototype.notifyApplicationAfterClickingLinkToLocation=function(t,r){return e.dispatch("turbolinks:click",{target:t,data:{url:r.absoluteURL},cancelable:!0})},r.prototype.notifyApplicationBeforeVisitingLocation=function(t){return e.dispatch("turbolinks:before-visit",{data:{url:t.absoluteURL},cancelable:!0})},r.prototype.notifyApplicationAfterVisitingLocation=function(t){return e.dispatch("turbolinks:visit",{data:{url:t.absoluteURL}})},r.prototype.notifyApplicationBeforeCachingSnapshot=function(){return e.dispatch("turbolinks:before-cache")},r.prototype.notifyApplicationBeforeRender=function(t){return e.dispatch("turbolinks:before-render",{data:{newBody:t}})},r.prototype.notifyApplicationAfterRender=function(){return e.dispatch("turbolinks:render")},r.prototype.notifyApplicationAfterPageLoad=function(t){return null==t&&(t={}),e.dispatch("turbolinks:load",{data:{url:this.location.absoluteURL,timing:t}})},r.prototype.startVisit=function(t,e,r){var n;return null!=(n=this.currentVisit)&&n.cancel(),this.currentVisit=this.createVisit(t,e,r),this.currentVisit.start(),this.notifyApplicationAfterVisitingLocation(t)},r.prototype.createVisit=function(t,r,n){var o,i,s,a,u;return i=null!=n?n:{},a=i.restorationIdentifier,s=i.restorationData,o=i.historyChanged,u=new e.Visit(this,t,r),u.restorationIdentifier=null!=a?a:e.uuid(),u.restorationData=e.copyObject(s),u.historyChanged=o,u.referrer=this.location,u},r.prototype.visitCompleted=function(t){return this.notifyApplicationAfterPageLoad(t.getTimingMetrics())},r.prototype.clickEventIsSignificant=function(t){return!(t.defaultPrevented||t.target.isContentEditable||t.which>1||t.altKey||t.ctrlKey||t.metaKey||t.shiftKey)},r.prototype.getVisitableLinkForNode=function(t){return this.nodeIsVisitable(t)?e.closest(t,"a[href]:not([target]):not([download])"):void 0},r.prototype.getVisitableLocationForLink=function(t){var r;return r=new e.Location(t.getAttribute("href")),this.locationIsVisitable(r)?r:void 0},r.prototype.getActionForLink=function(t){var e;return null!=(e=t.getAttribute("data-turbolinks-action"))?e:"advance"},r.prototype.nodeIsVisitable=function(t){var r;return(r=e.closest(t,"[data-turbolinks]"))?"false"!==r.getAttribute("data-turbolinks"):!0},r.prototype.locationIsVisitable=function(t){return t.isPrefixedBy(this.view.getRootLocation())&&t.isHTML()},r.prototype.getCurrentRestorationData=function(){return this.getRestorationDataForIdentifier(this.restorationIdentifier)},r.prototype.getRestorationDataForIdentifier=function(t){var e;return null!=(e=this.restorationData)[t]?e[t]:e[t]={}},r}()}.call(this),function(){!function(){var t,e;if((t=e=document.currentScript)&&!e.hasAttribute("data-turbolinks-suppress-warning"))for(;t=t.parentNode;)if(t===document.body)return console.warn("You are loading Turbolinks from a <script> element inside the <body> element. This is probably not what you meant to do!\n\nLoad your application\u2019s JavaScript bundle inside the <head> element instead. <script> elements in <body> are evaluated with each page change.\n\nFor more information, see: https://github.com/turbolinks/turbolinks#working-with-script-elements\n\n\u2014\u2014\nSuppress this warning by adding a `data-turbolinks-suppress-warning` attribute to: %s",e.outerHTML)}()}.call(this),function(){var t,r,n;e.start=function(){return r()?(null==e.controller&&(e.controller=t()),e.controller.start()):void 0},r=function(){return null==window.Turbolinks&&(window.Turbolinks=e),n()},t=function(){var t;return t=new e.Controller,t.adapter=new e.BrowserAdapter(t),t},n=function(){return window.Turbolinks===e},n()&&e.start()}.call(this)}).call(this),"object"==typeof module&&module.exports?module.exports=e:"function"==typeof define&&define.amd&&define(e)}).call(this);
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "turbolinks",
3
+ "version": "5.2.0",
4
+ "description": "Turbolinks makes navigating your web application faster",
5
+ "main": "dist/turbolinks.js",
6
+ "files": [
7
+ "dist",
8
+ "src"
9
+ ],
10
+ "directories": {
11
+ "test": "test"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/turbolinks/turbolinks.git"
16
+ },
17
+ "keywords": [
18
+ "turbolinks",
19
+ "browser",
20
+ "pushstate"
21
+ ],
22
+ "author": "javan, packagethief, sstephenson",
23
+ "license": "MIT",
24
+ "bugs": {
25
+ "url": "https://github.com/turbolinks/turbolinks/issues"
26
+ },
27
+ "homepage": "https://github.com/turbolinks/turbolinks#readme"
28
+ }
@@ -0,0 +1,4 @@
1
+ /*
2
+ Turbolinks <%= depend_on_asset("./VERSION").to_s.strip %>
3
+ Copyright © <%= Time.now.year %> Basecamp, LLC
4
+ */
@@ -0,0 +1,60 @@
1
+ #= require ./http_request
2
+ #= require ./progress_bar
3
+
4
+ class Turbolinks.BrowserAdapter
5
+ {NETWORK_FAILURE, TIMEOUT_FAILURE} = Turbolinks.HttpRequest
6
+
7
+ constructor: (@controller) ->
8
+ @progressBar = new Turbolinks.ProgressBar
9
+
10
+ visitProposedToLocationWithAction: (location, action) ->
11
+ @controller.startVisitToLocationWithAction(location, action)
12
+
13
+ visitStarted: (visit) ->
14
+ visit.issueRequest()
15
+ visit.changeHistory()
16
+ visit.loadCachedSnapshot()
17
+
18
+ visitRequestStarted: (visit) ->
19
+ @progressBar.setValue(0)
20
+ if visit.hasCachedSnapshot() or visit.action isnt "restore"
21
+ @showProgressBarAfterDelay()
22
+ else
23
+ @showProgressBar()
24
+
25
+ visitRequestProgressed: (visit) ->
26
+ @progressBar.setValue(visit.progress)
27
+
28
+ visitRequestCompleted: (visit) ->
29
+ visit.loadResponse()
30
+
31
+ visitRequestFailedWithStatusCode: (visit, statusCode) ->
32
+ switch statusCode
33
+ when NETWORK_FAILURE, TIMEOUT_FAILURE
34
+ @reload()
35
+ else
36
+ visit.loadResponse()
37
+
38
+ visitRequestFinished: (visit) ->
39
+ @hideProgressBar()
40
+
41
+ visitCompleted: (visit) ->
42
+ visit.followRedirect()
43
+
44
+ pageInvalidated: ->
45
+ @reload()
46
+
47
+ # Private
48
+
49
+ showProgressBarAfterDelay: ->
50
+ @progressBarTimeout = setTimeout(@showProgressBar, @controller.progressBarDelay)
51
+
52
+ showProgressBar: =>
53
+ @progressBar.show()
54
+
55
+ hideProgressBar: ->
56
+ @progressBar.hide()
57
+ clearTimeout(@progressBarTimeout)
58
+
59
+ reload: ->
60
+ window.location.reload()
@@ -0,0 +1,30 @@
1
+ {defer, dispatch} = Turbolinks
2
+
3
+ handleEvent = (eventName, handler) ->
4
+ document.addEventListener(eventName, handler, false)
5
+
6
+ translateEvent = ({from, to}) ->
7
+ handler = (event) ->
8
+ event = dispatch(to, target: event.target, cancelable: event.cancelable, data: event.data)
9
+ event.preventDefault() if event.defaultPrevented
10
+ handleEvent(from, handler)
11
+
12
+ translateEvent from: "turbolinks:click", to: "page:before-change"
13
+ translateEvent from: "turbolinks:request-start", to: "page:fetch"
14
+ translateEvent from: "turbolinks:request-end", to: "page:receive"
15
+ translateEvent from: "turbolinks:before-cache", to: "page:before-unload"
16
+ translateEvent from: "turbolinks:render", to: "page:update"
17
+ translateEvent from: "turbolinks:load", to: "page:change"
18
+ translateEvent from: "turbolinks:load", to: "page:update"
19
+
20
+ loaded = false
21
+ handleEvent "DOMContentLoaded", ->
22
+ defer ->
23
+ loaded = true
24
+ handleEvent "turbolinks:load", ->
25
+ if loaded
26
+ dispatch("page:load")
27
+
28
+ jQuery?(document).on "ajaxSuccess", (event, xhr, settings) ->
29
+ if jQuery.trim(xhr.responseText).length > 0
30
+ dispatch("page:update")
@@ -0,0 +1,244 @@
1
+ #= require ./location
2
+ #= require ./browser_adapter
3
+ #= require ./history
4
+ #= require ./view
5
+ #= require ./scroll_manager
6
+ #= require ./snapshot_cache
7
+ #= require ./visit
8
+
9
+ class Turbolinks.Controller
10
+ constructor: ->
11
+ @history = new Turbolinks.History this
12
+ @view = new Turbolinks.View this
13
+ @scrollManager = new Turbolinks.ScrollManager this
14
+ @restorationData = {}
15
+ @clearCache()
16
+ @setProgressBarDelay(500)
17
+
18
+ start: ->
19
+ if Turbolinks.supported and not @started
20
+ addEventListener("click", @clickCaptured, true)
21
+ addEventListener("DOMContentLoaded", @pageLoaded, false)
22
+ @scrollManager.start()
23
+ @startHistory()
24
+ @started = true
25
+ @enabled = true
26
+
27
+ disable: ->
28
+ @enabled = false
29
+
30
+ stop: ->
31
+ if @started
32
+ removeEventListener("click", @clickCaptured, true)
33
+ removeEventListener("DOMContentLoaded", @pageLoaded, false)
34
+ @scrollManager.stop()
35
+ @stopHistory()
36
+ @started = false
37
+
38
+ clearCache: ->
39
+ @cache = new Turbolinks.SnapshotCache 10
40
+
41
+ visit: (location, options = {}) ->
42
+ location = Turbolinks.Location.wrap(location)
43
+ if @applicationAllowsVisitingLocation(location)
44
+ if @locationIsVisitable(location)
45
+ action = options.action ? "advance"
46
+ @adapter.visitProposedToLocationWithAction(location, action)
47
+ else
48
+ window.location = location
49
+
50
+ startVisitToLocationWithAction: (location, action, restorationIdentifier) ->
51
+ if Turbolinks.supported
52
+ restorationData = @getRestorationDataForIdentifier(restorationIdentifier)
53
+ @startVisit(location, action, {restorationData})
54
+ else
55
+ window.location = location
56
+
57
+ setProgressBarDelay: (delay) ->
58
+ @progressBarDelay = delay
59
+
60
+ # History
61
+
62
+ startHistory: ->
63
+ @location = Turbolinks.Location.wrap(window.location)
64
+ @restorationIdentifier = Turbolinks.uuid()
65
+ @history.start()
66
+ @history.replace(@location, @restorationIdentifier)
67
+
68
+ stopHistory: ->
69
+ @history.stop()
70
+
71
+ pushHistoryWithLocationAndRestorationIdentifier: (location, @restorationIdentifier) ->
72
+ @location = Turbolinks.Location.wrap(location)
73
+ @history.push(@location, @restorationIdentifier)
74
+
75
+ replaceHistoryWithLocationAndRestorationIdentifier: (location, @restorationIdentifier) ->
76
+ @location = Turbolinks.Location.wrap(location)
77
+ @history.replace(@location, @restorationIdentifier)
78
+
79
+ # History delegate
80
+
81
+ historyPoppedToLocationWithRestorationIdentifier: (location, @restorationIdentifier) ->
82
+ if @enabled
83
+ restorationData = @getRestorationDataForIdentifier(@restorationIdentifier)
84
+ @startVisit(location, "restore", {@restorationIdentifier, restorationData, historyChanged: true})
85
+ @location = Turbolinks.Location.wrap(location)
86
+ else
87
+ @adapter.pageInvalidated()
88
+
89
+ # Snapshot cache
90
+
91
+ getCachedSnapshotForLocation: (location) ->
92
+ @cache.get(location)?.clone()
93
+
94
+ shouldCacheSnapshot: ->
95
+ @view.getSnapshot().isCacheable()
96
+
97
+ cacheSnapshot: ->
98
+ if @shouldCacheSnapshot()
99
+ @notifyApplicationBeforeCachingSnapshot()
100
+ snapshot = @view.getSnapshot()
101
+ location = @lastRenderedLocation
102
+ Turbolinks.defer =>
103
+ @cache.put(location, snapshot.clone())
104
+
105
+ # Scrolling
106
+
107
+ scrollToAnchor: (anchor) ->
108
+ if element = @view.getElementForAnchor(anchor)
109
+ @scrollToElement(element)
110
+ else
111
+ @scrollToPosition(x: 0, y: 0)
112
+
113
+ scrollToElement: (element) ->
114
+ @scrollManager.scrollToElement(element)
115
+
116
+ scrollToPosition: (position) ->
117
+ @scrollManager.scrollToPosition(position)
118
+
119
+ # Scroll manager delegate
120
+
121
+ scrollPositionChanged: (scrollPosition) ->
122
+ restorationData = @getCurrentRestorationData()
123
+ restorationData.scrollPosition = scrollPosition
124
+
125
+ # View
126
+
127
+ render: (options, callback) ->
128
+ @view.render(options, callback)
129
+
130
+ viewInvalidated: ->
131
+ @adapter.pageInvalidated()
132
+
133
+ viewWillRender: (newBody) ->
134
+ @notifyApplicationBeforeRender(newBody)
135
+
136
+ viewRendered: ->
137
+ @lastRenderedLocation = @currentVisit.location
138
+ @notifyApplicationAfterRender()
139
+
140
+ # Event handlers
141
+
142
+ pageLoaded: =>
143
+ @lastRenderedLocation = @location
144
+ @notifyApplicationAfterPageLoad()
145
+
146
+ clickCaptured: =>
147
+ removeEventListener("click", @clickBubbled, false)
148
+ addEventListener("click", @clickBubbled, false)
149
+
150
+ clickBubbled: (event) =>
151
+ if @enabled and @clickEventIsSignificant(event)
152
+ if link = @getVisitableLinkForNode(event.target)
153
+ if location = @getVisitableLocationForLink(link)
154
+ if @applicationAllowsFollowingLinkToLocation(link, location)
155
+ event.preventDefault()
156
+ action = @getActionForLink(link)
157
+ @visit(location, {action})
158
+
159
+ # Application events
160
+
161
+ applicationAllowsFollowingLinkToLocation: (link, location) ->
162
+ event = @notifyApplicationAfterClickingLinkToLocation(link, location)
163
+ not event.defaultPrevented
164
+
165
+ applicationAllowsVisitingLocation: (location) ->
166
+ event = @notifyApplicationBeforeVisitingLocation(location)
167
+ not event.defaultPrevented
168
+
169
+ notifyApplicationAfterClickingLinkToLocation: (link, location) ->
170
+ Turbolinks.dispatch("turbolinks:click", target: link, data: { url: location.absoluteURL }, cancelable: true)
171
+
172
+ notifyApplicationBeforeVisitingLocation: (location) ->
173
+ Turbolinks.dispatch("turbolinks:before-visit", data: { url: location.absoluteURL }, cancelable: true)
174
+
175
+ notifyApplicationAfterVisitingLocation: (location) ->
176
+ Turbolinks.dispatch("turbolinks:visit", data: { url: location.absoluteURL })
177
+
178
+ notifyApplicationBeforeCachingSnapshot: ->
179
+ Turbolinks.dispatch("turbolinks:before-cache")
180
+
181
+ notifyApplicationBeforeRender: (newBody) ->
182
+ Turbolinks.dispatch("turbolinks:before-render", data: {newBody})
183
+
184
+ notifyApplicationAfterRender: ->
185
+ Turbolinks.dispatch("turbolinks:render")
186
+
187
+ notifyApplicationAfterPageLoad: (timing = {}) ->
188
+ Turbolinks.dispatch("turbolinks:load", data: { url: @location.absoluteURL, timing })
189
+
190
+ # Private
191
+
192
+ startVisit: (location, action, properties) ->
193
+ @currentVisit?.cancel()
194
+ @currentVisit = @createVisit(location, action, properties)
195
+ @currentVisit.start()
196
+ @notifyApplicationAfterVisitingLocation(location)
197
+
198
+ createVisit: (location, action, {restorationIdentifier, restorationData, historyChanged} = {}) ->
199
+ visit = new Turbolinks.Visit this, location, action
200
+ visit.restorationIdentifier = restorationIdentifier ? Turbolinks.uuid()
201
+ visit.restorationData = Turbolinks.copyObject(restorationData)
202
+ visit.historyChanged = historyChanged
203
+ visit.referrer = @location
204
+ visit
205
+
206
+ visitCompleted: (visit) ->
207
+ @notifyApplicationAfterPageLoad(visit.getTimingMetrics())
208
+
209
+ clickEventIsSignificant: (event) ->
210
+ not (
211
+ event.defaultPrevented or
212
+ event.target.isContentEditable or
213
+ event.which > 1 or
214
+ event.altKey or
215
+ event.ctrlKey or
216
+ event.metaKey or
217
+ event.shiftKey
218
+ )
219
+
220
+ getVisitableLinkForNode: (node) ->
221
+ if @nodeIsVisitable(node)
222
+ Turbolinks.closest(node, "a[href]:not([target]):not([download])")
223
+
224
+ getVisitableLocationForLink: (link) ->
225
+ location = new Turbolinks.Location link.getAttribute("href")
226
+ location if @locationIsVisitable(location)
227
+
228
+ getActionForLink: (link) ->
229
+ link.getAttribute("data-turbolinks-action") ? "advance"
230
+
231
+ nodeIsVisitable: (node) ->
232
+ if container = Turbolinks.closest(node, "[data-turbolinks]")
233
+ container.getAttribute("data-turbolinks") isnt "false"
234
+ else
235
+ true
236
+
237
+ locationIsVisitable: (location) ->
238
+ location.isPrefixedBy(@view.getRootLocation()) and location.isHTML()
239
+
240
+ getCurrentRestorationData: ->
241
+ @getRestorationDataForIdentifier(@restorationIdentifier)
242
+
243
+ getRestorationDataForIdentifier: (identifier) ->
244
+ @restorationData[identifier] ?= {}
@@ -0,0 +1,27 @@
1
+ #= require ./renderer
2
+
3
+ class Turbolinks.ErrorRenderer extends Turbolinks.Renderer
4
+ constructor: (html) ->
5
+ htmlElement = document.createElement("html")
6
+ htmlElement.innerHTML = html
7
+ @newHead = htmlElement.querySelector("head")
8
+ @newBody = htmlElement.querySelector("body")
9
+
10
+ render: (callback) ->
11
+ @renderView =>
12
+ @replaceHeadAndBody()
13
+ @activateBodyScriptElements()
14
+ callback()
15
+
16
+ replaceHeadAndBody: ->
17
+ {head, body} = document
18
+ head.parentNode.replaceChild(@newHead, head)
19
+ body.parentNode.replaceChild(@newBody, body)
20
+
21
+ activateBodyScriptElements: ->
22
+ for replaceableElement in @getScriptElements()
23
+ element = @createScriptElement(replaceableElement)
24
+ replaceableElement.parentNode.replaceChild(element, replaceableElement)
25
+
26
+ getScriptElements: ->
27
+ document.documentElement.querySelectorAll("script")
@@ -0,0 +1,68 @@
1
+ class Turbolinks.HeadDetails
2
+ @fromHeadElement: (headElement) ->
3
+ new this headElement?.childNodes ? []
4
+
5
+ constructor: (childNodes) ->
6
+ @elements = {}
7
+ for node in childNodes when node.nodeType is Node.ELEMENT_NODE
8
+ key = node.outerHTML
9
+ data = @elements[key] ?=
10
+ type: elementType(node)
11
+ tracked: elementIsTracked(node)
12
+ elements: []
13
+ data.elements.push(node)
14
+
15
+ hasElementWithKey: (key) ->
16
+ key of @elements
17
+
18
+ getTrackedElementSignature: ->
19
+ (key for key, {tracked} of @elements when tracked).join("")
20
+
21
+ getScriptElementsNotInDetails: (headDetails) ->
22
+ @getElementsMatchingTypeNotInDetails("script", headDetails)
23
+
24
+ getStylesheetElementsNotInDetails: (headDetails) ->
25
+ @getElementsMatchingTypeNotInDetails("stylesheet", headDetails)
26
+
27
+ getElementsMatchingTypeNotInDetails: (matchedType, headDetails) ->
28
+ elements[0] for key, {type, elements} of @elements when type is matchedType and not headDetails.hasElementWithKey(key)
29
+
30
+ getProvisionalElements: ->
31
+ provisionalElements = []
32
+ for key, {type, tracked, elements} of @elements
33
+ if not type? and not tracked
34
+ provisionalElements.push(elements...)
35
+ else if elements.length > 1
36
+ provisionalElements.push(elements[1...]...)
37
+ provisionalElements
38
+
39
+ getMetaValue: (name) ->
40
+ @findMetaElementByName(name)?.getAttribute("content")
41
+
42
+ findMetaElementByName: (name) ->
43
+ element = undefined
44
+ for key, {elements} of @elements
45
+ if elementIsMetaElementWithName(elements[0], name)
46
+ element = elements[0]
47
+ element
48
+
49
+ elementType = (element) ->
50
+ if elementIsScript(element)
51
+ "script"
52
+ else if elementIsStylesheet(element)
53
+ "stylesheet"
54
+
55
+ elementIsTracked = (element) ->
56
+ element.getAttribute("data-turbolinks-track") is "reload"
57
+
58
+ elementIsScript = (element) ->
59
+ tagName = element.tagName.toLowerCase()
60
+ tagName is "script"
61
+
62
+ elementIsStylesheet = (element) ->
63
+ tagName = element.tagName.toLowerCase()
64
+ tagName is "style" or (tagName is "link" and element.getAttribute("rel") is "stylesheet")
65
+
66
+ elementIsMetaElementWithName = (element, name) ->
67
+ tagName = element.tagName.toLowerCase()
68
+ tagName is "meta" and element.getAttribute("name") is name
@@ -0,0 +1,74 @@
1
+ Turbolinks.copyObject = (object) ->
2
+ result = {}
3
+ for key, value of object
4
+ result[key] = value
5
+ result
6
+
7
+
8
+ Turbolinks.closest = (element, selector) ->
9
+ closest.call(element, selector)
10
+
11
+ closest = do ->
12
+ html = document.documentElement
13
+ html.closest ? (selector) ->
14
+ node = this
15
+ while node
16
+ return node if node.nodeType is Node.ELEMENT_NODE and match.call(node, selector)
17
+ node = node.parentNode
18
+
19
+
20
+ Turbolinks.defer = (callback) ->
21
+ setTimeout(callback, 1)
22
+
23
+ Turbolinks.throttle = (fn) ->
24
+ request = null
25
+ (args...) ->
26
+ request ?= requestAnimationFrame =>
27
+ request = null
28
+ fn.apply(this, args)
29
+
30
+
31
+ Turbolinks.dispatch = (eventName, {target, cancelable, data} = {}) ->
32
+ event = document.createEvent("Events")
33
+ event.initEvent(eventName, true, cancelable is true)
34
+ event.data = data ? {}
35
+
36
+ # Fix setting `defaultPrevented` when `preventDefault()` is called
37
+ # http://stackoverflow.com/questions/23349191/event-preventdefault-is-not-working-in-ie-11-for-custom-events
38
+ if event.cancelable and not preventDefaultSupported
39
+ { preventDefault } = event
40
+ event.preventDefault = ->
41
+ unless this.defaultPrevented
42
+ Object.defineProperty(this, "defaultPrevented", get: -> true)
43
+ preventDefault.call(this)
44
+
45
+ (target ? document).dispatchEvent(event)
46
+ event
47
+
48
+ preventDefaultSupported = do ->
49
+ event = document.createEvent("Events")
50
+ event.initEvent("test", true, true)
51
+ event.preventDefault()
52
+ event.defaultPrevented
53
+
54
+
55
+ Turbolinks.match = (element, selector) ->
56
+ match.call(element, selector)
57
+
58
+ match = do ->
59
+ html = document.documentElement
60
+ html.matchesSelector ? html.webkitMatchesSelector ? html.msMatchesSelector ? html.mozMatchesSelector
61
+
62
+
63
+ Turbolinks.uuid = ->
64
+ result = ""
65
+ for i in [1..36]
66
+ if i in [9, 14, 19, 24]
67
+ result += "-"
68
+ else if i is 15
69
+ result += "4"
70
+ else if i is 20
71
+ result += (Math.floor(Math.random() * 4) + 8).toString(16)
72
+ else
73
+ result += Math.floor(Math.random() * 15).toString(16)
74
+ result