resque-web 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +39 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/resque_web/idle.png +0 -0
  5. data/app/assets/images/resque_web/lifebuoy.png +0 -0
  6. data/app/assets/images/resque_web/poll.png +0 -0
  7. data/app/assets/images/resque_web/rails.png +0 -0
  8. data/app/assets/images/resque_web/working.png +0 -0
  9. data/app/assets/javascripts/resque_web/application.js +105 -0
  10. data/app/assets/javascripts/resque_web/bootstrap.js.coffee +4 -0
  11. data/app/assets/javascripts/resque_web/jquery.relative-date.js +47 -0
  12. data/app/assets/stylesheets/resque_web/application.css +13 -0
  13. data/app/assets/stylesheets/resque_web/bootstrap_and_overrides.css +146 -0
  14. data/app/controllers/resque_web/application_controller.rb +15 -0
  15. data/app/controllers/resque_web/failures_controller.rb +62 -0
  16. data/app/controllers/resque_web/overview_controller.rb +7 -0
  17. data/app/controllers/resque_web/queues_controller.rb +12 -0
  18. data/app/controllers/resque_web/stats_controller.rb +17 -0
  19. data/app/controllers/resque_web/workers_controller.rb +18 -0
  20. data/app/controllers/resque_web/working_controller.rb +4 -0
  21. data/app/helpers/resque_web/application_helper.rb +65 -0
  22. data/app/helpers/resque_web/failures_helper.rb +54 -0
  23. data/app/helpers/resque_web/overview_helper.rb +6 -0
  24. data/app/helpers/resque_web/queues_helper.rb +72 -0
  25. data/app/helpers/resque_web/stats_helper.rb +54 -0
  26. data/app/helpers/resque_web/workers_helper.rb +16 -0
  27. data/app/helpers/resque_web/working_helper.rb +19 -0
  28. data/app/views/layouts/resque_web/application.html.erb +58 -0
  29. data/app/views/resque_web/failures/_failed_job.html.erb +53 -0
  30. data/app/views/resque_web/failures/_overview.html.erb +24 -0
  31. data/app/views/resque_web/failures/index.html.erb +33 -0
  32. data/app/views/resque_web/failures/show.html.erb +20 -0
  33. data/app/views/resque_web/overview/show.html.erb +4 -0
  34. data/app/views/resque_web/queues/_queues.html.erb +4 -0
  35. data/app/views/resque_web/queues/_queues_advanced.html.erb +14 -0
  36. data/app/views/resque_web/queues/_queues_basic.html.erb +17 -0
  37. data/app/views/resque_web/queues/index.html.erb +1 -0
  38. data/app/views/resque_web/queues/show.html.erb +26 -0
  39. data/app/views/resque_web/stats/key.html.erb +26 -0
  40. data/app/views/resque_web/stats/keys.html.erb +19 -0
  41. data/app/views/resque_web/stats/redis.html.erb +14 -0
  42. data/app/views/resque_web/stats/resque.html.erb +14 -0
  43. data/app/views/resque_web/workers/index.html.erb +19 -0
  44. data/app/views/resque_web/workers/show.html.erb +38 -0
  45. data/app/views/resque_web/working/_working.html.erb +34 -0
  46. data/app/views/resque_web/working/index.html.erb +1 -0
  47. data/config/initializers/resque_config.rb +3 -0
  48. data/config/routes.rb +26 -0
  49. data/lib/resque_web.rb +4 -0
  50. data/lib/resque_web/engine.rb +8 -0
  51. data/lib/resque_web/version.rb +3 -0
  52. data/test/dummy/Rakefile +6 -0
  53. data/test/dummy/app/assets/javascripts/application.js +13 -0
  54. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  55. data/test/dummy/app/controllers/application_controller.rb +5 -0
  56. data/test/dummy/app/helpers/application_helper.rb +2 -0
  57. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  58. data/test/dummy/bin/bundle +3 -0
  59. data/test/dummy/bin/rails +4 -0
  60. data/test/dummy/bin/rake +4 -0
  61. data/test/dummy/config.ru +4 -0
  62. data/test/dummy/config/application.rb +23 -0
  63. data/test/dummy/config/boot.rb +5 -0
  64. data/test/dummy/config/database.yml +25 -0
  65. data/test/dummy/config/environment.rb +5 -0
  66. data/test/dummy/config/environments/development.rb +29 -0
  67. data/test/dummy/config/environments/production.rb +80 -0
  68. data/test/dummy/config/environments/test.rb +36 -0
  69. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  70. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  71. data/test/dummy/config/initializers/inflections.rb +16 -0
  72. data/test/dummy/config/initializers/mime_types.rb +5 -0
  73. data/test/dummy/config/initializers/secret_token.rb +12 -0
  74. data/test/dummy/config/initializers/session_store.rb +3 -0
  75. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  76. data/test/dummy/config/locales/en.yml +23 -0
  77. data/test/dummy/config/routes.rb +4 -0
  78. data/test/dummy/db/development.sqlite3 +0 -0
  79. data/test/dummy/db/schema.rb +16 -0
  80. data/test/dummy/db/test.sqlite3 +0 -0
  81. data/test/dummy/log/test.log +1351 -0
  82. data/test/dummy/public/404.html +58 -0
  83. data/test/dummy/public/422.html +58 -0
  84. data/test/dummy/public/500.html +57 -0
  85. data/test/dummy/public/favicon.ico +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/02a14af754d35f9d015020c827dc4aad +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/060ba1e3c27350033cb45603b40ec988 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/14882e8f1f7d019b37950944b1053585 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/15d6969ab8e6cc86d7e4ec72a9f29473 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/1cabd5edcfb985bf0e754597f453c2d8 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/1f93ad5cf36f5c7e5bec2b9cecedfe5c +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/2352f28661a506c2c3e144d28bf6a6ca +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/24fe9e2e6b73f666f6f50460b5fe12db +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/2768ee82dea9ebd337e20faa4c08eda4 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/29c7be01674c14314b1321da043c31cd +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/36bf84c5368755f6fbc0c1808cfe7c5d +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/3fde4850b9ad7516ecd360a4c20cae8b +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/47e84a019922f151c4815a3cd738beb6 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/4ff25675e9d69ac5d68dff1d4372f3d1 +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/530c2753f447f8c666f628c5b5d65782 +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/58c7ee7b861e3bd17b1eb3c09a0ccb7e +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/5ae7043abf033ad9c1db3190239296f4 +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/6104f6b3d705c20e2485d2bb6f388f11 +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/67bdb77a662fa6c60ca6ec804ec4e72c +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/6ee0033c04cc130b81becd605709135b +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/706b6b4aca8f925cbbff8a4bf161cd03 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/79973091687030ef9b77e73884ab0c78 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/7bdd86db98ea61e2b45fa7a427617a3c +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/7eab29f4bea09503894bcabf91a971b0 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/7eadf8ac6771f3b20086c935c28b0b95 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/821dd3a673cddb023723b5a4b98fd493 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/885603ea8649d78da8ba6674b31dd289 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/8c86ace126a96b8c90b30f12a136fa81 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/9048f98bf002a866ef7831c71f7124d6 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/99cfb6fcfcd8fc23cc41ccfa12576a38 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/9a13af754490df860af9928bcd00fbd3 +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/9b1a227146b80c04976c0a885c248f82 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/9f48e8c551b5f898ca5667d92067e33d +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/a0113b5b044a3468edab999708723b3d +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/a64f702451323ab621d1836cdb352123 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/aa5c2d7aaabb3df93a734411e42a3bfc +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/acda3fb5202cc9aefb599fd43a058105 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/b02ffe2d07d7ce606d1c3a0656d82bfe +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/b5e993500308f32fff09cd7e0ee89efd +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/bae95ffbad9e9c33e3d4492a4b986c0b +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/baf363f79f6cd9b6a2b3688b77b58aba +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/bc2f95ead37a4ea1f050f6f21a446d7c +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/be47e0dd1cd9914997311db690cf38d7 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/bfc8b2b4f4c3f91fdc360b426adb2d94 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/c0a0dbfbf315a3edf26670c0f5ca7ecb +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/c2607067849ffce81a050a64bdf2e31b +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/c4902d10c0dbd2ef1e2edbb71c13456a +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/c79e7b418287c2b4155c8aecd24be5a7 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/c7f7c001ba2ad5623ead9e6f2d6188e9 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/c81b1182b5c851c35680c7acc88d4812 +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/c981eb8fa4e3e9ae04dbf1b7b8d7f395 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/cb1265ab418e2013b182c8deafcf897e +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/cee0dd733846ecda4ac940c6f033fb28 +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/ceebd7d45f23e34cda37b878e2af5b18 +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/d0cf471bea69c5583f5cb22f924c9d81 +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/d3347e44949d8909be6fb1d64cfb9967 +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/dc0f4af8c3937297fe2fd3f5f4906763 +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/e2bae9a171482111f585b481dc2c04c8 +0 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/e64aa4663498f985d9a5c2c65a0f2401 +0 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/ebf2449fa00d257e175bd62b6a757bd3 +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/eece52c31fc27f6dbb1d3e9dad9c6a67 +0 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/f28711adf8b5584c6956034b86f4cbee +0 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/f375226842bb99acc2a5a8f2396b54d3 +0 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/f83b6fecae01f81acf9c39e710258b98 +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/fa282debca304f7fac3307d091f5ecac +0 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/fab96f7950f4025de51c865e118904a7 +0 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/ff4777d609a0a67e637cc1530d6dc7b2 +0 -0
  215. data/test/dummy/tmp/cache/assets/test/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619 +0 -0
  216. data/test/dummy/tmp/cache/assets/test/sprockets/0aa776b181456a7f52abf642461a339d +0 -0
  217. data/test/dummy/tmp/cache/assets/test/sprockets/0ad1874459c89c2b7b055fbfc086093c +0 -0
  218. data/test/dummy/tmp/cache/assets/test/sprockets/0d7923c4212365467631d19aafa9ae2c +0 -0
  219. data/test/dummy/tmp/cache/assets/test/sprockets/16bf950594dc4e49b471963acc1a15d4 +0 -0
  220. data/test/dummy/tmp/cache/assets/test/sprockets/1a3e7714b622f1753a451d9417ce2934 +0 -0
  221. data/test/dummy/tmp/cache/assets/test/sprockets/201c8ed8e16a6bad90959a270eb42af5 +0 -0
  222. data/test/dummy/tmp/cache/assets/test/sprockets/2359b362b8c593ecacced9da62d27781 +0 -0
  223. data/test/dummy/tmp/cache/assets/test/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38 +0 -0
  224. data/test/dummy/tmp/cache/assets/test/sprockets/267d0243760c55e0ff8039158fbfa98d +0 -0
  225. data/test/dummy/tmp/cache/assets/test/sprockets/2b60e487f5394d3820f0d9008328de94 +0 -0
  226. data/test/dummy/tmp/cache/assets/test/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b +0 -0
  227. data/test/dummy/tmp/cache/assets/test/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
  228. data/test/dummy/tmp/cache/assets/test/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
  229. data/test/dummy/tmp/cache/assets/test/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3 +0 -0
  230. data/test/dummy/tmp/cache/assets/test/sprockets/50caadcf8e73c45ce4720b9a1f6f833d +0 -0
  231. data/test/dummy/tmp/cache/assets/test/sprockets/510c0a3f6fbee936a507ab77436c1713 +0 -0
  232. data/test/dummy/tmp/cache/assets/test/sprockets/54745c7a7543c4a5899cf4a7c285c505 +0 -0
  233. data/test/dummy/tmp/cache/assets/test/sprockets/5d4f24f37f52ec24be03c3ae69a710c2 +0 -0
  234. data/test/dummy/tmp/cache/assets/test/sprockets/5e3a1f4192671516ef3c5b040d3a04ec +0 -0
  235. data/test/dummy/tmp/cache/assets/test/sprockets/61883ec63e4f9e11b14de9de4ca5157c +0 -0
  236. data/test/dummy/tmp/cache/assets/test/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e +0 -0
  237. data/test/dummy/tmp/cache/assets/test/sprockets/67c23683dbf4e2e805770a041018f256 +0 -0
  238. data/test/dummy/tmp/cache/assets/test/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e +0 -0
  239. data/test/dummy/tmp/cache/assets/test/sprockets/6e4717cabfe91d260f46c4adb0acae43 +0 -0
  240. data/test/dummy/tmp/cache/assets/test/sprockets/722f2a204ab15e0261bc526aa3ea4a3d +0 -0
  241. data/test/dummy/tmp/cache/assets/test/sprockets/815e702f76d5de58787af0b2954544b4 +0 -0
  242. data/test/dummy/tmp/cache/assets/test/sprockets/8362592cdd4c1b1517d5e3fba760f0d3 +0 -0
  243. data/test/dummy/tmp/cache/assets/test/sprockets/8855c560fba1bd85e26f55568144a4d5 +0 -0
  244. data/test/dummy/tmp/cache/assets/test/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9 +0 -0
  245. data/test/dummy/tmp/cache/assets/test/sprockets/8c71f2e04c07ba078f3fed661fea07ca +0 -0
  246. data/test/dummy/tmp/cache/assets/test/sprockets/8d0a322f394a2e12a350a4caf9b2c80e +0 -0
  247. data/test/dummy/tmp/cache/assets/test/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
  248. data/test/dummy/tmp/cache/assets/test/sprockets/92ad487c49bf84126118e1ada216eb52 +0 -0
  249. data/test/dummy/tmp/cache/assets/test/sprockets/938ed33abaeec8bfc22e533de5d92fd6 +0 -0
  250. data/test/dummy/tmp/cache/assets/test/sprockets/9780116ab7edfbe2fc71dab2b7d361f8 +0 -0
  251. data/test/dummy/tmp/cache/assets/test/sprockets/abd1afcb16ba6e09d6002038d03d56b7 +0 -0
  252. data/test/dummy/tmp/cache/assets/test/sprockets/ade126a20aa1092d23cc0afaf17c164b +0 -0
  253. data/test/dummy/tmp/cache/assets/test/sprockets/ae5d2a05a28b6aea379acad80dd0b343 +0 -0
  254. data/test/dummy/tmp/cache/assets/test/sprockets/b13218598c5f77a5c239c023e3fff575 +0 -0
  255. data/test/dummy/tmp/cache/assets/test/sprockets/b1952fdaabef91d96f551aead4200069 +0 -0
  256. data/test/dummy/tmp/cache/assets/test/sprockets/b1d2f68953967d51ade8c6d223c2a2aa +0 -0
  257. data/test/dummy/tmp/cache/assets/test/sprockets/b4505cc242ed408c99b7b2466d1f6099 +0 -0
  258. data/test/dummy/tmp/cache/assets/test/sprockets/b99c09238dcefa3d795f9f7594d819b7 +0 -0
  259. data/test/dummy/tmp/cache/assets/test/sprockets/c11cf414168c34e88a7c152937e0041c +0 -0
  260. data/test/dummy/tmp/cache/assets/test/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4 +0 -0
  261. data/test/dummy/tmp/cache/assets/test/sprockets/c90e9c573e54b170859449cb2ceb3a7a +0 -0
  262. data/test/dummy/tmp/cache/assets/test/sprockets/d2c37ec460e77ea6ea41bbc670889f89 +0 -0
  263. data/test/dummy/tmp/cache/assets/test/sprockets/d592f7f190f2ed0852437aeaf413ffb7 +0 -0
  264. data/test/dummy/tmp/cache/assets/test/sprockets/d9f00b466d45c065d1281b100de9311f +0 -0
  265. data/test/dummy/tmp/cache/assets/test/sprockets/e05ff4f8801c918dc89fef1d37880568 +0 -0
  266. data/test/dummy/tmp/cache/assets/test/sprockets/e46693bc631ec8f6c63f67a75c33f785 +0 -0
  267. data/test/dummy/tmp/cache/assets/test/sprockets/e5d439d83d3f264ee47b9f82005a4eef +0 -0
  268. data/test/dummy/tmp/cache/assets/test/sprockets/eb8ceeb4c92c6bd813a541d672206eff +0 -0
  269. data/test/dummy/tmp/cache/assets/test/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe +0 -0
  270. data/test/dummy/tmp/cache/assets/test/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b +0 -0
  271. data/test/functional/failures_controller_test.rb +73 -0
  272. data/test/functional/overview_controller_test.rb +7 -0
  273. data/test/functional/queues_controller_test.rb +20 -0
  274. data/test/functional/stats_controller_test.rb +7 -0
  275. data/test/functional/workers_controller_test.rb +7 -0
  276. data/test/functional/working_controller_test.rb +7 -0
  277. data/test/test_helper.rb +23 -0
  278. data/test/unit/helpers/failures_helper_test.rb +4 -0
  279. data/test/unit/helpers/jobs_helper_test.rb +4 -0
  280. data/test/unit/helpers/overview_helper_test.rb +4 -0
  281. data/test/unit/helpers/queues_helper_test.rb +4 -0
  282. data/test/unit/helpers/retry_controller_helper_test.rb +4 -0
  283. data/test/unit/helpers/stats_helper_test.rb +4 -0
  284. data/test/unit/helpers/workers_helper_test.rb +4 -0
  285. data/test/unit/helpers/working_helper_test.rb +4 -0
  286. metadata +632 -0
@@ -0,0 +1,73 @@
1
+ require 'test_helper'
2
+
3
+ module ResqueWeb
4
+ class FailuresControllerTest < ActionController::TestCase
5
+ setup do
6
+ @routes = Engine.routes
7
+ end
8
+
9
+ describe "GET /failures" do
10
+ it "renders the index page" do
11
+ get :index
12
+ assert_template :index
13
+ end
14
+ end
15
+
16
+ describe "DELETE /failures/:id" do
17
+ it "deletes the failure" do
18
+ Resque::Failure.expects(:remove).with('123')
19
+ delete :destroy, :id=>123
20
+ assert_redirected_to failures_path
21
+ end
22
+ end
23
+
24
+ describe "DELETE /failures/destroy_all" do
25
+ it "deletes all failures" do
26
+ Resque::Failure.expects(:clear).with('failed')
27
+ delete :destroy_all
28
+ assert_redirected_to failures_path
29
+ end
30
+ end
31
+
32
+ describe "PUT /failures/:id/retry" do
33
+ it "retries the failure and remove the original message" do
34
+ Resque::Failure.expects(:requeue_and_remove).with('123')
35
+ put :retry,:id=>123
36
+ assert_redirected_to failures_path
37
+ end
38
+ it "retries should work also in case of pre 2.0 Resque" do
39
+ Resque::Failure.expects(:requeue).with('123')
40
+ Resque::Failure.expects(:remove).with('123')
41
+ put :retry,:id=>123
42
+ assert_redirected_to failures_path
43
+ end
44
+ end
45
+
46
+ describe "PUT /failures/retry_all" do
47
+ it "retries all failures using requeue if no queue specified" do
48
+ Resque::Failure.stubs(:count).returns(2)
49
+ Resque::Failure.stubs(:requeue_and_remove).returns(true)
50
+ Resque::Failure.expects(:requeue_and_remove).with(0)
51
+ Resque::Failure.expects(:requeue_and_remove).with(1)
52
+ put :retry_all
53
+ assert_redirected_to failures_path
54
+ end
55
+ it "retries all failures should also work case of pre 2.0 Resque" do
56
+ Resque::Failure.stubs(:count).returns(2)
57
+ Resque::Failure.stubs(:requeue).returns(true)
58
+ Resque::Failure.expects(:requeue).with(0)
59
+ Resque::Failure.expects(:remove).with(0)
60
+ Resque::Failure.expects(:requeue).with(1)
61
+ Resque::Failure.expects(:remove).with(1)
62
+ put :retry_all
63
+ assert_redirected_to failures_path
64
+ end
65
+ it "retries all failures using requeue_queue if queue specified" do
66
+ Resque::Failure.expects(:requeue_queue).with('myqueue')
67
+ put :retry_all,:queue=>"myqueue"
68
+ assert_redirected_to failures_path(:queue=>'myqueue')
69
+ end
70
+ end
71
+
72
+ end
73
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class OverviewControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,20 @@
1
+ require 'test_helper'
2
+
3
+ module ResqueWeb
4
+ class QueuesControllerTest < ActionController::TestCase
5
+ setup do
6
+ @routes = Engine.routes
7
+ end
8
+ let(:queue_name) { 'example_queue' }
9
+
10
+ it "deletes queues" do
11
+ Resque.push(queue_name, :class => 'ExampleJob')
12
+ Resque.queues.include?(queue_name).must_equal true
13
+
14
+ delete :destroy, :id => queue_name
15
+ assert_redirected_to queues_path
16
+
17
+ Resque.queues.include?(queue_name).wont_equal true
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class StatsControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class WorkersControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class WorkingControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,23 @@
1
+ require 'redcard'
2
+ require 'tooling/profiler/profiler' if RedCard.check :rubinius
3
+
4
+ require 'coveralls'
5
+ Coveralls.wear! 'rails'
6
+
7
+ ENV["RAILS_ENV"] = "test"
8
+ require File.expand_path('../dummy/config/environment', __FILE__)
9
+ require 'rails/test_help'
10
+
11
+ require 'minitest/spec'
12
+ require 'resque'
13
+ require 'mocha/setup'
14
+
15
+ Rails.backtrace_cleaner.remove_silencers!
16
+
17
+ # Load support files
18
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
19
+
20
+ # Load fixtures from the engine
21
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
22
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
23
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class FailuresHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class JobsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class OverviewHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class QueuesHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class RetryControllerHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class StatsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class WorkersHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class WorkingHelperTest < ActionView::TestCase
4
+ end
metadata ADDED
@@ -0,0 +1,632 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resque-web
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tony Arcieri
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: resque
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: twitter-bootstrap-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jquery-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sass-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: coffee-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: A Rails-based frontend to the Resque job queue system.
84
+ email:
85
+ - tony.arcieri@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - app/views/layouts/resque_web/application.html.erb
91
+ - app/views/resque_web/workers/index.html.erb
92
+ - app/views/resque_web/workers/show.html.erb
93
+ - app/views/resque_web/stats/redis.html.erb
94
+ - app/views/resque_web/stats/resque.html.erb
95
+ - app/views/resque_web/stats/keys.html.erb
96
+ - app/views/resque_web/stats/key.html.erb
97
+ - app/views/resque_web/failures/index.html.erb
98
+ - app/views/resque_web/failures/show.html.erb
99
+ - app/views/resque_web/failures/_failed_job.html.erb
100
+ - app/views/resque_web/failures/_overview.html.erb
101
+ - app/views/resque_web/queues/_queues_advanced.html.erb
102
+ - app/views/resque_web/queues/index.html.erb
103
+ - app/views/resque_web/queues/show.html.erb
104
+ - app/views/resque_web/queues/_queues.html.erb
105
+ - app/views/resque_web/queues/_queues_basic.html.erb
106
+ - app/views/resque_web/overview/show.html.erb
107
+ - app/views/resque_web/working/index.html.erb
108
+ - app/views/resque_web/working/_working.html.erb
109
+ - app/helpers/resque_web/application_helper.rb
110
+ - app/helpers/resque_web/stats_helper.rb
111
+ - app/helpers/resque_web/workers_helper.rb
112
+ - app/helpers/resque_web/overview_helper.rb
113
+ - app/helpers/resque_web/queues_helper.rb
114
+ - app/helpers/resque_web/working_helper.rb
115
+ - app/helpers/resque_web/failures_helper.rb
116
+ - app/assets/stylesheets/resque_web/application.css
117
+ - app/assets/stylesheets/resque_web/bootstrap_and_overrides.css
118
+ - app/assets/javascripts/resque_web/jquery.relative-date.js
119
+ - app/assets/javascripts/resque_web/bootstrap.js.coffee
120
+ - app/assets/javascripts/resque_web/application.js
121
+ - app/assets/images/resque_web/working.png
122
+ - app/assets/images/resque_web/poll.png
123
+ - app/assets/images/resque_web/idle.png
124
+ - app/assets/images/resque_web/rails.png
125
+ - app/assets/images/resque_web/lifebuoy.png
126
+ - app/controllers/resque_web/workers_controller.rb
127
+ - app/controllers/resque_web/working_controller.rb
128
+ - app/controllers/resque_web/overview_controller.rb
129
+ - app/controllers/resque_web/application_controller.rb
130
+ - app/controllers/resque_web/stats_controller.rb
131
+ - app/controllers/resque_web/failures_controller.rb
132
+ - app/controllers/resque_web/queues_controller.rb
133
+ - config/initializers/resque_config.rb
134
+ - config/routes.rb
135
+ - lib/resque_web.rb
136
+ - lib/resque_web/engine.rb
137
+ - lib/resque_web/version.rb
138
+ - Rakefile
139
+ - README.md
140
+ - test/test_helper.rb
141
+ - test/unit/helpers/retry_controller_helper_test.rb
142
+ - test/unit/helpers/workers_helper_test.rb
143
+ - test/unit/helpers/queues_helper_test.rb
144
+ - test/unit/helpers/stats_helper_test.rb
145
+ - test/unit/helpers/overview_helper_test.rb
146
+ - test/unit/helpers/jobs_helper_test.rb
147
+ - test/unit/helpers/working_helper_test.rb
148
+ - test/unit/helpers/failures_helper_test.rb
149
+ - test/functional/working_controller_test.rb
150
+ - test/functional/failures_controller_test.rb
151
+ - test/functional/stats_controller_test.rb
152
+ - test/functional/overview_controller_test.rb
153
+ - test/functional/workers_controller_test.rb
154
+ - test/functional/queues_controller_test.rb
155
+ - test/dummy/log/test.log
156
+ - test/dummy/Rakefile
157
+ - test/dummy/config/environment.rb
158
+ - test/dummy/config/environments/development.rb
159
+ - test/dummy/config/environments/production.rb
160
+ - test/dummy/config/environments/test.rb
161
+ - test/dummy/config/initializers/secret_token.rb
162
+ - test/dummy/config/initializers/filter_parameter_logging.rb
163
+ - test/dummy/config/initializers/inflections.rb
164
+ - test/dummy/config/initializers/session_store.rb
165
+ - test/dummy/config/initializers/wrap_parameters.rb
166
+ - test/dummy/config/initializers/mime_types.rb
167
+ - test/dummy/config/initializers/backtrace_silencers.rb
168
+ - test/dummy/config/locales/en.yml
169
+ - test/dummy/config/database.yml
170
+ - test/dummy/config/routes.rb
171
+ - test/dummy/config/application.rb
172
+ - test/dummy/config/boot.rb
173
+ - test/dummy/tmp/cache/assets/development/sprockets/8d0a322f394a2e12a350a4caf9b2c80e
174
+ - test/dummy/tmp/cache/assets/development/sprockets/9f48e8c551b5f898ca5667d92067e33d
175
+ - test/dummy/tmp/cache/assets/development/sprockets/9048f98bf002a866ef7831c71f7124d6
176
+ - test/dummy/tmp/cache/assets/development/sprockets/ff4777d609a0a67e637cc1530d6dc7b2
177
+ - test/dummy/tmp/cache/assets/development/sprockets/0aa776b181456a7f52abf642461a339d
178
+ - test/dummy/tmp/cache/assets/development/sprockets/0d7923c4212365467631d19aafa9ae2c
179
+ - test/dummy/tmp/cache/assets/development/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b
180
+ - test/dummy/tmp/cache/assets/development/sprockets/c2607067849ffce81a050a64bdf2e31b
181
+ - test/dummy/tmp/cache/assets/development/sprockets/02a14af754d35f9d015020c827dc4aad
182
+ - test/dummy/tmp/cache/assets/development/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38
183
+ - test/dummy/tmp/cache/assets/development/sprockets/c4902d10c0dbd2ef1e2edbb71c13456a
184
+ - test/dummy/tmp/cache/assets/development/sprockets/4ff25675e9d69ac5d68dff1d4372f3d1
185
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
186
+ - test/dummy/tmp/cache/assets/development/sprockets/b02ffe2d07d7ce606d1c3a0656d82bfe
187
+ - test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f
188
+ - test/dummy/tmp/cache/assets/development/sprockets/c7f7c001ba2ad5623ead9e6f2d6188e9
189
+ - test/dummy/tmp/cache/assets/development/sprockets/36bf84c5368755f6fbc0c1808cfe7c5d
190
+ - test/dummy/tmp/cache/assets/development/sprockets/d9f00b466d45c065d1281b100de9311f
191
+ - test/dummy/tmp/cache/assets/development/sprockets/267d0243760c55e0ff8039158fbfa98d
192
+ - test/dummy/tmp/cache/assets/development/sprockets/a0113b5b044a3468edab999708723b3d
193
+ - test/dummy/tmp/cache/assets/development/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3
194
+ - test/dummy/tmp/cache/assets/development/sprockets/14882e8f1f7d019b37950944b1053585
195
+ - test/dummy/tmp/cache/assets/development/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b
196
+ - test/dummy/tmp/cache/assets/development/sprockets/47e84a019922f151c4815a3cd738beb6
197
+ - test/dummy/tmp/cache/assets/development/sprockets/b1d2f68953967d51ade8c6d223c2a2aa
198
+ - test/dummy/tmp/cache/assets/development/sprockets/92ad487c49bf84126118e1ada216eb52
199
+ - test/dummy/tmp/cache/assets/development/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe
200
+ - test/dummy/tmp/cache/assets/development/sprockets/060ba1e3c27350033cb45603b40ec988
201
+ - test/dummy/tmp/cache/assets/development/sprockets/1a3e7714b622f1753a451d9417ce2934
202
+ - test/dummy/tmp/cache/assets/development/sprockets/f375226842bb99acc2a5a8f2396b54d3
203
+ - test/dummy/tmp/cache/assets/development/sprockets/cb1265ab418e2013b182c8deafcf897e
204
+ - test/dummy/tmp/cache/assets/development/sprockets/b4505cc242ed408c99b7b2466d1f6099
205
+ - test/dummy/tmp/cache/assets/development/sprockets/510c0a3f6fbee936a507ab77436c1713
206
+ - test/dummy/tmp/cache/assets/development/sprockets/1cabd5edcfb985bf0e754597f453c2d8
207
+ - test/dummy/tmp/cache/assets/development/sprockets/baf363f79f6cd9b6a2b3688b77b58aba
208
+ - test/dummy/tmp/cache/assets/development/sprockets/54745c7a7543c4a5899cf4a7c285c505
209
+ - test/dummy/tmp/cache/assets/development/sprockets/15d6969ab8e6cc86d7e4ec72a9f29473
210
+ - test/dummy/tmp/cache/assets/development/sprockets/c11cf414168c34e88a7c152937e0041c
211
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
212
+ - test/dummy/tmp/cache/assets/development/sprockets/7eab29f4bea09503894bcabf91a971b0
213
+ - test/dummy/tmp/cache/assets/development/sprockets/2359b362b8c593ecacced9da62d27781
214
+ - test/dummy/tmp/cache/assets/development/sprockets/7bdd86db98ea61e2b45fa7a427617a3c
215
+ - test/dummy/tmp/cache/assets/development/sprockets/9780116ab7edfbe2fc71dab2b7d361f8
216
+ - test/dummy/tmp/cache/assets/development/sprockets/8c86ace126a96b8c90b30f12a136fa81
217
+ - test/dummy/tmp/cache/assets/development/sprockets/ceebd7d45f23e34cda37b878e2af5b18
218
+ - test/dummy/tmp/cache/assets/development/sprockets/e46693bc631ec8f6c63f67a75c33f785
219
+ - test/dummy/tmp/cache/assets/development/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4
220
+ - test/dummy/tmp/cache/assets/development/sprockets/e2bae9a171482111f585b481dc2c04c8
221
+ - test/dummy/tmp/cache/assets/development/sprockets/bc2f95ead37a4ea1f050f6f21a446d7c
222
+ - test/dummy/tmp/cache/assets/development/sprockets/885603ea8649d78da8ba6674b31dd289
223
+ - test/dummy/tmp/cache/assets/development/sprockets/9a13af754490df860af9928bcd00fbd3
224
+ - test/dummy/tmp/cache/assets/development/sprockets/be47e0dd1cd9914997311db690cf38d7
225
+ - test/dummy/tmp/cache/assets/development/sprockets/815e702f76d5de58787af0b2954544b4
226
+ - test/dummy/tmp/cache/assets/development/sprockets/29c7be01674c14314b1321da043c31cd
227
+ - test/dummy/tmp/cache/assets/development/sprockets/b1952fdaabef91d96f551aead4200069
228
+ - test/dummy/tmp/cache/assets/development/sprockets/2768ee82dea9ebd337e20faa4c08eda4
229
+ - test/dummy/tmp/cache/assets/development/sprockets/67c23683dbf4e2e805770a041018f256
230
+ - test/dummy/tmp/cache/assets/development/sprockets/f28711adf8b5584c6956034b86f4cbee
231
+ - test/dummy/tmp/cache/assets/development/sprockets/c90e9c573e54b170859449cb2ceb3a7a
232
+ - test/dummy/tmp/cache/assets/development/sprockets/2b60e487f5394d3820f0d9008328de94
233
+ - test/dummy/tmp/cache/assets/development/sprockets/6104f6b3d705c20e2485d2bb6f388f11
234
+ - test/dummy/tmp/cache/assets/development/sprockets/50caadcf8e73c45ce4720b9a1f6f833d
235
+ - test/dummy/tmp/cache/assets/development/sprockets/5ae7043abf033ad9c1db3190239296f4
236
+ - test/dummy/tmp/cache/assets/development/sprockets/b13218598c5f77a5c239c023e3fff575
237
+ - test/dummy/tmp/cache/assets/development/sprockets/61883ec63e4f9e11b14de9de4ca5157c
238
+ - test/dummy/tmp/cache/assets/development/sprockets/6ee0033c04cc130b81becd605709135b
239
+ - test/dummy/tmp/cache/assets/development/sprockets/79973091687030ef9b77e73884ab0c78
240
+ - test/dummy/tmp/cache/assets/development/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619
241
+ - test/dummy/tmp/cache/assets/development/sprockets/67bdb77a662fa6c60ca6ec804ec4e72c
242
+ - test/dummy/tmp/cache/assets/development/sprockets/bfc8b2b4f4c3f91fdc360b426adb2d94
243
+ - test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5
244
+ - test/dummy/tmp/cache/assets/development/sprockets/706b6b4aca8f925cbbff8a4bf161cd03
245
+ - test/dummy/tmp/cache/assets/development/sprockets/8362592cdd4c1b1517d5e3fba760f0d3
246
+ - test/dummy/tmp/cache/assets/development/sprockets/530c2753f447f8c666f628c5b5d65782
247
+ - test/dummy/tmp/cache/assets/development/sprockets/d0cf471bea69c5583f5cb22f924c9d81
248
+ - test/dummy/tmp/cache/assets/development/sprockets/8855c560fba1bd85e26f55568144a4d5
249
+ - test/dummy/tmp/cache/assets/development/sprockets/e64aa4663498f985d9a5c2c65a0f2401
250
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
251
+ - test/dummy/tmp/cache/assets/development/sprockets/d3347e44949d8909be6fb1d64cfb9967
252
+ - test/dummy/tmp/cache/assets/development/sprockets/d2c37ec460e77ea6ea41bbc670889f89
253
+ - test/dummy/tmp/cache/assets/development/sprockets/aa5c2d7aaabb3df93a734411e42a3bfc
254
+ - test/dummy/tmp/cache/assets/development/sprockets/f83b6fecae01f81acf9c39e710258b98
255
+ - test/dummy/tmp/cache/assets/development/sprockets/24fe9e2e6b73f666f6f50460b5fe12db
256
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
257
+ - test/dummy/tmp/cache/assets/development/sprockets/dc0f4af8c3937297fe2fd3f5f4906763
258
+ - test/dummy/tmp/cache/assets/development/sprockets/99cfb6fcfcd8fc23cc41ccfa12576a38
259
+ - test/dummy/tmp/cache/assets/development/sprockets/821dd3a673cddb023723b5a4b98fd493
260
+ - test/dummy/tmp/cache/assets/development/sprockets/722f2a204ab15e0261bc526aa3ea4a3d
261
+ - test/dummy/tmp/cache/assets/development/sprockets/7eadf8ac6771f3b20086c935c28b0b95
262
+ - test/dummy/tmp/cache/assets/development/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e
263
+ - test/dummy/tmp/cache/assets/development/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9
264
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
265
+ - test/dummy/tmp/cache/assets/development/sprockets/9b1a227146b80c04976c0a885c248f82
266
+ - test/dummy/tmp/cache/assets/development/sprockets/acda3fb5202cc9aefb599fd43a058105
267
+ - test/dummy/tmp/cache/assets/development/sprockets/eb8ceeb4c92c6bd813a541d672206eff
268
+ - test/dummy/tmp/cache/assets/development/sprockets/fa282debca304f7fac3307d091f5ecac
269
+ - test/dummy/tmp/cache/assets/development/sprockets/1f93ad5cf36f5c7e5bec2b9cecedfe5c
270
+ - test/dummy/tmp/cache/assets/development/sprockets/ade126a20aa1092d23cc0afaf17c164b
271
+ - test/dummy/tmp/cache/assets/development/sprockets/c79e7b418287c2b4155c8aecd24be5a7
272
+ - test/dummy/tmp/cache/assets/development/sprockets/ae5d2a05a28b6aea379acad80dd0b343
273
+ - test/dummy/tmp/cache/assets/development/sprockets/3fde4850b9ad7516ecd360a4c20cae8b
274
+ - test/dummy/tmp/cache/assets/development/sprockets/ebf2449fa00d257e175bd62b6a757bd3
275
+ - test/dummy/tmp/cache/assets/development/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e
276
+ - test/dummy/tmp/cache/assets/development/sprockets/a64f702451323ab621d1836cdb352123
277
+ - test/dummy/tmp/cache/assets/development/sprockets/2352f28661a506c2c3e144d28bf6a6ca
278
+ - test/dummy/tmp/cache/assets/development/sprockets/fab96f7950f4025de51c865e118904a7
279
+ - test/dummy/tmp/cache/assets/development/sprockets/abd1afcb16ba6e09d6002038d03d56b7
280
+ - test/dummy/tmp/cache/assets/development/sprockets/5d4f24f37f52ec24be03c3ae69a710c2
281
+ - test/dummy/tmp/cache/assets/development/sprockets/c981eb8fa4e3e9ae04dbf1b7b8d7f395
282
+ - test/dummy/tmp/cache/assets/development/sprockets/58c7ee7b861e3bd17b1eb3c09a0ccb7e
283
+ - test/dummy/tmp/cache/assets/development/sprockets/b99c09238dcefa3d795f9f7594d819b7
284
+ - test/dummy/tmp/cache/assets/development/sprockets/c0a0dbfbf315a3edf26670c0f5ca7ecb
285
+ - test/dummy/tmp/cache/assets/development/sprockets/bae95ffbad9e9c33e3d4492a4b986c0b
286
+ - test/dummy/tmp/cache/assets/development/sprockets/5e3a1f4192671516ef3c5b040d3a04ec
287
+ - test/dummy/tmp/cache/assets/development/sprockets/c81b1182b5c851c35680c7acc88d4812
288
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
289
+ - test/dummy/tmp/cache/assets/development/sprockets/cee0dd733846ecda4ac940c6f033fb28
290
+ - test/dummy/tmp/cache/assets/development/sprockets/b5e993500308f32fff09cd7e0ee89efd
291
+ - test/dummy/tmp/cache/assets/development/sprockets/8c71f2e04c07ba078f3fed661fea07ca
292
+ - test/dummy/tmp/cache/assets/development/sprockets/201c8ed8e16a6bad90959a270eb42af5
293
+ - test/dummy/tmp/cache/assets/development/sprockets/e5d439d83d3f264ee47b9f82005a4eef
294
+ - test/dummy/tmp/cache/assets/development/sprockets/eece52c31fc27f6dbb1d3e9dad9c6a67
295
+ - test/dummy/tmp/cache/assets/development/sprockets/0ad1874459c89c2b7b055fbfc086093c
296
+ - test/dummy/tmp/cache/assets/development/sprockets/938ed33abaeec8bfc22e533de5d92fd6
297
+ - test/dummy/tmp/cache/assets/development/sprockets/d592f7f190f2ed0852437aeaf413ffb7
298
+ - test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522
299
+ - test/dummy/tmp/cache/assets/development/sprockets/6e4717cabfe91d260f46c4adb0acae43
300
+ - test/dummy/tmp/cache/assets/development/sprockets/e05ff4f8801c918dc89fef1d37880568
301
+ - test/dummy/tmp/cache/assets/development/sprockets/16bf950594dc4e49b471963acc1a15d4
302
+ - test/dummy/tmp/cache/assets/test/sprockets/8d0a322f394a2e12a350a4caf9b2c80e
303
+ - test/dummy/tmp/cache/assets/test/sprockets/0aa776b181456a7f52abf642461a339d
304
+ - test/dummy/tmp/cache/assets/test/sprockets/0d7923c4212365467631d19aafa9ae2c
305
+ - test/dummy/tmp/cache/assets/test/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b
306
+ - test/dummy/tmp/cache/assets/test/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38
307
+ - test/dummy/tmp/cache/assets/test/sprockets/4d22200fb380d8ae9d5f07525088622f
308
+ - test/dummy/tmp/cache/assets/test/sprockets/d9f00b466d45c065d1281b100de9311f
309
+ - test/dummy/tmp/cache/assets/test/sprockets/267d0243760c55e0ff8039158fbfa98d
310
+ - test/dummy/tmp/cache/assets/test/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3
311
+ - test/dummy/tmp/cache/assets/test/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b
312
+ - test/dummy/tmp/cache/assets/test/sprockets/b1d2f68953967d51ade8c6d223c2a2aa
313
+ - test/dummy/tmp/cache/assets/test/sprockets/92ad487c49bf84126118e1ada216eb52
314
+ - test/dummy/tmp/cache/assets/test/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe
315
+ - test/dummy/tmp/cache/assets/test/sprockets/1a3e7714b622f1753a451d9417ce2934
316
+ - test/dummy/tmp/cache/assets/test/sprockets/b4505cc242ed408c99b7b2466d1f6099
317
+ - test/dummy/tmp/cache/assets/test/sprockets/510c0a3f6fbee936a507ab77436c1713
318
+ - test/dummy/tmp/cache/assets/test/sprockets/54745c7a7543c4a5899cf4a7c285c505
319
+ - test/dummy/tmp/cache/assets/test/sprockets/c11cf414168c34e88a7c152937e0041c
320
+ - test/dummy/tmp/cache/assets/test/sprockets/2359b362b8c593ecacced9da62d27781
321
+ - test/dummy/tmp/cache/assets/test/sprockets/9780116ab7edfbe2fc71dab2b7d361f8
322
+ - test/dummy/tmp/cache/assets/test/sprockets/e46693bc631ec8f6c63f67a75c33f785
323
+ - test/dummy/tmp/cache/assets/test/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4
324
+ - test/dummy/tmp/cache/assets/test/sprockets/815e702f76d5de58787af0b2954544b4
325
+ - test/dummy/tmp/cache/assets/test/sprockets/b1952fdaabef91d96f551aead4200069
326
+ - test/dummy/tmp/cache/assets/test/sprockets/67c23683dbf4e2e805770a041018f256
327
+ - test/dummy/tmp/cache/assets/test/sprockets/c90e9c573e54b170859449cb2ceb3a7a
328
+ - test/dummy/tmp/cache/assets/test/sprockets/2b60e487f5394d3820f0d9008328de94
329
+ - test/dummy/tmp/cache/assets/test/sprockets/50caadcf8e73c45ce4720b9a1f6f833d
330
+ - test/dummy/tmp/cache/assets/test/sprockets/b13218598c5f77a5c239c023e3fff575
331
+ - test/dummy/tmp/cache/assets/test/sprockets/61883ec63e4f9e11b14de9de4ca5157c
332
+ - test/dummy/tmp/cache/assets/test/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619
333
+ - test/dummy/tmp/cache/assets/test/sprockets/8fbf100e961e22baca23d1850b41e4d5
334
+ - test/dummy/tmp/cache/assets/test/sprockets/8362592cdd4c1b1517d5e3fba760f0d3
335
+ - test/dummy/tmp/cache/assets/test/sprockets/8855c560fba1bd85e26f55568144a4d5
336
+ - test/dummy/tmp/cache/assets/test/sprockets/d2c37ec460e77ea6ea41bbc670889f89
337
+ - test/dummy/tmp/cache/assets/test/sprockets/722f2a204ab15e0261bc526aa3ea4a3d
338
+ - test/dummy/tmp/cache/assets/test/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e
339
+ - test/dummy/tmp/cache/assets/test/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9
340
+ - test/dummy/tmp/cache/assets/test/sprockets/eb8ceeb4c92c6bd813a541d672206eff
341
+ - test/dummy/tmp/cache/assets/test/sprockets/ade126a20aa1092d23cc0afaf17c164b
342
+ - test/dummy/tmp/cache/assets/test/sprockets/ae5d2a05a28b6aea379acad80dd0b343
343
+ - test/dummy/tmp/cache/assets/test/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e
344
+ - test/dummy/tmp/cache/assets/test/sprockets/abd1afcb16ba6e09d6002038d03d56b7
345
+ - test/dummy/tmp/cache/assets/test/sprockets/5d4f24f37f52ec24be03c3ae69a710c2
346
+ - test/dummy/tmp/cache/assets/test/sprockets/b99c09238dcefa3d795f9f7594d819b7
347
+ - test/dummy/tmp/cache/assets/test/sprockets/5e3a1f4192671516ef3c5b040d3a04ec
348
+ - test/dummy/tmp/cache/assets/test/sprockets/8c71f2e04c07ba078f3fed661fea07ca
349
+ - test/dummy/tmp/cache/assets/test/sprockets/201c8ed8e16a6bad90959a270eb42af5
350
+ - test/dummy/tmp/cache/assets/test/sprockets/e5d439d83d3f264ee47b9f82005a4eef
351
+ - test/dummy/tmp/cache/assets/test/sprockets/0ad1874459c89c2b7b055fbfc086093c
352
+ - test/dummy/tmp/cache/assets/test/sprockets/938ed33abaeec8bfc22e533de5d92fd6
353
+ - test/dummy/tmp/cache/assets/test/sprockets/d592f7f190f2ed0852437aeaf413ffb7
354
+ - test/dummy/tmp/cache/assets/test/sprockets/373b0c58027ae58f732cc7e48e62a522
355
+ - test/dummy/tmp/cache/assets/test/sprockets/6e4717cabfe91d260f46c4adb0acae43
356
+ - test/dummy/tmp/cache/assets/test/sprockets/e05ff4f8801c918dc89fef1d37880568
357
+ - test/dummy/tmp/cache/assets/test/sprockets/16bf950594dc4e49b471963acc1a15d4
358
+ - test/dummy/config.ru
359
+ - test/dummy/public/favicon.ico
360
+ - test/dummy/public/404.html
361
+ - test/dummy/public/422.html
362
+ - test/dummy/public/500.html
363
+ - test/dummy/bin/bundle
364
+ - test/dummy/bin/rake
365
+ - test/dummy/bin/rails
366
+ - test/dummy/db/test.sqlite3
367
+ - test/dummy/db/development.sqlite3
368
+ - test/dummy/db/schema.rb
369
+ - test/dummy/app/views/layouts/application.html.erb
370
+ - test/dummy/app/helpers/application_helper.rb
371
+ - test/dummy/app/assets/stylesheets/application.css
372
+ - test/dummy/app/assets/javascripts/application.js
373
+ - test/dummy/app/controllers/application_controller.rb
374
+ homepage: https://github.com/resque/resque-web
375
+ licenses: []
376
+ metadata: {}
377
+ post_install_message:
378
+ rdoc_options: []
379
+ require_paths:
380
+ - lib
381
+ required_ruby_version: !ruby/object:Gem::Requirement
382
+ requirements:
383
+ - - '>='
384
+ - !ruby/object:Gem::Version
385
+ version: '0'
386
+ required_rubygems_version: !ruby/object:Gem::Requirement
387
+ requirements:
388
+ - - '>='
389
+ - !ruby/object:Gem::Version
390
+ version: '0'
391
+ requirements: []
392
+ rubyforge_project:
393
+ rubygems_version: 2.0.3
394
+ signing_key:
395
+ specification_version: 4
396
+ summary: Rails-based Resque web interface
397
+ test_files:
398
+ - test/test_helper.rb
399
+ - test/unit/helpers/retry_controller_helper_test.rb
400
+ - test/unit/helpers/workers_helper_test.rb
401
+ - test/unit/helpers/queues_helper_test.rb
402
+ - test/unit/helpers/stats_helper_test.rb
403
+ - test/unit/helpers/overview_helper_test.rb
404
+ - test/unit/helpers/jobs_helper_test.rb
405
+ - test/unit/helpers/working_helper_test.rb
406
+ - test/unit/helpers/failures_helper_test.rb
407
+ - test/functional/working_controller_test.rb
408
+ - test/functional/failures_controller_test.rb
409
+ - test/functional/stats_controller_test.rb
410
+ - test/functional/overview_controller_test.rb
411
+ - test/functional/workers_controller_test.rb
412
+ - test/functional/queues_controller_test.rb
413
+ - test/dummy/log/test.log
414
+ - test/dummy/Rakefile
415
+ - test/dummy/config/environment.rb
416
+ - test/dummy/config/environments/development.rb
417
+ - test/dummy/config/environments/production.rb
418
+ - test/dummy/config/environments/test.rb
419
+ - test/dummy/config/initializers/secret_token.rb
420
+ - test/dummy/config/initializers/filter_parameter_logging.rb
421
+ - test/dummy/config/initializers/inflections.rb
422
+ - test/dummy/config/initializers/session_store.rb
423
+ - test/dummy/config/initializers/wrap_parameters.rb
424
+ - test/dummy/config/initializers/mime_types.rb
425
+ - test/dummy/config/initializers/backtrace_silencers.rb
426
+ - test/dummy/config/locales/en.yml
427
+ - test/dummy/config/database.yml
428
+ - test/dummy/config/routes.rb
429
+ - test/dummy/config/application.rb
430
+ - test/dummy/config/boot.rb
431
+ - test/dummy/tmp/cache/assets/development/sprockets/8d0a322f394a2e12a350a4caf9b2c80e
432
+ - test/dummy/tmp/cache/assets/development/sprockets/9f48e8c551b5f898ca5667d92067e33d
433
+ - test/dummy/tmp/cache/assets/development/sprockets/9048f98bf002a866ef7831c71f7124d6
434
+ - test/dummy/tmp/cache/assets/development/sprockets/ff4777d609a0a67e637cc1530d6dc7b2
435
+ - test/dummy/tmp/cache/assets/development/sprockets/0aa776b181456a7f52abf642461a339d
436
+ - test/dummy/tmp/cache/assets/development/sprockets/0d7923c4212365467631d19aafa9ae2c
437
+ - test/dummy/tmp/cache/assets/development/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b
438
+ - test/dummy/tmp/cache/assets/development/sprockets/c2607067849ffce81a050a64bdf2e31b
439
+ - test/dummy/tmp/cache/assets/development/sprockets/02a14af754d35f9d015020c827dc4aad
440
+ - test/dummy/tmp/cache/assets/development/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38
441
+ - test/dummy/tmp/cache/assets/development/sprockets/c4902d10c0dbd2ef1e2edbb71c13456a
442
+ - test/dummy/tmp/cache/assets/development/sprockets/4ff25675e9d69ac5d68dff1d4372f3d1
443
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
444
+ - test/dummy/tmp/cache/assets/development/sprockets/b02ffe2d07d7ce606d1c3a0656d82bfe
445
+ - test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f
446
+ - test/dummy/tmp/cache/assets/development/sprockets/c7f7c001ba2ad5623ead9e6f2d6188e9
447
+ - test/dummy/tmp/cache/assets/development/sprockets/36bf84c5368755f6fbc0c1808cfe7c5d
448
+ - test/dummy/tmp/cache/assets/development/sprockets/d9f00b466d45c065d1281b100de9311f
449
+ - test/dummy/tmp/cache/assets/development/sprockets/267d0243760c55e0ff8039158fbfa98d
450
+ - test/dummy/tmp/cache/assets/development/sprockets/a0113b5b044a3468edab999708723b3d
451
+ - test/dummy/tmp/cache/assets/development/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3
452
+ - test/dummy/tmp/cache/assets/development/sprockets/14882e8f1f7d019b37950944b1053585
453
+ - test/dummy/tmp/cache/assets/development/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b
454
+ - test/dummy/tmp/cache/assets/development/sprockets/47e84a019922f151c4815a3cd738beb6
455
+ - test/dummy/tmp/cache/assets/development/sprockets/b1d2f68953967d51ade8c6d223c2a2aa
456
+ - test/dummy/tmp/cache/assets/development/sprockets/92ad487c49bf84126118e1ada216eb52
457
+ - test/dummy/tmp/cache/assets/development/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe
458
+ - test/dummy/tmp/cache/assets/development/sprockets/060ba1e3c27350033cb45603b40ec988
459
+ - test/dummy/tmp/cache/assets/development/sprockets/1a3e7714b622f1753a451d9417ce2934
460
+ - test/dummy/tmp/cache/assets/development/sprockets/f375226842bb99acc2a5a8f2396b54d3
461
+ - test/dummy/tmp/cache/assets/development/sprockets/cb1265ab418e2013b182c8deafcf897e
462
+ - test/dummy/tmp/cache/assets/development/sprockets/b4505cc242ed408c99b7b2466d1f6099
463
+ - test/dummy/tmp/cache/assets/development/sprockets/510c0a3f6fbee936a507ab77436c1713
464
+ - test/dummy/tmp/cache/assets/development/sprockets/1cabd5edcfb985bf0e754597f453c2d8
465
+ - test/dummy/tmp/cache/assets/development/sprockets/baf363f79f6cd9b6a2b3688b77b58aba
466
+ - test/dummy/tmp/cache/assets/development/sprockets/54745c7a7543c4a5899cf4a7c285c505
467
+ - test/dummy/tmp/cache/assets/development/sprockets/15d6969ab8e6cc86d7e4ec72a9f29473
468
+ - test/dummy/tmp/cache/assets/development/sprockets/c11cf414168c34e88a7c152937e0041c
469
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
470
+ - test/dummy/tmp/cache/assets/development/sprockets/7eab29f4bea09503894bcabf91a971b0
471
+ - test/dummy/tmp/cache/assets/development/sprockets/2359b362b8c593ecacced9da62d27781
472
+ - test/dummy/tmp/cache/assets/development/sprockets/7bdd86db98ea61e2b45fa7a427617a3c
473
+ - test/dummy/tmp/cache/assets/development/sprockets/9780116ab7edfbe2fc71dab2b7d361f8
474
+ - test/dummy/tmp/cache/assets/development/sprockets/8c86ace126a96b8c90b30f12a136fa81
475
+ - test/dummy/tmp/cache/assets/development/sprockets/ceebd7d45f23e34cda37b878e2af5b18
476
+ - test/dummy/tmp/cache/assets/development/sprockets/e46693bc631ec8f6c63f67a75c33f785
477
+ - test/dummy/tmp/cache/assets/development/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4
478
+ - test/dummy/tmp/cache/assets/development/sprockets/e2bae9a171482111f585b481dc2c04c8
479
+ - test/dummy/tmp/cache/assets/development/sprockets/bc2f95ead37a4ea1f050f6f21a446d7c
480
+ - test/dummy/tmp/cache/assets/development/sprockets/885603ea8649d78da8ba6674b31dd289
481
+ - test/dummy/tmp/cache/assets/development/sprockets/9a13af754490df860af9928bcd00fbd3
482
+ - test/dummy/tmp/cache/assets/development/sprockets/be47e0dd1cd9914997311db690cf38d7
483
+ - test/dummy/tmp/cache/assets/development/sprockets/815e702f76d5de58787af0b2954544b4
484
+ - test/dummy/tmp/cache/assets/development/sprockets/29c7be01674c14314b1321da043c31cd
485
+ - test/dummy/tmp/cache/assets/development/sprockets/b1952fdaabef91d96f551aead4200069
486
+ - test/dummy/tmp/cache/assets/development/sprockets/2768ee82dea9ebd337e20faa4c08eda4
487
+ - test/dummy/tmp/cache/assets/development/sprockets/67c23683dbf4e2e805770a041018f256
488
+ - test/dummy/tmp/cache/assets/development/sprockets/f28711adf8b5584c6956034b86f4cbee
489
+ - test/dummy/tmp/cache/assets/development/sprockets/c90e9c573e54b170859449cb2ceb3a7a
490
+ - test/dummy/tmp/cache/assets/development/sprockets/2b60e487f5394d3820f0d9008328de94
491
+ - test/dummy/tmp/cache/assets/development/sprockets/6104f6b3d705c20e2485d2bb6f388f11
492
+ - test/dummy/tmp/cache/assets/development/sprockets/50caadcf8e73c45ce4720b9a1f6f833d
493
+ - test/dummy/tmp/cache/assets/development/sprockets/5ae7043abf033ad9c1db3190239296f4
494
+ - test/dummy/tmp/cache/assets/development/sprockets/b13218598c5f77a5c239c023e3fff575
495
+ - test/dummy/tmp/cache/assets/development/sprockets/61883ec63e4f9e11b14de9de4ca5157c
496
+ - test/dummy/tmp/cache/assets/development/sprockets/6ee0033c04cc130b81becd605709135b
497
+ - test/dummy/tmp/cache/assets/development/sprockets/79973091687030ef9b77e73884ab0c78
498
+ - test/dummy/tmp/cache/assets/development/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619
499
+ - test/dummy/tmp/cache/assets/development/sprockets/67bdb77a662fa6c60ca6ec804ec4e72c
500
+ - test/dummy/tmp/cache/assets/development/sprockets/bfc8b2b4f4c3f91fdc360b426adb2d94
501
+ - test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5
502
+ - test/dummy/tmp/cache/assets/development/sprockets/706b6b4aca8f925cbbff8a4bf161cd03
503
+ - test/dummy/tmp/cache/assets/development/sprockets/8362592cdd4c1b1517d5e3fba760f0d3
504
+ - test/dummy/tmp/cache/assets/development/sprockets/530c2753f447f8c666f628c5b5d65782
505
+ - test/dummy/tmp/cache/assets/development/sprockets/d0cf471bea69c5583f5cb22f924c9d81
506
+ - test/dummy/tmp/cache/assets/development/sprockets/8855c560fba1bd85e26f55568144a4d5
507
+ - test/dummy/tmp/cache/assets/development/sprockets/e64aa4663498f985d9a5c2c65a0f2401
508
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
509
+ - test/dummy/tmp/cache/assets/development/sprockets/d3347e44949d8909be6fb1d64cfb9967
510
+ - test/dummy/tmp/cache/assets/development/sprockets/d2c37ec460e77ea6ea41bbc670889f89
511
+ - test/dummy/tmp/cache/assets/development/sprockets/aa5c2d7aaabb3df93a734411e42a3bfc
512
+ - test/dummy/tmp/cache/assets/development/sprockets/f83b6fecae01f81acf9c39e710258b98
513
+ - test/dummy/tmp/cache/assets/development/sprockets/24fe9e2e6b73f666f6f50460b5fe12db
514
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
515
+ - test/dummy/tmp/cache/assets/development/sprockets/dc0f4af8c3937297fe2fd3f5f4906763
516
+ - test/dummy/tmp/cache/assets/development/sprockets/99cfb6fcfcd8fc23cc41ccfa12576a38
517
+ - test/dummy/tmp/cache/assets/development/sprockets/821dd3a673cddb023723b5a4b98fd493
518
+ - test/dummy/tmp/cache/assets/development/sprockets/722f2a204ab15e0261bc526aa3ea4a3d
519
+ - test/dummy/tmp/cache/assets/development/sprockets/7eadf8ac6771f3b20086c935c28b0b95
520
+ - test/dummy/tmp/cache/assets/development/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e
521
+ - test/dummy/tmp/cache/assets/development/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9
522
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
523
+ - test/dummy/tmp/cache/assets/development/sprockets/9b1a227146b80c04976c0a885c248f82
524
+ - test/dummy/tmp/cache/assets/development/sprockets/acda3fb5202cc9aefb599fd43a058105
525
+ - test/dummy/tmp/cache/assets/development/sprockets/eb8ceeb4c92c6bd813a541d672206eff
526
+ - test/dummy/tmp/cache/assets/development/sprockets/fa282debca304f7fac3307d091f5ecac
527
+ - test/dummy/tmp/cache/assets/development/sprockets/1f93ad5cf36f5c7e5bec2b9cecedfe5c
528
+ - test/dummy/tmp/cache/assets/development/sprockets/ade126a20aa1092d23cc0afaf17c164b
529
+ - test/dummy/tmp/cache/assets/development/sprockets/c79e7b418287c2b4155c8aecd24be5a7
530
+ - test/dummy/tmp/cache/assets/development/sprockets/ae5d2a05a28b6aea379acad80dd0b343
531
+ - test/dummy/tmp/cache/assets/development/sprockets/3fde4850b9ad7516ecd360a4c20cae8b
532
+ - test/dummy/tmp/cache/assets/development/sprockets/ebf2449fa00d257e175bd62b6a757bd3
533
+ - test/dummy/tmp/cache/assets/development/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e
534
+ - test/dummy/tmp/cache/assets/development/sprockets/a64f702451323ab621d1836cdb352123
535
+ - test/dummy/tmp/cache/assets/development/sprockets/2352f28661a506c2c3e144d28bf6a6ca
536
+ - test/dummy/tmp/cache/assets/development/sprockets/fab96f7950f4025de51c865e118904a7
537
+ - test/dummy/tmp/cache/assets/development/sprockets/abd1afcb16ba6e09d6002038d03d56b7
538
+ - test/dummy/tmp/cache/assets/development/sprockets/5d4f24f37f52ec24be03c3ae69a710c2
539
+ - test/dummy/tmp/cache/assets/development/sprockets/c981eb8fa4e3e9ae04dbf1b7b8d7f395
540
+ - test/dummy/tmp/cache/assets/development/sprockets/58c7ee7b861e3bd17b1eb3c09a0ccb7e
541
+ - test/dummy/tmp/cache/assets/development/sprockets/b99c09238dcefa3d795f9f7594d819b7
542
+ - test/dummy/tmp/cache/assets/development/sprockets/c0a0dbfbf315a3edf26670c0f5ca7ecb
543
+ - test/dummy/tmp/cache/assets/development/sprockets/bae95ffbad9e9c33e3d4492a4b986c0b
544
+ - test/dummy/tmp/cache/assets/development/sprockets/5e3a1f4192671516ef3c5b040d3a04ec
545
+ - test/dummy/tmp/cache/assets/development/sprockets/c81b1182b5c851c35680c7acc88d4812
546
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
547
+ - test/dummy/tmp/cache/assets/development/sprockets/cee0dd733846ecda4ac940c6f033fb28
548
+ - test/dummy/tmp/cache/assets/development/sprockets/b5e993500308f32fff09cd7e0ee89efd
549
+ - test/dummy/tmp/cache/assets/development/sprockets/8c71f2e04c07ba078f3fed661fea07ca
550
+ - test/dummy/tmp/cache/assets/development/sprockets/201c8ed8e16a6bad90959a270eb42af5
551
+ - test/dummy/tmp/cache/assets/development/sprockets/e5d439d83d3f264ee47b9f82005a4eef
552
+ - test/dummy/tmp/cache/assets/development/sprockets/eece52c31fc27f6dbb1d3e9dad9c6a67
553
+ - test/dummy/tmp/cache/assets/development/sprockets/0ad1874459c89c2b7b055fbfc086093c
554
+ - test/dummy/tmp/cache/assets/development/sprockets/938ed33abaeec8bfc22e533de5d92fd6
555
+ - test/dummy/tmp/cache/assets/development/sprockets/d592f7f190f2ed0852437aeaf413ffb7
556
+ - test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522
557
+ - test/dummy/tmp/cache/assets/development/sprockets/6e4717cabfe91d260f46c4adb0acae43
558
+ - test/dummy/tmp/cache/assets/development/sprockets/e05ff4f8801c918dc89fef1d37880568
559
+ - test/dummy/tmp/cache/assets/development/sprockets/16bf950594dc4e49b471963acc1a15d4
560
+ - test/dummy/tmp/cache/assets/test/sprockets/8d0a322f394a2e12a350a4caf9b2c80e
561
+ - test/dummy/tmp/cache/assets/test/sprockets/0aa776b181456a7f52abf642461a339d
562
+ - test/dummy/tmp/cache/assets/test/sprockets/0d7923c4212365467631d19aafa9ae2c
563
+ - test/dummy/tmp/cache/assets/test/sprockets/fee8b1f906f22a2ad21ffc8f21dec56b
564
+ - test/dummy/tmp/cache/assets/test/sprockets/23d4f21bc0a61aa91d818a1cbefbfa38
565
+ - test/dummy/tmp/cache/assets/test/sprockets/4d22200fb380d8ae9d5f07525088622f
566
+ - test/dummy/tmp/cache/assets/test/sprockets/d9f00b466d45c065d1281b100de9311f
567
+ - test/dummy/tmp/cache/assets/test/sprockets/267d0243760c55e0ff8039158fbfa98d
568
+ - test/dummy/tmp/cache/assets/test/sprockets/4ef303154e5471cbc5a1b7b312a5fbd3
569
+ - test/dummy/tmp/cache/assets/test/sprockets/32fdb0387d5cd8aba5f0185f10ccaf6b
570
+ - test/dummy/tmp/cache/assets/test/sprockets/b1d2f68953967d51ade8c6d223c2a2aa
571
+ - test/dummy/tmp/cache/assets/test/sprockets/92ad487c49bf84126118e1ada216eb52
572
+ - test/dummy/tmp/cache/assets/test/sprockets/f8181ea5c5ea111ed8a3f0c5c0d59ebe
573
+ - test/dummy/tmp/cache/assets/test/sprockets/1a3e7714b622f1753a451d9417ce2934
574
+ - test/dummy/tmp/cache/assets/test/sprockets/b4505cc242ed408c99b7b2466d1f6099
575
+ - test/dummy/tmp/cache/assets/test/sprockets/510c0a3f6fbee936a507ab77436c1713
576
+ - test/dummy/tmp/cache/assets/test/sprockets/54745c7a7543c4a5899cf4a7c285c505
577
+ - test/dummy/tmp/cache/assets/test/sprockets/c11cf414168c34e88a7c152937e0041c
578
+ - test/dummy/tmp/cache/assets/test/sprockets/2359b362b8c593ecacced9da62d27781
579
+ - test/dummy/tmp/cache/assets/test/sprockets/9780116ab7edfbe2fc71dab2b7d361f8
580
+ - test/dummy/tmp/cache/assets/test/sprockets/e46693bc631ec8f6c63f67a75c33f785
581
+ - test/dummy/tmp/cache/assets/test/sprockets/c29df33a00fdc6a29f73386c3e0ae5f4
582
+ - test/dummy/tmp/cache/assets/test/sprockets/815e702f76d5de58787af0b2954544b4
583
+ - test/dummy/tmp/cache/assets/test/sprockets/b1952fdaabef91d96f551aead4200069
584
+ - test/dummy/tmp/cache/assets/test/sprockets/67c23683dbf4e2e805770a041018f256
585
+ - test/dummy/tmp/cache/assets/test/sprockets/c90e9c573e54b170859449cb2ceb3a7a
586
+ - test/dummy/tmp/cache/assets/test/sprockets/2b60e487f5394d3820f0d9008328de94
587
+ - test/dummy/tmp/cache/assets/test/sprockets/50caadcf8e73c45ce4720b9a1f6f833d
588
+ - test/dummy/tmp/cache/assets/test/sprockets/b13218598c5f77a5c239c023e3fff575
589
+ - test/dummy/tmp/cache/assets/test/sprockets/61883ec63e4f9e11b14de9de4ca5157c
590
+ - test/dummy/tmp/cache/assets/test/sprockets/00d7e4d5eefd54b7a2b5415b3f4f0619
591
+ - test/dummy/tmp/cache/assets/test/sprockets/8fbf100e961e22baca23d1850b41e4d5
592
+ - test/dummy/tmp/cache/assets/test/sprockets/8362592cdd4c1b1517d5e3fba760f0d3
593
+ - test/dummy/tmp/cache/assets/test/sprockets/8855c560fba1bd85e26f55568144a4d5
594
+ - test/dummy/tmp/cache/assets/test/sprockets/d2c37ec460e77ea6ea41bbc670889f89
595
+ - test/dummy/tmp/cache/assets/test/sprockets/722f2a204ab15e0261bc526aa3ea4a3d
596
+ - test/dummy/tmp/cache/assets/test/sprockets/6c9f5bc4bee5fb0d8056b4c75fafef1e
597
+ - test/dummy/tmp/cache/assets/test/sprockets/88e93f0cb6b7ecfaf55472f4aade58f9
598
+ - test/dummy/tmp/cache/assets/test/sprockets/eb8ceeb4c92c6bd813a541d672206eff
599
+ - test/dummy/tmp/cache/assets/test/sprockets/ade126a20aa1092d23cc0afaf17c164b
600
+ - test/dummy/tmp/cache/assets/test/sprockets/ae5d2a05a28b6aea379acad80dd0b343
601
+ - test/dummy/tmp/cache/assets/test/sprockets/61a6ced52f8ef4bc0e18a0f42c45376e
602
+ - test/dummy/tmp/cache/assets/test/sprockets/abd1afcb16ba6e09d6002038d03d56b7
603
+ - test/dummy/tmp/cache/assets/test/sprockets/5d4f24f37f52ec24be03c3ae69a710c2
604
+ - test/dummy/tmp/cache/assets/test/sprockets/b99c09238dcefa3d795f9f7594d819b7
605
+ - test/dummy/tmp/cache/assets/test/sprockets/5e3a1f4192671516ef3c5b040d3a04ec
606
+ - test/dummy/tmp/cache/assets/test/sprockets/8c71f2e04c07ba078f3fed661fea07ca
607
+ - test/dummy/tmp/cache/assets/test/sprockets/201c8ed8e16a6bad90959a270eb42af5
608
+ - test/dummy/tmp/cache/assets/test/sprockets/e5d439d83d3f264ee47b9f82005a4eef
609
+ - test/dummy/tmp/cache/assets/test/sprockets/0ad1874459c89c2b7b055fbfc086093c
610
+ - test/dummy/tmp/cache/assets/test/sprockets/938ed33abaeec8bfc22e533de5d92fd6
611
+ - test/dummy/tmp/cache/assets/test/sprockets/d592f7f190f2ed0852437aeaf413ffb7
612
+ - test/dummy/tmp/cache/assets/test/sprockets/373b0c58027ae58f732cc7e48e62a522
613
+ - test/dummy/tmp/cache/assets/test/sprockets/6e4717cabfe91d260f46c4adb0acae43
614
+ - test/dummy/tmp/cache/assets/test/sprockets/e05ff4f8801c918dc89fef1d37880568
615
+ - test/dummy/tmp/cache/assets/test/sprockets/16bf950594dc4e49b471963acc1a15d4
616
+ - test/dummy/config.ru
617
+ - test/dummy/public/favicon.ico
618
+ - test/dummy/public/404.html
619
+ - test/dummy/public/422.html
620
+ - test/dummy/public/500.html
621
+ - test/dummy/bin/bundle
622
+ - test/dummy/bin/rake
623
+ - test/dummy/bin/rails
624
+ - test/dummy/db/test.sqlite3
625
+ - test/dummy/db/development.sqlite3
626
+ - test/dummy/db/schema.rb
627
+ - test/dummy/app/views/layouts/application.html.erb
628
+ - test/dummy/app/helpers/application_helper.rb
629
+ - test/dummy/app/assets/stylesheets/application.css
630
+ - test/dummy/app/assets/javascripts/application.js
631
+ - test/dummy/app/controllers/application_controller.rb
632
+ has_rdoc: