cant_wait 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +65 -0
  5. data/Rakefile +18 -0
  6. data/cant_wait.gemspec +49 -0
  7. data/lib/cant_wait/cant_wait_railtie.rb +20 -0
  8. data/lib/cant_wait/version.rb +3 -0
  9. data/lib/cant_wait.rb +6 -0
  10. data/tasks/debugging.rake +108 -0
  11. data/tasks/publishing.rake +37 -0
  12. data/tasks/testing.rake +134 -0
  13. data/test/README.md +100 -0
  14. data/test/cant_wait_test.rb +127 -0
  15. data/test/database.yml +6 -0
  16. data/test/test_apps/Test_3_0_20/.gitignore +4 -0
  17. data/test/test_apps/Test_3_0_20/Gemfile +52 -0
  18. data/test/test_apps/Test_3_0_20/README +256 -0
  19. data/test/test_apps/Test_3_0_20/Rakefile +7 -0
  20. data/test/test_apps/Test_3_0_20/app/controllers/application_controller.rb +3 -0
  21. data/test/test_apps/Test_3_0_20/app/helpers/application_helper.rb +2 -0
  22. data/test/test_apps/Test_3_0_20/app/views/layouts/application.html.erb +14 -0
  23. data/test/test_apps/Test_3_0_20/config/application.rb +42 -0
  24. data/test/test_apps/Test_3_0_20/config/boot.rb +6 -0
  25. data/test/test_apps/Test_3_0_20/config/database.yml +6 -0
  26. data/test/test_apps/Test_3_0_20/config/environment.rb +5 -0
  27. data/test/test_apps/Test_3_0_20/config/environments/development.rb +26 -0
  28. data/test/test_apps/Test_3_0_20/config/environments/production.rb +49 -0
  29. data/test/test_apps/Test_3_0_20/config/environments/test.rb +35 -0
  30. data/test/test_apps/Test_3_0_20/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/test_apps/Test_3_0_20/config/initializers/inflections.rb +10 -0
  32. data/test/test_apps/Test_3_0_20/config/initializers/mime_types.rb +5 -0
  33. data/test/test_apps/Test_3_0_20/config/initializers/secret_token.rb +7 -0
  34. data/test/test_apps/Test_3_0_20/config/initializers/session_store.rb +8 -0
  35. data/test/test_apps/Test_3_0_20/config/locales/en.yml +5 -0
  36. data/test/test_apps/Test_3_0_20/config/routes.rb +58 -0
  37. data/test/test_apps/Test_3_0_20/config.ru +4 -0
  38. data/test/test_apps/Test_3_0_20/db/seeds.rb +7 -0
  39. data/test/test_apps/Test_3_0_20/lib/tasks/.gitkeep +0 -0
  40. data/test/test_apps/Test_3_0_20/public/404.html +26 -0
  41. data/test/test_apps/Test_3_0_20/public/422.html +26 -0
  42. data/test/test_apps/Test_3_0_20/public/500.html +26 -0
  43. data/test/test_apps/Test_3_0_20/public/favicon.ico +0 -0
  44. data/test/test_apps/Test_3_0_20/public/images/rails.png +0 -0
  45. data/test/test_apps/Test_3_0_20/public/index.html +239 -0
  46. data/test/test_apps/Test_3_0_20/public/javascripts/application.js +2 -0
  47. data/test/test_apps/Test_3_0_20/public/javascripts/controls.js +965 -0
  48. data/test/test_apps/Test_3_0_20/public/javascripts/dragdrop.js +974 -0
  49. data/test/test_apps/Test_3_0_20/public/javascripts/effects.js +1123 -0
  50. data/test/test_apps/Test_3_0_20/public/javascripts/prototype.js +6001 -0
  51. data/test/test_apps/Test_3_0_20/public/javascripts/rails.js +202 -0
  52. data/test/test_apps/Test_3_0_20/public/robots.txt +5 -0
  53. data/test/test_apps/Test_3_0_20/public/stylesheets/.gitkeep +0 -0
  54. data/test/test_apps/Test_3_0_20/script/rails +6 -0
  55. data/test/test_apps/Test_3_0_20/test/performance/browsing_test.rb +9 -0
  56. data/test/test_apps/Test_3_0_20/test/test_helper.rb +13 -0
  57. data/test/test_apps/Test_3_0_20/vendor/plugins/.gitkeep +0 -0
  58. data/test/test_apps/Test_3_0_3/.gitignore +4 -0
  59. data/test/test_apps/Test_3_0_3/Gemfile +52 -0
  60. data/test/test_apps/Test_3_0_3/README +256 -0
  61. data/test/test_apps/Test_3_0_3/Rakefile +7 -0
  62. data/test/test_apps/Test_3_0_3/app/controllers/application_controller.rb +3 -0
  63. data/test/test_apps/Test_3_0_3/app/helpers/application_helper.rb +2 -0
  64. data/test/test_apps/Test_3_0_3/app/views/layouts/application.html.erb +14 -0
  65. data/test/test_apps/Test_3_0_3/config/application.rb +42 -0
  66. data/test/test_apps/Test_3_0_3/config/boot.rb +13 -0
  67. data/test/test_apps/Test_3_0_3/config/database.yml +6 -0
  68. data/test/test_apps/Test_3_0_3/config/environment.rb +5 -0
  69. data/test/test_apps/Test_3_0_3/config/environments/development.rb +26 -0
  70. data/test/test_apps/Test_3_0_3/config/environments/production.rb +49 -0
  71. data/test/test_apps/Test_3_0_3/config/environments/test.rb +35 -0
  72. data/test/test_apps/Test_3_0_3/config/initializers/backtrace_silencers.rb +7 -0
  73. data/test/test_apps/Test_3_0_3/config/initializers/inflections.rb +10 -0
  74. data/test/test_apps/Test_3_0_3/config/initializers/mime_types.rb +5 -0
  75. data/test/test_apps/Test_3_0_3/config/initializers/secret_token.rb +7 -0
  76. data/test/test_apps/Test_3_0_3/config/initializers/session_store.rb +8 -0
  77. data/test/test_apps/Test_3_0_3/config/locales/en.yml +5 -0
  78. data/test/test_apps/Test_3_0_3/config/routes.rb +58 -0
  79. data/test/test_apps/Test_3_0_3/config.ru +4 -0
  80. data/test/test_apps/Test_3_0_3/db/seeds.rb +7 -0
  81. data/test/test_apps/Test_3_0_3/lib/tasks/.gitkeep +0 -0
  82. data/test/test_apps/Test_3_0_3/public/404.html +26 -0
  83. data/test/test_apps/Test_3_0_3/public/422.html +26 -0
  84. data/test/test_apps/Test_3_0_3/public/500.html +26 -0
  85. data/test/test_apps/Test_3_0_3/public/favicon.ico +0 -0
  86. data/test/test_apps/Test_3_0_3/public/images/rails.png +0 -0
  87. data/test/test_apps/Test_3_0_3/public/index.html +239 -0
  88. data/test/test_apps/Test_3_0_3/public/javascripts/application.js +2 -0
  89. data/test/test_apps/Test_3_0_3/public/javascripts/controls.js +965 -0
  90. data/test/test_apps/Test_3_0_3/public/javascripts/dragdrop.js +974 -0
  91. data/test/test_apps/Test_3_0_3/public/javascripts/effects.js +1123 -0
  92. data/test/test_apps/Test_3_0_3/public/javascripts/prototype.js +6001 -0
  93. data/test/test_apps/Test_3_0_3/public/javascripts/rails.js +175 -0
  94. data/test/test_apps/Test_3_0_3/public/robots.txt +5 -0
  95. data/test/test_apps/Test_3_0_3/public/stylesheets/.gitkeep +0 -0
  96. data/test/test_apps/Test_3_0_3/script/rails +6 -0
  97. data/test/test_apps/Test_3_0_3/test/performance/browsing_test.rb +9 -0
  98. data/test/test_apps/Test_3_0_3/test/test_helper.rb +13 -0
  99. data/test/test_apps/Test_3_0_3/vendor/plugins/.gitkeep +0 -0
  100. data/test/test_apps/Test_3_1_12/.gitignore +15 -0
  101. data/test/test_apps/Test_3_1_12/Gemfile +60 -0
  102. data/test/test_apps/Test_3_1_12/README +261 -0
  103. data/test/test_apps/Test_3_1_12/Rakefile +7 -0
  104. data/test/test_apps/Test_3_1_12/app/assets/images/rails.png +0 -0
  105. data/test/test_apps/Test_3_1_12/app/assets/javascripts/application.js +9 -0
  106. data/test/test_apps/Test_3_1_12/app/assets/stylesheets/application.css +7 -0
  107. data/test/test_apps/Test_3_1_12/app/controllers/application_controller.rb +3 -0
  108. data/test/test_apps/Test_3_1_12/app/helpers/application_helper.rb +2 -0
  109. data/test/test_apps/Test_3_1_12/app/mailers/.gitkeep +0 -0
  110. data/test/test_apps/Test_3_1_12/app/models/.gitkeep +0 -0
  111. data/test/test_apps/Test_3_1_12/app/views/layouts/application.html.erb +14 -0
  112. data/test/test_apps/Test_3_1_12/config/application.rb +48 -0
  113. data/test/test_apps/Test_3_1_12/config/boot.rb +6 -0
  114. data/test/test_apps/Test_3_1_12/config/database.yml +6 -0
  115. data/test/test_apps/Test_3_1_12/config/environment.rb +5 -0
  116. data/test/test_apps/Test_3_1_12/config/environments/development.rb +30 -0
  117. data/test/test_apps/Test_3_1_12/config/environments/production.rb +60 -0
  118. data/test/test_apps/Test_3_1_12/config/environments/test.rb +39 -0
  119. data/test/test_apps/Test_3_1_12/config/initializers/backtrace_silencers.rb +7 -0
  120. data/test/test_apps/Test_3_1_12/config/initializers/inflections.rb +10 -0
  121. data/test/test_apps/Test_3_1_12/config/initializers/mime_types.rb +5 -0
  122. data/test/test_apps/Test_3_1_12/config/initializers/secret_token.rb +7 -0
  123. data/test/test_apps/Test_3_1_12/config/initializers/session_store.rb +8 -0
  124. data/test/test_apps/Test_3_1_12/config/initializers/wrap_parameters.rb +14 -0
  125. data/test/test_apps/Test_3_1_12/config/locales/en.yml +5 -0
  126. data/test/test_apps/Test_3_1_12/config/routes.rb +58 -0
  127. data/test/test_apps/Test_3_1_12/config.ru +4 -0
  128. data/test/test_apps/Test_3_1_12/db/seeds.rb +7 -0
  129. data/test/test_apps/Test_3_1_12/lib/assets/.gitkeep +0 -0
  130. data/test/test_apps/Test_3_1_12/lib/tasks/.gitkeep +0 -0
  131. data/test/test_apps/Test_3_1_12/log/.gitkeep +0 -0
  132. data/test/test_apps/Test_3_1_12/public/404.html +26 -0
  133. data/test/test_apps/Test_3_1_12/public/422.html +26 -0
  134. data/test/test_apps/Test_3_1_12/public/500.html +26 -0
  135. data/test/test_apps/Test_3_1_12/public/favicon.ico +0 -0
  136. data/test/test_apps/Test_3_1_12/public/index.html +241 -0
  137. data/test/test_apps/Test_3_1_12/public/robots.txt +5 -0
  138. data/test/test_apps/Test_3_1_12/script/rails +6 -0
  139. data/test/test_apps/Test_3_1_12/test/fixtures/.gitkeep +0 -0
  140. data/test/test_apps/Test_3_1_12/test/functional/.gitkeep +0 -0
  141. data/test/test_apps/Test_3_1_12/test/integration/.gitkeep +0 -0
  142. data/test/test_apps/Test_3_1_12/test/performance/browsing_test.rb +12 -0
  143. data/test/test_apps/Test_3_1_12/test/test_helper.rb +13 -0
  144. data/test/test_apps/Test_3_1_12/test/unit/.gitkeep +0 -0
  145. data/test/test_apps/Test_3_1_12/vendor/assets/stylesheets/.gitkeep +0 -0
  146. data/test/test_apps/Test_3_1_12/vendor/plugins/.gitkeep +0 -0
  147. data/test/test_apps/Test_3_2_13/.gitignore +15 -0
  148. data/test/test_apps/Test_3_2_13/Gemfile +58 -0
  149. data/test/test_apps/Test_3_2_13/README.rdoc +261 -0
  150. data/test/test_apps/Test_3_2_13/Rakefile +7 -0
  151. data/test/test_apps/Test_3_2_13/app/assets/images/rails.png +0 -0
  152. data/test/test_apps/Test_3_2_13/app/assets/javascripts/application.js +15 -0
  153. data/test/test_apps/Test_3_2_13/app/assets/stylesheets/application.css +13 -0
  154. data/test/test_apps/Test_3_2_13/app/controllers/application_controller.rb +3 -0
  155. data/test/test_apps/Test_3_2_13/app/helpers/application_helper.rb +2 -0
  156. data/test/test_apps/Test_3_2_13/app/mailers/.gitkeep +0 -0
  157. data/test/test_apps/Test_3_2_13/app/models/.gitkeep +0 -0
  158. data/test/test_apps/Test_3_2_13/app/views/layouts/application.html.erb +14 -0
  159. data/test/test_apps/Test_3_2_13/config/application.rb +62 -0
  160. data/test/test_apps/Test_3_2_13/config/boot.rb +6 -0
  161. data/test/test_apps/Test_3_2_13/config/database.yml +6 -0
  162. data/test/test_apps/Test_3_2_13/config/environment.rb +5 -0
  163. data/test/test_apps/Test_3_2_13/config/environments/development.rb +37 -0
  164. data/test/test_apps/Test_3_2_13/config/environments/production.rb +67 -0
  165. data/test/test_apps/Test_3_2_13/config/environments/test.rb +37 -0
  166. data/test/test_apps/Test_3_2_13/config/initializers/backtrace_silencers.rb +7 -0
  167. data/test/test_apps/Test_3_2_13/config/initializers/inflections.rb +15 -0
  168. data/test/test_apps/Test_3_2_13/config/initializers/mime_types.rb +5 -0
  169. data/test/test_apps/Test_3_2_13/config/initializers/secret_token.rb +7 -0
  170. data/test/test_apps/Test_3_2_13/config/initializers/session_store.rb +8 -0
  171. data/test/test_apps/Test_3_2_13/config/initializers/wrap_parameters.rb +14 -0
  172. data/test/test_apps/Test_3_2_13/config/locales/en.yml +5 -0
  173. data/test/test_apps/Test_3_2_13/config/routes.rb +58 -0
  174. data/test/test_apps/Test_3_2_13/config.ru +4 -0
  175. data/test/test_apps/Test_3_2_13/db/seeds.rb +7 -0
  176. data/test/test_apps/Test_3_2_13/lib/assets/.gitkeep +0 -0
  177. data/test/test_apps/Test_3_2_13/lib/tasks/.gitkeep +0 -0
  178. data/test/test_apps/Test_3_2_13/log/.gitkeep +0 -0
  179. data/test/test_apps/Test_3_2_13/public/404.html +26 -0
  180. data/test/test_apps/Test_3_2_13/public/422.html +26 -0
  181. data/test/test_apps/Test_3_2_13/public/500.html +25 -0
  182. data/test/test_apps/Test_3_2_13/public/favicon.ico +0 -0
  183. data/test/test_apps/Test_3_2_13/public/index.html +241 -0
  184. data/test/test_apps/Test_3_2_13/public/robots.txt +5 -0
  185. data/test/test_apps/Test_3_2_13/script/rails +6 -0
  186. data/test/test_apps/Test_3_2_13/test/fixtures/.gitkeep +0 -0
  187. data/test/test_apps/Test_3_2_13/test/functional/.gitkeep +0 -0
  188. data/test/test_apps/Test_3_2_13/test/integration/.gitkeep +0 -0
  189. data/test/test_apps/Test_3_2_13/test/performance/browsing_test.rb +12 -0
  190. data/test/test_apps/Test_3_2_13/test/test_helper.rb +13 -0
  191. data/test/test_apps/Test_3_2_13/test/unit/.gitkeep +0 -0
  192. data/test/test_apps/Test_3_2_13/vendor/assets/javascripts/.gitkeep +0 -0
  193. data/test/test_apps/Test_3_2_13/vendor/assets/stylesheets/.gitkeep +0 -0
  194. data/test/test_apps/Test_3_2_13/vendor/plugins/.gitkeep +0 -0
  195. data/test/test_apps/Test_4_0_0_rc1/.gitignore +16 -0
  196. data/test/test_apps/Test_4_0_0_rc1/Gemfile +65 -0
  197. data/test/test_apps/Test_4_0_0_rc1/README.rdoc +28 -0
  198. data/test/test_apps/Test_4_0_0_rc1/Rakefile +6 -0
  199. data/test/test_apps/Test_4_0_0_rc1/app/assets/javascripts/application.js +16 -0
  200. data/test/test_apps/Test_4_0_0_rc1/app/assets/stylesheets/application.css +13 -0
  201. data/test/test_apps/Test_4_0_0_rc1/app/controllers/application_controller.rb +5 -0
  202. data/test/test_apps/Test_4_0_0_rc1/app/controllers/concerns/.keep +0 -0
  203. data/test/test_apps/Test_4_0_0_rc1/app/helpers/application_helper.rb +2 -0
  204. data/test/test_apps/Test_4_0_0_rc1/app/mailers/.keep +0 -0
  205. data/test/test_apps/Test_4_0_0_rc1/app/models/.keep +0 -0
  206. data/test/test_apps/Test_4_0_0_rc1/app/models/concerns/.keep +0 -0
  207. data/test/test_apps/Test_4_0_0_rc1/app/views/layouts/application.html.erb +14 -0
  208. data/test/test_apps/Test_4_0_0_rc1/bin/bundle +3 -0
  209. data/test/test_apps/Test_4_0_0_rc1/bin/rails +4 -0
  210. data/test/test_apps/Test_4_0_0_rc1/bin/rake +4 -0
  211. data/test/test_apps/Test_4_0_0_rc1/config/application.rb +23 -0
  212. data/test/test_apps/Test_4_0_0_rc1/config/boot.rb +4 -0
  213. data/test/test_apps/Test_4_0_0_rc1/config/database.yml +7 -0
  214. data/test/test_apps/Test_4_0_0_rc1/config/environment.rb +5 -0
  215. data/test/test_apps/Test_4_0_0_rc1/config/environments/development.rb +29 -0
  216. data/test/test_apps/Test_4_0_0_rc1/config/environments/production.rb +80 -0
  217. data/test/test_apps/Test_4_0_0_rc1/config/environments/test.rb +36 -0
  218. data/test/test_apps/Test_4_0_0_rc1/config/initializers/backtrace_silencers.rb +7 -0
  219. data/test/test_apps/Test_4_0_0_rc1/config/initializers/filter_parameter_logging.rb +4 -0
  220. data/test/test_apps/Test_4_0_0_rc1/config/initializers/inflections.rb +16 -0
  221. data/test/test_apps/Test_4_0_0_rc1/config/initializers/mime_types.rb +5 -0
  222. data/test/test_apps/Test_4_0_0_rc1/config/initializers/secret_token.rb +12 -0
  223. data/test/test_apps/Test_4_0_0_rc1/config/initializers/session_store.rb +3 -0
  224. data/test/test_apps/Test_4_0_0_rc1/config/initializers/wrap_parameters.rb +14 -0
  225. data/test/test_apps/Test_4_0_0_rc1/config/locales/en.yml +23 -0
  226. data/test/test_apps/Test_4_0_0_rc1/config/routes.rb +49 -0
  227. data/test/test_apps/Test_4_0_0_rc1/config.ru +4 -0
  228. data/test/test_apps/Test_4_0_0_rc1/db/seeds.rb +7 -0
  229. data/test/test_apps/Test_4_0_0_rc1/lib/assets/.keep +0 -0
  230. data/test/test_apps/Test_4_0_0_rc1/lib/tasks/.keep +0 -0
  231. data/test/test_apps/Test_4_0_0_rc1/log/.keep +0 -0
  232. data/test/test_apps/Test_4_0_0_rc1/public/404.html +58 -0
  233. data/test/test_apps/Test_4_0_0_rc1/public/422.html +58 -0
  234. data/test/test_apps/Test_4_0_0_rc1/public/500.html +57 -0
  235. data/test/test_apps/Test_4_0_0_rc1/public/favicon.ico +0 -0
  236. data/test/test_apps/Test_4_0_0_rc1/public/robots.txt +5 -0
  237. data/test/test_apps/Test_4_0_0_rc1/test/controllers/.keep +0 -0
  238. data/test/test_apps/Test_4_0_0_rc1/test/fixtures/.keep +0 -0
  239. data/test/test_apps/Test_4_0_0_rc1/test/helpers/.keep +0 -0
  240. data/test/test_apps/Test_4_0_0_rc1/test/integration/.keep +0 -0
  241. data/test/test_apps/Test_4_0_0_rc1/test/mailers/.keep +0 -0
  242. data/test/test_apps/Test_4_0_0_rc1/test/models/.keep +0 -0
  243. data/test/test_apps/Test_4_0_0_rc1/test/test_helper.rb +15 -0
  244. data/test/test_apps/Test_4_0_0_rc1/vendor/assets/javascripts/.keep +0 -0
  245. data/test/test_apps/Test_4_0_0_rc1/vendor/assets/stylesheets/.keep +0 -0
  246. data.tar.gz.sig +2 -0
  247. metadata +659 -0
  248. metadata.gz.sig +4 -0
metadata ADDED
@@ -0,0 +1,659 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cant_wait
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Carlos A. Carro Duplá
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain:
12
+ - !binary |-
13
+ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUQ0RENDQXNpZ0F3SUJB
14
+ Z0lKQUlMQ0IwVktkbUdYTUEwR0NTcUdTSWIzRFFFQkJRVUFNRk14Q3pBSkJn
15
+ TlYKQkFZVEFsVlRNUXN3Q1FZRFZRUUlFd0pOUkRFUk1BOEdBMVVFQXhNSVEy
16
+ RnliRzl6UTBReEpEQWlCZ2txaGtpRwo5dzBCQ1FFV0ZXTmpZWEp5YjJSMWNH
17
+ eGhRR2R0WVdsc0xtTnZiVEFlRncweE16QTJNRFF3TURBNE1qTmFGdzB4Ck5E
18
+ QTJNRFF3TURBNE1qTmFNRk14Q3pBSkJnTlZCQVlUQWxWVE1Rc3dDUVlEVlFR
19
+ SUV3Sk5SREVSTUE4R0ExVUUKQXhNSVEyRnliRzl6UTBReEpEQWlCZ2txaGtp
20
+ Rzl3MEJDUUVXRldOallYSnliMlIxY0d4aFFHZHRZV2xzTG1OdgpiVENDQVNJ
21
+ d0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNZC94SGI1
22
+ RHc1SHVvbjJIZlJtCkJEU3MxQnZMV1U2VnM5dlBlajQ0SUtnNUhvSXN6aHhE
23
+ WEJkaEVsQk1xS2NVVDkrUHk2eUhmN3QyVG9Zak9jcW8KM2ZEcjFsUlhLTTZX
24
+ Mk90SGR4OFoxY0JIeDVSWDlJSVY2Z3JOcTJPVjgyT2I0ajhrUHJ4VjlML1ZO
25
+ T0w1R1Q5bgpHc2lVekg3b1hYaC85dzhDcXBCeTh4L29UT3ExRG8yT0VUZEs5
26
+ RGxqNGJOcnpUTG80WXgxaWlQNCtZSTJBNnU1CmZLSU84aXBtWlRHQ21GS3hv
27
+ TGpHWlU4TU90VS9CdE1xQ215eTgxekNRQTFLdDhjTTIxRFBmSnIzanhySXNS
28
+ VG8KTTlnalRlNEFRcElhbWNxM0NWWXA1KytpS3gxeHdOc1I3all5dGwzNXRY
29
+ UlFLbnJOZzNoL2Z0SnVBb21EVldqbQpoRFVDQXdFQUFhT0J0akNCc3pBZEJn
30
+ TlZIUTRFRmdRVWtZbkdLNnJQMHV5dHpWdG14TzZPcktTVDJBY3dnWU1HCkEx
31
+ VWRJd1I4TUhxQUZKR0p4aXVxejlMc3JjMWJac1R1anF5a2s5Z0hvVmVrVlRC
32
+ VE1Rc3dDUVlEVlFRR0V3SlYKVXpFTE1Ba0dBMVVFQ0JNQ1RVUXhFVEFQQmdO
33
+ VkJBTVRDRU5oY214dmMwTkVNU1F3SWdZSktvWklodmNOQVFrQgpGaFZqWTJG
34
+ eWNtOWtkWEJzWVVCbmJXRnBiQzVqYjIyQ0NRQ0N3Z2RGU25aaGx6QU1CZ05W
35
+ SFJNRUJUQURBUUgvCk1BMEdDU3FHU0liM0RRRUJCUVVBQTRJQkFRQUZuYTRj
36
+ ZGhCUjVPYXN5SDIyZExURzBkSkx6aExSU21CbkxXT1QKaEtxNGRwK3AwekJW
37
+ Q0lxZDl0VlAvb2p2ZEttNExWdGRtZCtqK2p2ZWRVVFNpNmh0RGdpRFJEWThr
38
+ dEhOWDRRMwptVGVjU3RrU0pUdXd5ZEUweE14enduZ3ZDcHdwb1pOWHpmU2ZV
39
+ bXZkc1RwRkpDVGlrSmxoYVpaaUxxb0FQZ01iCnRIYVkrdUdMQXdubWk3b3pE
40
+ Ly82WG1Rejc2d2x4eUJKZk40aHQxUHMrRlBzMW05SmFvQnAwMTFrME9iZ3BU
41
+ UGQKaHEvY3Z1TXJ2OTBVcDJKaldySlhMZTJ3VVNjQWtsek5iVVY2aDVmSjlT
42
+ cHg0UWV0bkZUeGkwaEVqQnV4b1UyUQpFcVJVaGpGYkpGSm9TTW9ycXV4N0w1
43
+ Uk5ML3JGYzBrTHY5S2lCYk02UEF6QjhhcUQKLS0tLS1FTkQgQ0VSVElGSUNB
44
+ VEUtLS0tLQo=
45
+ date: 2013-06-04 00:00:00.000000000 Z
46
+ dependencies:
47
+ - !ruby/object:Gem::Dependency
48
+ name: rails
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 3.0.3
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: 3.0.3
63
+ - !ruby/object:Gem::Dependency
64
+ name: bundler
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ version: '1.3'
71
+ type: :development
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: '1.3'
79
+ - !ruby/object:Gem::Dependency
80
+ name: rake
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: '10.0'
87
+ type: :development
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ version: '10.0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: pg
97
+ requirement: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ~>
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: minitest-growl
113
+ requirement: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 0.0.3
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ~>
125
+ - !ruby/object:Gem::Version
126
+ version: 0.0.3
127
+ - !ruby/object:Gem::Dependency
128
+ name: minitest
129
+ requirement: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ~>
133
+ - !ruby/object:Gem::Version
134
+ version: 4.7.4
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: 4.7.4
143
+ description: ! " Adds a timeout setting for PostgreSQL databases in a Ruby on Rails
144
+ application.\n If any SQL statement takes more time than the timeout value, it
145
+ will be cancelled, and ActiveRecord\n would raise a PGError exception.\n In
146
+ the config/database.yml file, indicate a timeout in milliseconds for each environment:\n
147
+ \ production:\n adapter: postgresql\n timeout: 120_000 # 2 minutes\n
148
+ \ ...\n (see documentation for more details)\n"
149
+ email:
150
+ - ccarrodupla@gmail.com
151
+ executables: []
152
+ extensions: []
153
+ extra_rdoc_files: []
154
+ files:
155
+ - .gitignore
156
+ - Gemfile
157
+ - LICENSE.txt
158
+ - README.md
159
+ - Rakefile
160
+ - cant_wait.gemspec
161
+ - lib/cant_wait.rb
162
+ - lib/cant_wait/cant_wait_railtie.rb
163
+ - lib/cant_wait/version.rb
164
+ - tasks/debugging.rake
165
+ - tasks/publishing.rake
166
+ - tasks/testing.rake
167
+ - test/README.md
168
+ - test/cant_wait_test.rb
169
+ - test/database.yml
170
+ - test/test_apps/Test_3_0_20/.gitignore
171
+ - test/test_apps/Test_3_0_20/Gemfile
172
+ - test/test_apps/Test_3_0_20/README
173
+ - test/test_apps/Test_3_0_20/Rakefile
174
+ - test/test_apps/Test_3_0_20/app/controllers/application_controller.rb
175
+ - test/test_apps/Test_3_0_20/app/helpers/application_helper.rb
176
+ - test/test_apps/Test_3_0_20/app/views/layouts/application.html.erb
177
+ - test/test_apps/Test_3_0_20/config.ru
178
+ - test/test_apps/Test_3_0_20/config/application.rb
179
+ - test/test_apps/Test_3_0_20/config/boot.rb
180
+ - test/test_apps/Test_3_0_20/config/database.yml
181
+ - test/test_apps/Test_3_0_20/config/environment.rb
182
+ - test/test_apps/Test_3_0_20/config/environments/development.rb
183
+ - test/test_apps/Test_3_0_20/config/environments/production.rb
184
+ - test/test_apps/Test_3_0_20/config/environments/test.rb
185
+ - test/test_apps/Test_3_0_20/config/initializers/backtrace_silencers.rb
186
+ - test/test_apps/Test_3_0_20/config/initializers/inflections.rb
187
+ - test/test_apps/Test_3_0_20/config/initializers/mime_types.rb
188
+ - test/test_apps/Test_3_0_20/config/initializers/secret_token.rb
189
+ - test/test_apps/Test_3_0_20/config/initializers/session_store.rb
190
+ - test/test_apps/Test_3_0_20/config/locales/en.yml
191
+ - test/test_apps/Test_3_0_20/config/routes.rb
192
+ - test/test_apps/Test_3_0_20/db/seeds.rb
193
+ - test/test_apps/Test_3_0_20/lib/tasks/.gitkeep
194
+ - test/test_apps/Test_3_0_20/public/404.html
195
+ - test/test_apps/Test_3_0_20/public/422.html
196
+ - test/test_apps/Test_3_0_20/public/500.html
197
+ - test/test_apps/Test_3_0_20/public/favicon.ico
198
+ - test/test_apps/Test_3_0_20/public/images/rails.png
199
+ - test/test_apps/Test_3_0_20/public/index.html
200
+ - test/test_apps/Test_3_0_20/public/javascripts/application.js
201
+ - test/test_apps/Test_3_0_20/public/javascripts/controls.js
202
+ - test/test_apps/Test_3_0_20/public/javascripts/dragdrop.js
203
+ - test/test_apps/Test_3_0_20/public/javascripts/effects.js
204
+ - test/test_apps/Test_3_0_20/public/javascripts/prototype.js
205
+ - test/test_apps/Test_3_0_20/public/javascripts/rails.js
206
+ - test/test_apps/Test_3_0_20/public/robots.txt
207
+ - test/test_apps/Test_3_0_20/public/stylesheets/.gitkeep
208
+ - test/test_apps/Test_3_0_20/script/rails
209
+ - test/test_apps/Test_3_0_20/test/performance/browsing_test.rb
210
+ - test/test_apps/Test_3_0_20/test/test_helper.rb
211
+ - test/test_apps/Test_3_0_20/vendor/plugins/.gitkeep
212
+ - test/test_apps/Test_3_0_3/.gitignore
213
+ - test/test_apps/Test_3_0_3/Gemfile
214
+ - test/test_apps/Test_3_0_3/README
215
+ - test/test_apps/Test_3_0_3/Rakefile
216
+ - test/test_apps/Test_3_0_3/app/controllers/application_controller.rb
217
+ - test/test_apps/Test_3_0_3/app/helpers/application_helper.rb
218
+ - test/test_apps/Test_3_0_3/app/views/layouts/application.html.erb
219
+ - test/test_apps/Test_3_0_3/config.ru
220
+ - test/test_apps/Test_3_0_3/config/application.rb
221
+ - test/test_apps/Test_3_0_3/config/boot.rb
222
+ - test/test_apps/Test_3_0_3/config/database.yml
223
+ - test/test_apps/Test_3_0_3/config/environment.rb
224
+ - test/test_apps/Test_3_0_3/config/environments/development.rb
225
+ - test/test_apps/Test_3_0_3/config/environments/production.rb
226
+ - test/test_apps/Test_3_0_3/config/environments/test.rb
227
+ - test/test_apps/Test_3_0_3/config/initializers/backtrace_silencers.rb
228
+ - test/test_apps/Test_3_0_3/config/initializers/inflections.rb
229
+ - test/test_apps/Test_3_0_3/config/initializers/mime_types.rb
230
+ - test/test_apps/Test_3_0_3/config/initializers/secret_token.rb
231
+ - test/test_apps/Test_3_0_3/config/initializers/session_store.rb
232
+ - test/test_apps/Test_3_0_3/config/locales/en.yml
233
+ - test/test_apps/Test_3_0_3/config/routes.rb
234
+ - test/test_apps/Test_3_0_3/db/seeds.rb
235
+ - test/test_apps/Test_3_0_3/lib/tasks/.gitkeep
236
+ - test/test_apps/Test_3_0_3/public/404.html
237
+ - test/test_apps/Test_3_0_3/public/422.html
238
+ - test/test_apps/Test_3_0_3/public/500.html
239
+ - test/test_apps/Test_3_0_3/public/favicon.ico
240
+ - test/test_apps/Test_3_0_3/public/images/rails.png
241
+ - test/test_apps/Test_3_0_3/public/index.html
242
+ - test/test_apps/Test_3_0_3/public/javascripts/application.js
243
+ - test/test_apps/Test_3_0_3/public/javascripts/controls.js
244
+ - test/test_apps/Test_3_0_3/public/javascripts/dragdrop.js
245
+ - test/test_apps/Test_3_0_3/public/javascripts/effects.js
246
+ - test/test_apps/Test_3_0_3/public/javascripts/prototype.js
247
+ - test/test_apps/Test_3_0_3/public/javascripts/rails.js
248
+ - test/test_apps/Test_3_0_3/public/robots.txt
249
+ - test/test_apps/Test_3_0_3/public/stylesheets/.gitkeep
250
+ - test/test_apps/Test_3_0_3/script/rails
251
+ - test/test_apps/Test_3_0_3/test/performance/browsing_test.rb
252
+ - test/test_apps/Test_3_0_3/test/test_helper.rb
253
+ - test/test_apps/Test_3_0_3/vendor/plugins/.gitkeep
254
+ - test/test_apps/Test_3_1_12/.gitignore
255
+ - test/test_apps/Test_3_1_12/Gemfile
256
+ - test/test_apps/Test_3_1_12/README
257
+ - test/test_apps/Test_3_1_12/Rakefile
258
+ - test/test_apps/Test_3_1_12/app/assets/images/rails.png
259
+ - test/test_apps/Test_3_1_12/app/assets/javascripts/application.js
260
+ - test/test_apps/Test_3_1_12/app/assets/stylesheets/application.css
261
+ - test/test_apps/Test_3_1_12/app/controllers/application_controller.rb
262
+ - test/test_apps/Test_3_1_12/app/helpers/application_helper.rb
263
+ - test/test_apps/Test_3_1_12/app/mailers/.gitkeep
264
+ - test/test_apps/Test_3_1_12/app/models/.gitkeep
265
+ - test/test_apps/Test_3_1_12/app/views/layouts/application.html.erb
266
+ - test/test_apps/Test_3_1_12/config.ru
267
+ - test/test_apps/Test_3_1_12/config/application.rb
268
+ - test/test_apps/Test_3_1_12/config/boot.rb
269
+ - test/test_apps/Test_3_1_12/config/database.yml
270
+ - test/test_apps/Test_3_1_12/config/environment.rb
271
+ - test/test_apps/Test_3_1_12/config/environments/development.rb
272
+ - test/test_apps/Test_3_1_12/config/environments/production.rb
273
+ - test/test_apps/Test_3_1_12/config/environments/test.rb
274
+ - test/test_apps/Test_3_1_12/config/initializers/backtrace_silencers.rb
275
+ - test/test_apps/Test_3_1_12/config/initializers/inflections.rb
276
+ - test/test_apps/Test_3_1_12/config/initializers/mime_types.rb
277
+ - test/test_apps/Test_3_1_12/config/initializers/secret_token.rb
278
+ - test/test_apps/Test_3_1_12/config/initializers/session_store.rb
279
+ - test/test_apps/Test_3_1_12/config/initializers/wrap_parameters.rb
280
+ - test/test_apps/Test_3_1_12/config/locales/en.yml
281
+ - test/test_apps/Test_3_1_12/config/routes.rb
282
+ - test/test_apps/Test_3_1_12/db/seeds.rb
283
+ - test/test_apps/Test_3_1_12/lib/assets/.gitkeep
284
+ - test/test_apps/Test_3_1_12/lib/tasks/.gitkeep
285
+ - test/test_apps/Test_3_1_12/log/.gitkeep
286
+ - test/test_apps/Test_3_1_12/public/404.html
287
+ - test/test_apps/Test_3_1_12/public/422.html
288
+ - test/test_apps/Test_3_1_12/public/500.html
289
+ - test/test_apps/Test_3_1_12/public/favicon.ico
290
+ - test/test_apps/Test_3_1_12/public/index.html
291
+ - test/test_apps/Test_3_1_12/public/robots.txt
292
+ - test/test_apps/Test_3_1_12/script/rails
293
+ - test/test_apps/Test_3_1_12/test/fixtures/.gitkeep
294
+ - test/test_apps/Test_3_1_12/test/functional/.gitkeep
295
+ - test/test_apps/Test_3_1_12/test/integration/.gitkeep
296
+ - test/test_apps/Test_3_1_12/test/performance/browsing_test.rb
297
+ - test/test_apps/Test_3_1_12/test/test_helper.rb
298
+ - test/test_apps/Test_3_1_12/test/unit/.gitkeep
299
+ - test/test_apps/Test_3_1_12/vendor/assets/stylesheets/.gitkeep
300
+ - test/test_apps/Test_3_1_12/vendor/plugins/.gitkeep
301
+ - test/test_apps/Test_3_2_13/.gitignore
302
+ - test/test_apps/Test_3_2_13/Gemfile
303
+ - test/test_apps/Test_3_2_13/README.rdoc
304
+ - test/test_apps/Test_3_2_13/Rakefile
305
+ - test/test_apps/Test_3_2_13/app/assets/images/rails.png
306
+ - test/test_apps/Test_3_2_13/app/assets/javascripts/application.js
307
+ - test/test_apps/Test_3_2_13/app/assets/stylesheets/application.css
308
+ - test/test_apps/Test_3_2_13/app/controllers/application_controller.rb
309
+ - test/test_apps/Test_3_2_13/app/helpers/application_helper.rb
310
+ - test/test_apps/Test_3_2_13/app/mailers/.gitkeep
311
+ - test/test_apps/Test_3_2_13/app/models/.gitkeep
312
+ - test/test_apps/Test_3_2_13/app/views/layouts/application.html.erb
313
+ - test/test_apps/Test_3_2_13/config.ru
314
+ - test/test_apps/Test_3_2_13/config/application.rb
315
+ - test/test_apps/Test_3_2_13/config/boot.rb
316
+ - test/test_apps/Test_3_2_13/config/database.yml
317
+ - test/test_apps/Test_3_2_13/config/environment.rb
318
+ - test/test_apps/Test_3_2_13/config/environments/development.rb
319
+ - test/test_apps/Test_3_2_13/config/environments/production.rb
320
+ - test/test_apps/Test_3_2_13/config/environments/test.rb
321
+ - test/test_apps/Test_3_2_13/config/initializers/backtrace_silencers.rb
322
+ - test/test_apps/Test_3_2_13/config/initializers/inflections.rb
323
+ - test/test_apps/Test_3_2_13/config/initializers/mime_types.rb
324
+ - test/test_apps/Test_3_2_13/config/initializers/secret_token.rb
325
+ - test/test_apps/Test_3_2_13/config/initializers/session_store.rb
326
+ - test/test_apps/Test_3_2_13/config/initializers/wrap_parameters.rb
327
+ - test/test_apps/Test_3_2_13/config/locales/en.yml
328
+ - test/test_apps/Test_3_2_13/config/routes.rb
329
+ - test/test_apps/Test_3_2_13/db/seeds.rb
330
+ - test/test_apps/Test_3_2_13/lib/assets/.gitkeep
331
+ - test/test_apps/Test_3_2_13/lib/tasks/.gitkeep
332
+ - test/test_apps/Test_3_2_13/log/.gitkeep
333
+ - test/test_apps/Test_3_2_13/public/404.html
334
+ - test/test_apps/Test_3_2_13/public/422.html
335
+ - test/test_apps/Test_3_2_13/public/500.html
336
+ - test/test_apps/Test_3_2_13/public/favicon.ico
337
+ - test/test_apps/Test_3_2_13/public/index.html
338
+ - test/test_apps/Test_3_2_13/public/robots.txt
339
+ - test/test_apps/Test_3_2_13/script/rails
340
+ - test/test_apps/Test_3_2_13/test/fixtures/.gitkeep
341
+ - test/test_apps/Test_3_2_13/test/functional/.gitkeep
342
+ - test/test_apps/Test_3_2_13/test/integration/.gitkeep
343
+ - test/test_apps/Test_3_2_13/test/performance/browsing_test.rb
344
+ - test/test_apps/Test_3_2_13/test/test_helper.rb
345
+ - test/test_apps/Test_3_2_13/test/unit/.gitkeep
346
+ - test/test_apps/Test_3_2_13/vendor/assets/javascripts/.gitkeep
347
+ - test/test_apps/Test_3_2_13/vendor/assets/stylesheets/.gitkeep
348
+ - test/test_apps/Test_3_2_13/vendor/plugins/.gitkeep
349
+ - test/test_apps/Test_4_0_0_rc1/.gitignore
350
+ - test/test_apps/Test_4_0_0_rc1/Gemfile
351
+ - test/test_apps/Test_4_0_0_rc1/README.rdoc
352
+ - test/test_apps/Test_4_0_0_rc1/Rakefile
353
+ - test/test_apps/Test_4_0_0_rc1/app/assets/javascripts/application.js
354
+ - test/test_apps/Test_4_0_0_rc1/app/assets/stylesheets/application.css
355
+ - test/test_apps/Test_4_0_0_rc1/app/controllers/application_controller.rb
356
+ - test/test_apps/Test_4_0_0_rc1/app/controllers/concerns/.keep
357
+ - test/test_apps/Test_4_0_0_rc1/app/helpers/application_helper.rb
358
+ - test/test_apps/Test_4_0_0_rc1/app/mailers/.keep
359
+ - test/test_apps/Test_4_0_0_rc1/app/models/.keep
360
+ - test/test_apps/Test_4_0_0_rc1/app/models/concerns/.keep
361
+ - test/test_apps/Test_4_0_0_rc1/app/views/layouts/application.html.erb
362
+ - test/test_apps/Test_4_0_0_rc1/bin/bundle
363
+ - test/test_apps/Test_4_0_0_rc1/bin/rails
364
+ - test/test_apps/Test_4_0_0_rc1/bin/rake
365
+ - test/test_apps/Test_4_0_0_rc1/config.ru
366
+ - test/test_apps/Test_4_0_0_rc1/config/application.rb
367
+ - test/test_apps/Test_4_0_0_rc1/config/boot.rb
368
+ - test/test_apps/Test_4_0_0_rc1/config/database.yml
369
+ - test/test_apps/Test_4_0_0_rc1/config/environment.rb
370
+ - test/test_apps/Test_4_0_0_rc1/config/environments/development.rb
371
+ - test/test_apps/Test_4_0_0_rc1/config/environments/production.rb
372
+ - test/test_apps/Test_4_0_0_rc1/config/environments/test.rb
373
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/backtrace_silencers.rb
374
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/filter_parameter_logging.rb
375
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/inflections.rb
376
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/mime_types.rb
377
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/secret_token.rb
378
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/session_store.rb
379
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/wrap_parameters.rb
380
+ - test/test_apps/Test_4_0_0_rc1/config/locales/en.yml
381
+ - test/test_apps/Test_4_0_0_rc1/config/routes.rb
382
+ - test/test_apps/Test_4_0_0_rc1/db/seeds.rb
383
+ - test/test_apps/Test_4_0_0_rc1/lib/assets/.keep
384
+ - test/test_apps/Test_4_0_0_rc1/lib/tasks/.keep
385
+ - test/test_apps/Test_4_0_0_rc1/log/.keep
386
+ - test/test_apps/Test_4_0_0_rc1/public/404.html
387
+ - test/test_apps/Test_4_0_0_rc1/public/422.html
388
+ - test/test_apps/Test_4_0_0_rc1/public/500.html
389
+ - test/test_apps/Test_4_0_0_rc1/public/favicon.ico
390
+ - test/test_apps/Test_4_0_0_rc1/public/robots.txt
391
+ - test/test_apps/Test_4_0_0_rc1/test/controllers/.keep
392
+ - test/test_apps/Test_4_0_0_rc1/test/fixtures/.keep
393
+ - test/test_apps/Test_4_0_0_rc1/test/helpers/.keep
394
+ - test/test_apps/Test_4_0_0_rc1/test/integration/.keep
395
+ - test/test_apps/Test_4_0_0_rc1/test/mailers/.keep
396
+ - test/test_apps/Test_4_0_0_rc1/test/models/.keep
397
+ - test/test_apps/Test_4_0_0_rc1/test/test_helper.rb
398
+ - test/test_apps/Test_4_0_0_rc1/vendor/assets/javascripts/.keep
399
+ - test/test_apps/Test_4_0_0_rc1/vendor/assets/stylesheets/.keep
400
+ homepage: https://github.com/CarlosCD/cant_wait
401
+ licenses:
402
+ - MIT
403
+ post_install_message:
404
+ rdoc_options: []
405
+ require_paths:
406
+ - lib
407
+ required_ruby_version: !ruby/object:Gem::Requirement
408
+ none: false
409
+ requirements:
410
+ - - ! '>='
411
+ - !ruby/object:Gem::Version
412
+ version: '0'
413
+ required_rubygems_version: !ruby/object:Gem::Requirement
414
+ none: false
415
+ requirements:
416
+ - - ! '>='
417
+ - !ruby/object:Gem::Version
418
+ version: '0'
419
+ requirements: []
420
+ rubyforge_project:
421
+ rubygems_version: 1.8.25
422
+ signing_key:
423
+ specification_version: 3
424
+ summary: Adds statement timeout for PostgreSQL databases in Ruby on Rails. Timeout
425
+ is measured in milliseconds.
426
+ test_files:
427
+ - test/README.md
428
+ - test/cant_wait_test.rb
429
+ - test/database.yml
430
+ - test/test_apps/Test_3_0_20/.gitignore
431
+ - test/test_apps/Test_3_0_20/Gemfile
432
+ - test/test_apps/Test_3_0_20/README
433
+ - test/test_apps/Test_3_0_20/Rakefile
434
+ - test/test_apps/Test_3_0_20/app/controllers/application_controller.rb
435
+ - test/test_apps/Test_3_0_20/app/helpers/application_helper.rb
436
+ - test/test_apps/Test_3_0_20/app/views/layouts/application.html.erb
437
+ - test/test_apps/Test_3_0_20/config.ru
438
+ - test/test_apps/Test_3_0_20/config/application.rb
439
+ - test/test_apps/Test_3_0_20/config/boot.rb
440
+ - test/test_apps/Test_3_0_20/config/database.yml
441
+ - test/test_apps/Test_3_0_20/config/environment.rb
442
+ - test/test_apps/Test_3_0_20/config/environments/development.rb
443
+ - test/test_apps/Test_3_0_20/config/environments/production.rb
444
+ - test/test_apps/Test_3_0_20/config/environments/test.rb
445
+ - test/test_apps/Test_3_0_20/config/initializers/backtrace_silencers.rb
446
+ - test/test_apps/Test_3_0_20/config/initializers/inflections.rb
447
+ - test/test_apps/Test_3_0_20/config/initializers/mime_types.rb
448
+ - test/test_apps/Test_3_0_20/config/initializers/secret_token.rb
449
+ - test/test_apps/Test_3_0_20/config/initializers/session_store.rb
450
+ - test/test_apps/Test_3_0_20/config/locales/en.yml
451
+ - test/test_apps/Test_3_0_20/config/routes.rb
452
+ - test/test_apps/Test_3_0_20/db/seeds.rb
453
+ - test/test_apps/Test_3_0_20/lib/tasks/.gitkeep
454
+ - test/test_apps/Test_3_0_20/public/404.html
455
+ - test/test_apps/Test_3_0_20/public/422.html
456
+ - test/test_apps/Test_3_0_20/public/500.html
457
+ - test/test_apps/Test_3_0_20/public/favicon.ico
458
+ - test/test_apps/Test_3_0_20/public/images/rails.png
459
+ - test/test_apps/Test_3_0_20/public/index.html
460
+ - test/test_apps/Test_3_0_20/public/javascripts/application.js
461
+ - test/test_apps/Test_3_0_20/public/javascripts/controls.js
462
+ - test/test_apps/Test_3_0_20/public/javascripts/dragdrop.js
463
+ - test/test_apps/Test_3_0_20/public/javascripts/effects.js
464
+ - test/test_apps/Test_3_0_20/public/javascripts/prototype.js
465
+ - test/test_apps/Test_3_0_20/public/javascripts/rails.js
466
+ - test/test_apps/Test_3_0_20/public/robots.txt
467
+ - test/test_apps/Test_3_0_20/public/stylesheets/.gitkeep
468
+ - test/test_apps/Test_3_0_20/script/rails
469
+ - test/test_apps/Test_3_0_20/test/performance/browsing_test.rb
470
+ - test/test_apps/Test_3_0_20/test/test_helper.rb
471
+ - test/test_apps/Test_3_0_20/vendor/plugins/.gitkeep
472
+ - test/test_apps/Test_3_0_3/.gitignore
473
+ - test/test_apps/Test_3_0_3/Gemfile
474
+ - test/test_apps/Test_3_0_3/README
475
+ - test/test_apps/Test_3_0_3/Rakefile
476
+ - test/test_apps/Test_3_0_3/app/controllers/application_controller.rb
477
+ - test/test_apps/Test_3_0_3/app/helpers/application_helper.rb
478
+ - test/test_apps/Test_3_0_3/app/views/layouts/application.html.erb
479
+ - test/test_apps/Test_3_0_3/config.ru
480
+ - test/test_apps/Test_3_0_3/config/application.rb
481
+ - test/test_apps/Test_3_0_3/config/boot.rb
482
+ - test/test_apps/Test_3_0_3/config/database.yml
483
+ - test/test_apps/Test_3_0_3/config/environment.rb
484
+ - test/test_apps/Test_3_0_3/config/environments/development.rb
485
+ - test/test_apps/Test_3_0_3/config/environments/production.rb
486
+ - test/test_apps/Test_3_0_3/config/environments/test.rb
487
+ - test/test_apps/Test_3_0_3/config/initializers/backtrace_silencers.rb
488
+ - test/test_apps/Test_3_0_3/config/initializers/inflections.rb
489
+ - test/test_apps/Test_3_0_3/config/initializers/mime_types.rb
490
+ - test/test_apps/Test_3_0_3/config/initializers/secret_token.rb
491
+ - test/test_apps/Test_3_0_3/config/initializers/session_store.rb
492
+ - test/test_apps/Test_3_0_3/config/locales/en.yml
493
+ - test/test_apps/Test_3_0_3/config/routes.rb
494
+ - test/test_apps/Test_3_0_3/db/seeds.rb
495
+ - test/test_apps/Test_3_0_3/lib/tasks/.gitkeep
496
+ - test/test_apps/Test_3_0_3/public/404.html
497
+ - test/test_apps/Test_3_0_3/public/422.html
498
+ - test/test_apps/Test_3_0_3/public/500.html
499
+ - test/test_apps/Test_3_0_3/public/favicon.ico
500
+ - test/test_apps/Test_3_0_3/public/images/rails.png
501
+ - test/test_apps/Test_3_0_3/public/index.html
502
+ - test/test_apps/Test_3_0_3/public/javascripts/application.js
503
+ - test/test_apps/Test_3_0_3/public/javascripts/controls.js
504
+ - test/test_apps/Test_3_0_3/public/javascripts/dragdrop.js
505
+ - test/test_apps/Test_3_0_3/public/javascripts/effects.js
506
+ - test/test_apps/Test_3_0_3/public/javascripts/prototype.js
507
+ - test/test_apps/Test_3_0_3/public/javascripts/rails.js
508
+ - test/test_apps/Test_3_0_3/public/robots.txt
509
+ - test/test_apps/Test_3_0_3/public/stylesheets/.gitkeep
510
+ - test/test_apps/Test_3_0_3/script/rails
511
+ - test/test_apps/Test_3_0_3/test/performance/browsing_test.rb
512
+ - test/test_apps/Test_3_0_3/test/test_helper.rb
513
+ - test/test_apps/Test_3_0_3/vendor/plugins/.gitkeep
514
+ - test/test_apps/Test_3_1_12/.gitignore
515
+ - test/test_apps/Test_3_1_12/Gemfile
516
+ - test/test_apps/Test_3_1_12/README
517
+ - test/test_apps/Test_3_1_12/Rakefile
518
+ - test/test_apps/Test_3_1_12/app/assets/images/rails.png
519
+ - test/test_apps/Test_3_1_12/app/assets/javascripts/application.js
520
+ - test/test_apps/Test_3_1_12/app/assets/stylesheets/application.css
521
+ - test/test_apps/Test_3_1_12/app/controllers/application_controller.rb
522
+ - test/test_apps/Test_3_1_12/app/helpers/application_helper.rb
523
+ - test/test_apps/Test_3_1_12/app/mailers/.gitkeep
524
+ - test/test_apps/Test_3_1_12/app/models/.gitkeep
525
+ - test/test_apps/Test_3_1_12/app/views/layouts/application.html.erb
526
+ - test/test_apps/Test_3_1_12/config.ru
527
+ - test/test_apps/Test_3_1_12/config/application.rb
528
+ - test/test_apps/Test_3_1_12/config/boot.rb
529
+ - test/test_apps/Test_3_1_12/config/database.yml
530
+ - test/test_apps/Test_3_1_12/config/environment.rb
531
+ - test/test_apps/Test_3_1_12/config/environments/development.rb
532
+ - test/test_apps/Test_3_1_12/config/environments/production.rb
533
+ - test/test_apps/Test_3_1_12/config/environments/test.rb
534
+ - test/test_apps/Test_3_1_12/config/initializers/backtrace_silencers.rb
535
+ - test/test_apps/Test_3_1_12/config/initializers/inflections.rb
536
+ - test/test_apps/Test_3_1_12/config/initializers/mime_types.rb
537
+ - test/test_apps/Test_3_1_12/config/initializers/secret_token.rb
538
+ - test/test_apps/Test_3_1_12/config/initializers/session_store.rb
539
+ - test/test_apps/Test_3_1_12/config/initializers/wrap_parameters.rb
540
+ - test/test_apps/Test_3_1_12/config/locales/en.yml
541
+ - test/test_apps/Test_3_1_12/config/routes.rb
542
+ - test/test_apps/Test_3_1_12/db/seeds.rb
543
+ - test/test_apps/Test_3_1_12/lib/assets/.gitkeep
544
+ - test/test_apps/Test_3_1_12/lib/tasks/.gitkeep
545
+ - test/test_apps/Test_3_1_12/log/.gitkeep
546
+ - test/test_apps/Test_3_1_12/public/404.html
547
+ - test/test_apps/Test_3_1_12/public/422.html
548
+ - test/test_apps/Test_3_1_12/public/500.html
549
+ - test/test_apps/Test_3_1_12/public/favicon.ico
550
+ - test/test_apps/Test_3_1_12/public/index.html
551
+ - test/test_apps/Test_3_1_12/public/robots.txt
552
+ - test/test_apps/Test_3_1_12/script/rails
553
+ - test/test_apps/Test_3_1_12/test/fixtures/.gitkeep
554
+ - test/test_apps/Test_3_1_12/test/functional/.gitkeep
555
+ - test/test_apps/Test_3_1_12/test/integration/.gitkeep
556
+ - test/test_apps/Test_3_1_12/test/performance/browsing_test.rb
557
+ - test/test_apps/Test_3_1_12/test/test_helper.rb
558
+ - test/test_apps/Test_3_1_12/test/unit/.gitkeep
559
+ - test/test_apps/Test_3_1_12/vendor/assets/stylesheets/.gitkeep
560
+ - test/test_apps/Test_3_1_12/vendor/plugins/.gitkeep
561
+ - test/test_apps/Test_3_2_13/.gitignore
562
+ - test/test_apps/Test_3_2_13/Gemfile
563
+ - test/test_apps/Test_3_2_13/README.rdoc
564
+ - test/test_apps/Test_3_2_13/Rakefile
565
+ - test/test_apps/Test_3_2_13/app/assets/images/rails.png
566
+ - test/test_apps/Test_3_2_13/app/assets/javascripts/application.js
567
+ - test/test_apps/Test_3_2_13/app/assets/stylesheets/application.css
568
+ - test/test_apps/Test_3_2_13/app/controllers/application_controller.rb
569
+ - test/test_apps/Test_3_2_13/app/helpers/application_helper.rb
570
+ - test/test_apps/Test_3_2_13/app/mailers/.gitkeep
571
+ - test/test_apps/Test_3_2_13/app/models/.gitkeep
572
+ - test/test_apps/Test_3_2_13/app/views/layouts/application.html.erb
573
+ - test/test_apps/Test_3_2_13/config.ru
574
+ - test/test_apps/Test_3_2_13/config/application.rb
575
+ - test/test_apps/Test_3_2_13/config/boot.rb
576
+ - test/test_apps/Test_3_2_13/config/database.yml
577
+ - test/test_apps/Test_3_2_13/config/environment.rb
578
+ - test/test_apps/Test_3_2_13/config/environments/development.rb
579
+ - test/test_apps/Test_3_2_13/config/environments/production.rb
580
+ - test/test_apps/Test_3_2_13/config/environments/test.rb
581
+ - test/test_apps/Test_3_2_13/config/initializers/backtrace_silencers.rb
582
+ - test/test_apps/Test_3_2_13/config/initializers/inflections.rb
583
+ - test/test_apps/Test_3_2_13/config/initializers/mime_types.rb
584
+ - test/test_apps/Test_3_2_13/config/initializers/secret_token.rb
585
+ - test/test_apps/Test_3_2_13/config/initializers/session_store.rb
586
+ - test/test_apps/Test_3_2_13/config/initializers/wrap_parameters.rb
587
+ - test/test_apps/Test_3_2_13/config/locales/en.yml
588
+ - test/test_apps/Test_3_2_13/config/routes.rb
589
+ - test/test_apps/Test_3_2_13/db/seeds.rb
590
+ - test/test_apps/Test_3_2_13/lib/assets/.gitkeep
591
+ - test/test_apps/Test_3_2_13/lib/tasks/.gitkeep
592
+ - test/test_apps/Test_3_2_13/log/.gitkeep
593
+ - test/test_apps/Test_3_2_13/public/404.html
594
+ - test/test_apps/Test_3_2_13/public/422.html
595
+ - test/test_apps/Test_3_2_13/public/500.html
596
+ - test/test_apps/Test_3_2_13/public/favicon.ico
597
+ - test/test_apps/Test_3_2_13/public/index.html
598
+ - test/test_apps/Test_3_2_13/public/robots.txt
599
+ - test/test_apps/Test_3_2_13/script/rails
600
+ - test/test_apps/Test_3_2_13/test/fixtures/.gitkeep
601
+ - test/test_apps/Test_3_2_13/test/functional/.gitkeep
602
+ - test/test_apps/Test_3_2_13/test/integration/.gitkeep
603
+ - test/test_apps/Test_3_2_13/test/performance/browsing_test.rb
604
+ - test/test_apps/Test_3_2_13/test/test_helper.rb
605
+ - test/test_apps/Test_3_2_13/test/unit/.gitkeep
606
+ - test/test_apps/Test_3_2_13/vendor/assets/javascripts/.gitkeep
607
+ - test/test_apps/Test_3_2_13/vendor/assets/stylesheets/.gitkeep
608
+ - test/test_apps/Test_3_2_13/vendor/plugins/.gitkeep
609
+ - test/test_apps/Test_4_0_0_rc1/.gitignore
610
+ - test/test_apps/Test_4_0_0_rc1/Gemfile
611
+ - test/test_apps/Test_4_0_0_rc1/README.rdoc
612
+ - test/test_apps/Test_4_0_0_rc1/Rakefile
613
+ - test/test_apps/Test_4_0_0_rc1/app/assets/javascripts/application.js
614
+ - test/test_apps/Test_4_0_0_rc1/app/assets/stylesheets/application.css
615
+ - test/test_apps/Test_4_0_0_rc1/app/controllers/application_controller.rb
616
+ - test/test_apps/Test_4_0_0_rc1/app/controllers/concerns/.keep
617
+ - test/test_apps/Test_4_0_0_rc1/app/helpers/application_helper.rb
618
+ - test/test_apps/Test_4_0_0_rc1/app/mailers/.keep
619
+ - test/test_apps/Test_4_0_0_rc1/app/models/.keep
620
+ - test/test_apps/Test_4_0_0_rc1/app/models/concerns/.keep
621
+ - test/test_apps/Test_4_0_0_rc1/app/views/layouts/application.html.erb
622
+ - test/test_apps/Test_4_0_0_rc1/bin/bundle
623
+ - test/test_apps/Test_4_0_0_rc1/bin/rails
624
+ - test/test_apps/Test_4_0_0_rc1/bin/rake
625
+ - test/test_apps/Test_4_0_0_rc1/config.ru
626
+ - test/test_apps/Test_4_0_0_rc1/config/application.rb
627
+ - test/test_apps/Test_4_0_0_rc1/config/boot.rb
628
+ - test/test_apps/Test_4_0_0_rc1/config/database.yml
629
+ - test/test_apps/Test_4_0_0_rc1/config/environment.rb
630
+ - test/test_apps/Test_4_0_0_rc1/config/environments/development.rb
631
+ - test/test_apps/Test_4_0_0_rc1/config/environments/production.rb
632
+ - test/test_apps/Test_4_0_0_rc1/config/environments/test.rb
633
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/backtrace_silencers.rb
634
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/filter_parameter_logging.rb
635
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/inflections.rb
636
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/mime_types.rb
637
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/secret_token.rb
638
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/session_store.rb
639
+ - test/test_apps/Test_4_0_0_rc1/config/initializers/wrap_parameters.rb
640
+ - test/test_apps/Test_4_0_0_rc1/config/locales/en.yml
641
+ - test/test_apps/Test_4_0_0_rc1/config/routes.rb
642
+ - test/test_apps/Test_4_0_0_rc1/db/seeds.rb
643
+ - test/test_apps/Test_4_0_0_rc1/lib/assets/.keep
644
+ - test/test_apps/Test_4_0_0_rc1/lib/tasks/.keep
645
+ - test/test_apps/Test_4_0_0_rc1/log/.keep
646
+ - test/test_apps/Test_4_0_0_rc1/public/404.html
647
+ - test/test_apps/Test_4_0_0_rc1/public/422.html
648
+ - test/test_apps/Test_4_0_0_rc1/public/500.html
649
+ - test/test_apps/Test_4_0_0_rc1/public/favicon.ico
650
+ - test/test_apps/Test_4_0_0_rc1/public/robots.txt
651
+ - test/test_apps/Test_4_0_0_rc1/test/controllers/.keep
652
+ - test/test_apps/Test_4_0_0_rc1/test/fixtures/.keep
653
+ - test/test_apps/Test_4_0_0_rc1/test/helpers/.keep
654
+ - test/test_apps/Test_4_0_0_rc1/test/integration/.keep
655
+ - test/test_apps/Test_4_0_0_rc1/test/mailers/.keep
656
+ - test/test_apps/Test_4_0_0_rc1/test/models/.keep
657
+ - test/test_apps/Test_4_0_0_rc1/test/test_helper.rb
658
+ - test/test_apps/Test_4_0_0_rc1/vendor/assets/javascripts/.keep
659
+ - test/test_apps/Test_4_0_0_rc1/vendor/assets/stylesheets/.keep
metadata.gz.sig ADDED
@@ -0,0 +1,4 @@
1
+ b}�x.�wX1�d9K��E�=W����(���j�j��YD��D��]�)z/Y���!h�o��_�I.�vn/;��C˾��^��&�d�� (9̒�h�h��4Ǯ�~�{ݖ���p�N芃3P�$��8�%��e��LCz�ԉ�z�
2
+ ^�O�����>�D�
3
+ mi�խʍ�H�x��{��
4
+ *�݅�cw�g�G�n�h}�rKI NC*���m�����~��v�?���ۃ��� �[���H���X���/��tX