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,674 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2018 Mingyuan Qin
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.