merb-core 1.0.15 → 1.1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2176) hide show
  1. data/CHANGELOG +38 -0
  2. data/Rakefile +57 -228
  3. data/bin/merb +11 -2
  4. data/lib/merb-core/bootloader.rb +112 -72
  5. data/lib/merb-core/config.rb +4 -1
  6. data/lib/merb-core/controller/abstract_controller.rb +7 -1
  7. data/lib/merb-core/controller/merb_controller.rb +34 -1
  8. data/lib/merb-core/controller/mixins/controller.rb +50 -4
  9. data/lib/merb-core/controller/mixins/responder.rb +1 -1
  10. data/lib/merb-core/controller/template.rb +2 -2
  11. data/lib/merb-core/core_ext/kernel.rb +19 -234
  12. data/lib/merb-core/core_ext/time.rb +7 -0
  13. data/lib/merb-core/core_ext.rb +2 -1
  14. data/lib/merb-core/dispatch/cookies.rb +4 -1
  15. data/lib/merb-core/dispatch/default_exception/default_exception.rb +3 -3
  16. data/lib/merb-core/dispatch/dispatcher.rb +19 -23
  17. data/lib/merb-core/dispatch/request.rb +25 -4
  18. data/lib/merb-core/dispatch/request_parsers.rb +18 -5
  19. data/lib/merb-core/dispatch/router/behavior.rb +5 -2
  20. data/lib/merb-core/dispatch/router/resources.rb +21 -21
  21. data/lib/merb-core/dispatch/router/route.rb +2 -4
  22. data/lib/merb-core/dispatch/router.rb +1 -1
  23. data/lib/merb-core/dispatch/session.rb +9 -2
  24. data/lib/merb-core/dispatch/worker.rb +24 -1
  25. data/lib/merb-core/gem_ext/gem_dependency.rb +13 -0
  26. data/lib/merb-core/logger.rb +2 -2
  27. data/lib/merb-core/rack/adapter/abstract.rb +6 -4
  28. data/lib/merb-core/rack/adapter/irb.rb +43 -1
  29. data/lib/merb-core/rack/adapter/runner.rb +16 -3
  30. data/lib/merb-core/rack/handler/mongrel.rb +1 -1
  31. data/lib/merb-core/rack/stream_wrapper.rb +2 -0
  32. data/lib/merb-core/tasks/merb.rb +1 -4
  33. data/lib/merb-core/tasks/stats.rake +9 -3
  34. data/lib/merb-core/test/helpers/cookie_jar.rb +5 -2
  35. data/lib/merb-core/test/helpers/mock_request_helper.rb +5 -0
  36. data/lib/merb-core/test/helpers/multipart_request_helper.rb +4 -4
  37. data/lib/merb-core/test/helpers/request_helper.rb +13 -2
  38. data/lib/merb-core/test/matchers.rb +2 -2
  39. data/lib/merb-core/test/run_spec.rb +7 -8
  40. data/lib/merb-core/test/run_specs.rb +8 -5
  41. data/lib/merb-core/test/test_ext/rspec.rb +3 -1
  42. data/lib/merb-core/version.rb +1 -3
  43. data/lib/merb-core.rb +11 -12
  44. data/spec/Gemfile +0 -0
  45. data/spec/private/core_ext/kernel_spec.rb +35 -0
  46. data/spec/private/dispatch/bootloader_spec.rb +29 -0
  47. data/spec/private/dispatch/fixture/app/controllers/application.rb +4 -0
  48. data/spec/private/dispatch/fixture/app/controllers/exceptions.rb +25 -0
  49. data/spec/private/dispatch/fixture/app/controllers/foo.rb +19 -0
  50. data/spec/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
  51. data/spec/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
  52. data/spec/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
  53. data/spec/private/dispatch/fixture/config/black_hole.rb +12 -0
  54. data/spec/private/dispatch/fixture/config/environments/development.rb +6 -0
  55. data/spec/private/dispatch/fixture/config/environments/production.rb +5 -0
  56. data/spec/private/dispatch/fixture/config/environments/test.rb +6 -0
  57. data/spec/private/dispatch/fixture/config/init.rb +45 -0
  58. data/spec/private/dispatch/fixture/config/rack.rb +11 -0
  59. data/spec/private/dispatch/fixture/config/router.rb +35 -0
  60. data/spec/private/dispatch/fixture/public/images/merb.jpg +0 -0
  61. data/spec/private/dispatch/fixture/public/merb.fcgi +4 -0
  62. data/spec/private/dispatch/fixture/public/stylesheets/master.css +119 -0
  63. data/spec/private/dispatch/spec_helper.rb +1 -0
  64. data/spec/public/DEFINITIONS +11 -0
  65. data/spec/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
  66. data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
  67. data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
  68. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
  69. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
  70. data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  71. data/spec/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
  72. data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
  73. data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
  74. data/spec/public/abstract_controller/controllers/cousins.rb +60 -0
  75. data/spec/public/abstract_controller/controllers/display.rb +60 -0
  76. data/spec/public/abstract_controller/controllers/filters.rb +277 -0
  77. data/spec/public/abstract_controller/controllers/helpers.rb +47 -0
  78. data/spec/public/abstract_controller/controllers/partial.rb +161 -0
  79. data/spec/public/abstract_controller/controllers/render.rb +113 -0
  80. data/spec/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
  81. data/spec/public/abstract_controller/controllers/views/helpers/capture_eq/index.erb +1 -0
  82. data/spec/public/abstract_controller/controllers/views/helpers/capture_non_string_return_value/index.erb +1 -0
  83. data/spec/public/abstract_controller/controllers/views/helpers/capture_return_value/index.erb +1 -0
  84. data/spec/public/abstract_controller/controllers/views/helpers/capture_with_args/index.erb +1 -0
  85. data/spec/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
  86. data/spec/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
  87. data/spec/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
  88. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
  89. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
  90. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
  91. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
  92. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
  93. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  94. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
  95. data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_two_append_contents/index.erb +1 -0
  96. data/spec/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
  97. data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
  98. data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial2.erb +1 -0
  99. data/spec/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
  100. data/spec/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
  101. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
  102. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
  103. data/spec/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
  104. data/spec/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
  105. data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
  106. data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
  107. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
  108. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
  109. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
  110. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
  111. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/_collection.erb +1 -0
  112. data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/index.erb +1 -0
  113. data/spec/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/_ab.erb +1 -0
  114. data/spec/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/index.erb +1 -0
  115. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
  116. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
  117. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/_variable.erb +1 -0
  118. data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/index.erb +1 -0
  119. data/spec/public/abstract_controller/controllers/views/partial/partial_with_multiple_locals/_foo.erb +1 -0
  120. data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
  121. data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
  122. data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/_partial.erb +1 -0
  123. data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/index.erb +1 -0
  124. data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
  125. data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
  126. data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
  127. data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
  128. data/spec/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
  129. data/spec/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
  130. data/spec/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
  131. data/spec/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
  132. data/spec/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
  133. data/spec/public/abstract_controller/display_spec.rb +38 -0
  134. data/spec/public/abstract_controller/filter_spec.rb +151 -0
  135. data/spec/public/abstract_controller/helper_spec.rb +30 -0
  136. data/spec/public/abstract_controller/partial_spec.rb +85 -0
  137. data/spec/public/abstract_controller/render_spec.rb +91 -0
  138. data/spec/public/abstract_controller/spec_helper.rb +29 -0
  139. data/spec/public/boot_loader/boot_loader_spec.rb +41 -0
  140. data/spec/public/boot_loader/spec_helper.rb +1 -0
  141. data/spec/public/controller/authentication_spec.rb +174 -0
  142. data/spec/public/controller/base_spec.rb +96 -0
  143. data/spec/public/controller/conditional_get_spec.rb +101 -0
  144. data/spec/public/controller/config/init.rb +6 -0
  145. data/spec/public/controller/controllers/authentication.rb +74 -0
  146. data/spec/public/controller/controllers/base.rb +71 -0
  147. data/spec/public/controller/controllers/conditional_get.rb +35 -0
  148. data/spec/public/controller/controllers/cookies.rb +37 -0
  149. data/spec/public/controller/controllers/dispatcher.rb +35 -0
  150. data/spec/public/controller/controllers/display.rb +118 -0
  151. data/spec/public/controller/controllers/redirect.rb +60 -0
  152. data/spec/public/controller/controllers/responder.rb +93 -0
  153. data/spec/public/controller/controllers/streaming.rb +18 -0
  154. data/spec/public/controller/controllers/url.rb +42 -0
  155. data/spec/public/controller/controllers/views/layout/custom.html.erb +1 -0
  156. data/spec/public/controller/controllers/views/layout/custom_arg.html.erb +1 -0
  157. data/spec/public/controller/controllers/views/layout/custom_arg.json.erb +1 -0
  158. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.html.erb +1 -0
  159. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.xml.erb +1 -0
  160. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
  161. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
  162. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
  163. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/no_layout.html.erb +1 -0
  164. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template_argument/index.html.erb +1 -0
  165. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
  166. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
  167. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
  168. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
  169. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
  170. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
  171. data/spec/public/controller/cookies_spec.rb +101 -0
  172. data/spec/public/controller/dispatcher_spec.rb +587 -0
  173. data/spec/public/controller/display_spec.rb +84 -0
  174. data/spec/public/controller/override_spec.rb +27 -0
  175. data/spec/public/controller/redirect_spec.rb +68 -0
  176. data/spec/public/controller/resource_spec.rb +364 -0
  177. data/spec/public/controller/responder_spec.rb +179 -0
  178. data/spec/public/controller/spec_helper.rb +15 -0
  179. data/spec/public/controller/streaming_spec.rb +40 -0
  180. data/spec/public/controller/url_spec.rb +365 -0
  181. data/spec/public/core/merb_core_spec.rb +62 -0
  182. data/spec/public/core_ext/kernel_spec.rb +40 -0
  183. data/spec/public/core_ext/spec_helper.rb +1 -0
  184. data/spec/public/directory_structure/directory/app/controllers/application.rb +3 -0
  185. data/spec/public/directory_structure/directory/app/controllers/base.rb +13 -0
  186. data/spec/public/directory_structure/directory/app/controllers/custom.rb +19 -0
  187. data/spec/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
  188. data/spec/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
  189. data/spec/public/directory_structure/directory/config/router.rb +3 -0
  190. data/spec/public/directory_structure/directory_spec.rb +43 -0
  191. data/spec/public/logger/logger_spec.rb +283 -0
  192. data/spec/public/logger/spec_helper.rb +1 -0
  193. data/spec/public/rack/conditinal_get_middleware_spec.rb +128 -0
  194. data/spec/public/rack/rack_middleware_spec.rb +101 -0
  195. data/spec/public/rack/shared_example_groups.rb +35 -0
  196. data/spec/public/request/multipart_spec.rb +72 -0
  197. data/spec/public/request/request_spec.rb +267 -0
  198. data/spec/public/router/behavior_spec.rb +74 -0
  199. data/spec/public/router/generation/conditions_spec.rb +143 -0
  200. data/spec/public/router/generation/default_route_spec.rb +32 -0
  201. data/spec/public/router/generation/defaults_spec.rb +20 -0
  202. data/spec/public/router/generation/identify_spec.rb +163 -0
  203. data/spec/public/router/generation/namespace_spec.rb +110 -0
  204. data/spec/public/router/generation/optional_segments_spec.rb +163 -0
  205. data/spec/public/router/generation/other_spec.rb +17 -0
  206. data/spec/public/router/generation/params_spec.rb +72 -0
  207. data/spec/public/router/generation/resources_spec.rb +320 -0
  208. data/spec/public/router/generation/string_spec.rb +125 -0
  209. data/spec/public/router/generation/using_request_params_spec.rb +130 -0
  210. data/spec/public/router/recognition/conditions_spec.rb +395 -0
  211. data/spec/public/router/recognition/default_routes_spec.rb +35 -0
  212. data/spec/public/router/recognition/defaults_spec.rb +122 -0
  213. data/spec/public/router/recognition/deferred_spec.rb +209 -0
  214. data/spec/public/router/recognition/fixation_spec.rb +27 -0
  215. data/spec/public/router/recognition/identify_spec.rb +53 -0
  216. data/spec/public/router/recognition/namespace_spec.rb +353 -0
  217. data/spec/public/router/recognition/nested_resources_spec.rb +105 -0
  218. data/spec/public/router/recognition/optional_segments_spec.rb +113 -0
  219. data/spec/public/router/recognition/params_spec.rb +228 -0
  220. data/spec/public/router/recognition/redirect_spec.rb +49 -0
  221. data/spec/public/router/recognition/regexp_paths_spec.rb +61 -0
  222. data/spec/public/router/recognition/resource_spec.rb +157 -0
  223. data/spec/public/router/recognition/resources_spec.rb +346 -0
  224. data/spec/public/router/recognition/variables_spec.rb +87 -0
  225. data/spec/public/router/router_spec.rb +169 -0
  226. data/spec/public/router/spec_helper.rb +287 -0
  227. data/spec/public/router/spec_helper_spec.rb +33 -0
  228. data/spec/public/session/controllers/sessions.rb +61 -0
  229. data/spec/public/session/cookie_session_spec.rb +80 -0
  230. data/spec/public/session/memcached_session_spec.rb +36 -0
  231. data/spec/public/session/memory_session_spec.rb +26 -0
  232. data/spec/public/session/multiple_sessions_spec.rb +81 -0
  233. data/spec/public/session/no_session_spec.rb +14 -0
  234. data/spec/public/session/session_shared.rb +108 -0
  235. data/spec/public/session/spec_helper.rb +2 -0
  236. data/spec/public/template/template_spec.rb +105 -0
  237. data/spec/public/template/templates/error.html.erb +2 -0
  238. data/spec/public/template/templates/template.html.erb +1 -0
  239. data/spec/public/template/templates/template.html.myt +1 -0
  240. data/spec/public/test/20_multipart_request_helper_spec.rb +152 -0
  241. data/spec/public/test/controller_matchers_spec.rb +422 -0
  242. data/spec/public/test/controllers/controller_assertion_mock.rb +7 -0
  243. data/spec/public/test/controllers/dispatch_controller.rb +11 -0
  244. data/spec/public/test/controllers/request_controller.rb +70 -0
  245. data/spec/public/test/controllers/spec_helper_controller.rb +41 -0
  246. data/spec/public/test/cookie_jar_spec.rb +23 -0
  247. data/spec/public/test/mock_request_helper_spec.rb +269 -0
  248. data/spec/public/test/multipart_request_helper_spec.rb +159 -0
  249. data/spec/public/test/multipart_upload_text_file.txt +1 -0
  250. data/spec/public/test/request_helper_spec.rb +152 -0
  251. data/spec/public/test/route_helper_spec.rb +75 -0
  252. data/spec/public/test/route_matchers_spec.rb +168 -0
  253. data/spec/public/test/rspec_ext_spec.rb +31 -0
  254. data/spec/public/test/spec_helper.rb +1 -0
  255. data/spec/public/webrat/spec_helper.rb +1 -0
  256. data/spec/public/webrat/test_app/Gemfile +0 -0
  257. data/spec/public/webrat/test_app/Rakefile +35 -0
  258. data/spec/public/webrat/test_app/app/controllers/application.rb +2 -0
  259. data/spec/public/webrat/test_app/app/controllers/exceptions.rb +13 -0
  260. data/spec/public/webrat/test_app/app/controllers/testing.rb +23 -0
  261. data/spec/public/webrat/test_app/app/helpers/global_helpers.rb +5 -0
  262. data/spec/public/webrat/test_app/app/helpers/testing_helper.rb +5 -0
  263. data/spec/public/webrat/test_app/app/models/user.rb +17 -0
  264. data/spec/public/webrat/test_app/app/views/exceptions/not_acceptable.html.erb +63 -0
  265. data/spec/public/webrat/test_app/app/views/exceptions/not_found.html.erb +47 -0
  266. data/spec/public/webrat/test_app/app/views/layout/application.html.erb +12 -0
  267. data/spec/public/webrat/test_app/app/views/testing/index.html.erb +3 -0
  268. data/spec/public/webrat/test_app/app/views/testing/show_form.html.erb +6 -0
  269. data/spec/public/webrat/test_app/config/database.yml +33 -0
  270. data/spec/public/webrat/test_app/config/environments/development.rb +15 -0
  271. data/spec/public/webrat/test_app/config/environments/production.rb +10 -0
  272. data/spec/public/webrat/test_app/config/environments/rake.rb +11 -0
  273. data/spec/public/webrat/test_app/config/environments/staging.rb +10 -0
  274. data/spec/public/webrat/test_app/config/environments/test.rb +12 -0
  275. data/spec/public/webrat/test_app/config/init.rb +27 -0
  276. data/spec/public/webrat/test_app/config/rack.rb +29 -0
  277. data/spec/public/webrat/test_app/config/router.rb +44 -0
  278. data/spec/public/webrat/test_app/merb/merb-auth/setup.rb +44 -0
  279. data/spec/public/webrat/test_app/merb/merb-auth/strategies.rb +11 -0
  280. data/spec/public/webrat/test_app/merb/session/session.rb +9 -0
  281. data/spec/public/webrat/test_app/public/favicon.ico +0 -0
  282. data/spec/public/webrat/test_app/public/images/merb.jpg +0 -0
  283. data/spec/public/webrat/test_app/public/javascripts/application.js +1 -0
  284. data/spec/public/webrat/test_app/public/javascripts/jquery.js +32 -0
  285. data/spec/public/webrat/test_app/public/merb.fcgi +22 -0
  286. data/spec/public/webrat/test_app/public/robots.txt +5 -0
  287. data/spec/public/webrat/test_app/public/stylesheets/master.css +119 -0
  288. data/spec/public/webrat/webrat_spec.rb +76 -0
  289. data/spec/spec_helper.rb +138 -0
  290. data/spec10/private/core_ext/kernel_spec.rb +34 -0
  291. data/spec10/private/dispatch/bootloader_spec.rb +27 -0
  292. data/spec10/private/dispatch/fixture/app/controllers/application.rb +4 -0
  293. data/spec10/private/dispatch/fixture/app/controllers/exceptions.rb +25 -0
  294. data/spec10/private/dispatch/fixture/app/controllers/foo.rb +19 -0
  295. data/spec10/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
  296. data/spec10/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
  297. data/spec10/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
  298. data/spec10/private/dispatch/fixture/config/black_hole.rb +12 -0
  299. data/spec10/private/dispatch/fixture/config/environments/development.rb +6 -0
  300. data/spec10/private/dispatch/fixture/config/environments/production.rb +5 -0
  301. data/spec10/private/dispatch/fixture/config/environments/test.rb +6 -0
  302. data/spec10/private/dispatch/fixture/config/init.rb +45 -0
  303. data/spec10/private/dispatch/fixture/config/rack.rb +11 -0
  304. data/spec10/private/dispatch/fixture/config/router.rb +35 -0
  305. data/spec10/private/dispatch/fixture/public/images/merb.jpg +0 -0
  306. data/spec10/private/dispatch/fixture/public/merb.fcgi +4 -0
  307. data/spec10/private/dispatch/fixture/public/stylesheets/master.css +119 -0
  308. data/spec10/private/dispatch/spec_helper.rb +1 -0
  309. data/spec10/public/DEFINITIONS +11 -0
  310. data/spec10/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
  311. data/spec10/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
  312. data/spec10/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
  313. data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
  314. data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
  315. data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  316. data/spec10/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
  317. data/spec10/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
  318. data/spec10/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
  319. data/spec10/public/abstract_controller/controllers/cousins.rb +60 -0
  320. data/spec10/public/abstract_controller/controllers/display.rb +60 -0
  321. data/spec10/public/abstract_controller/controllers/filters.rb +260 -0
  322. data/spec10/public/abstract_controller/controllers/helpers.rb +47 -0
  323. data/spec10/public/abstract_controller/controllers/partial.rb +140 -0
  324. data/spec10/public/abstract_controller/controllers/render.rb +113 -0
  325. data/spec10/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
  326. data/spec10/public/abstract_controller/controllers/views/helpers/capture_eq/index.erb +1 -0
  327. data/spec10/public/abstract_controller/controllers/views/helpers/capture_non_string_return_value/index.erb +1 -0
  328. data/spec10/public/abstract_controller/controllers/views/helpers/capture_return_value/index.erb +1 -0
  329. data/spec10/public/abstract_controller/controllers/views/helpers/capture_with_args/index.erb +1 -0
  330. data/spec10/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
  331. data/spec10/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
  332. data/spec10/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
  333. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
  334. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
  335. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
  336. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
  337. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
  338. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
  339. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
  340. data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_two_append_contents/index.erb +1 -0
  341. data/spec10/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
  342. data/spec10/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
  343. data/spec10/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
  344. data/spec10/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
  345. data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
  346. data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
  347. data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
  348. data/spec10/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
  349. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
  350. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
  351. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
  352. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
  353. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
  354. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
  355. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/_collection.erb +1 -0
  356. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/index.erb +1 -0
  357. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/_ab.erb +1 -0
  358. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/index.erb +1 -0
  359. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
  360. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
  361. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/_variable.erb +1 -0
  362. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/index.erb +1 -0
  363. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
  364. data/spec10/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
  365. data/spec10/public/abstract_controller/controllers/views/partial/with_absolute_partial/_partial.erb +1 -0
  366. data/spec10/public/abstract_controller/controllers/views/partial/with_absolute_partial/index.erb +1 -0
  367. data/spec10/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
  368. data/spec10/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
  369. data/spec10/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
  370. data/spec10/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
  371. data/spec10/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
  372. data/spec10/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
  373. data/spec10/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
  374. data/spec10/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
  375. data/spec10/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
  376. data/spec10/public/abstract_controller/display_spec.rb +38 -0
  377. data/spec10/public/abstract_controller/filter_spec.rb +143 -0
  378. data/spec10/public/abstract_controller/helper_spec.rb +30 -0
  379. data/spec10/public/abstract_controller/partial_spec.rb +70 -0
  380. data/spec10/public/abstract_controller/render_spec.rb +91 -0
  381. data/spec10/public/abstract_controller/spec_helper.rb +31 -0
  382. data/spec10/public/boot_loader/boot_loader_spec.rb +34 -0
  383. data/spec10/public/boot_loader/spec_helper.rb +1 -0
  384. data/spec10/public/controller/authentication_spec.rb +174 -0
  385. data/spec10/public/controller/base_spec.rb +96 -0
  386. data/spec10/public/controller/conditional_get_spec.rb +101 -0
  387. data/spec10/public/controller/config/init.rb +6 -0
  388. data/spec10/public/controller/controllers/authentication.rb +74 -0
  389. data/spec10/public/controller/controllers/base.rb +71 -0
  390. data/spec10/public/controller/controllers/conditional_get.rb +35 -0
  391. data/spec10/public/controller/controllers/cookies.rb +36 -0
  392. data/spec10/public/controller/controllers/dispatcher.rb +35 -0
  393. data/spec10/public/controller/controllers/display.rb +118 -0
  394. data/spec10/public/controller/controllers/redirect.rb +36 -0
  395. data/spec10/public/controller/controllers/responder.rb +93 -0
  396. data/spec10/public/controller/controllers/streaming.rb +18 -0
  397. data/spec10/public/controller/controllers/url.rb +42 -0
  398. data/spec10/public/controller/controllers/views/layout/custom.html.erb +1 -0
  399. data/spec10/public/controller/controllers/views/layout/custom_arg.html.erb +1 -0
  400. data/spec10/public/controller/controllers/views/layout/custom_arg.json.erb +1 -0
  401. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.html.erb +1 -0
  402. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.xml.erb +1 -0
  403. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
  404. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
  405. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
  406. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/no_layout.html.erb +1 -0
  407. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template_argument/index.html.erb +1 -0
  408. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
  409. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
  410. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
  411. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
  412. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
  413. data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
  414. data/spec10/public/controller/cookies_spec.rb +95 -0
  415. data/spec10/public/controller/dispatcher_spec.rb +556 -0
  416. data/spec10/public/controller/display_spec.rb +84 -0
  417. data/spec10/public/controller/redirect_spec.rb +41 -0
  418. data/spec10/public/controller/resource_spec.rb +364 -0
  419. data/spec10/public/controller/responder_spec.rb +169 -0
  420. data/spec10/public/controller/spec_helper.rb +15 -0
  421. data/spec10/public/controller/streaming_spec.rb +40 -0
  422. data/spec10/public/controller/url_spec.rb +361 -0
  423. data/spec10/public/core/merb_core_spec.rb +46 -0
  424. data/spec10/public/core_ext/dependency_after_load_spec.rb +13 -0
  425. data/spec10/public/core_ext/fixtures/bad_require_gem/Rakefile +42 -0
  426. data/spec10/public/core_ext/fixtures/bad_require_gem/lib/BadRequireGem.rb +6 -0
  427. data/spec10/public/core_ext/fixtures/core_ext_dependency.rb +2 -0
  428. data/spec10/public/core_ext/fixtures/gems/bin/edit_json.rb +19 -0
  429. data/spec10/public/core_ext/fixtures/gems/gems/bad_require_gem-0.0.1/Rakefile +42 -0
  430. data/spec10/public/core_ext/fixtures/gems/gems/bad_require_gem-0.0.1/lib/BadRequireGem.rb +6 -0
  431. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/CHANGES +93 -0
  432. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/GPL +340 -0
  433. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/README +78 -0
  434. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/RUBY +58 -0
  435. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/Rakefile +309 -0
  436. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/TODO +1 -0
  437. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/VERSION +1 -0
  438. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark.txt +133 -0
  439. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_generator.rb +48 -0
  440. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_parser.rb +26 -0
  441. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_rails.rb +26 -0
  442. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/bin/edit_json.rb +10 -0
  443. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/bin/prettify_json.rb +76 -0
  444. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/example.json +1 -0
  445. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/index.html +38 -0
  446. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/prototype.js +4184 -0
  447. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
  448. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/generator.c +875 -0
  449. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.c +182 -0
  450. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.h +53 -0
  451. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
  452. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.c +1758 -0
  453. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.rl +638 -0
  454. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.c +154 -0
  455. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.h +58 -0
  456. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/install.rb +26 -0
  457. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Array.xpm +21 -0
  458. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/FalseClass.xpm +21 -0
  459. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Hash.xpm +21 -0
  460. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Key.xpm +73 -0
  461. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/NilClass.xpm +21 -0
  462. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Numeric.xpm +28 -0
  463. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/String.xpm +96 -0
  464. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/TrueClass.xpm +21 -0
  465. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/add/core.rb +135 -0
  466. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/add/rails.rb +58 -0
  467. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/common.rb +354 -0
  468. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/editor.rb +1362 -0
  469. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/ext.rb +13 -0
  470. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/json.xpm +1499 -0
  471. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure/generator.rb +394 -0
  472. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure/parser.rb +259 -0
  473. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure.rb +75 -0
  474. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/version.rb +9 -0
  475. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json.rb +235 -0
  476. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail1.json +1 -0
  477. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail10.json +1 -0
  478. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail11.json +1 -0
  479. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail12.json +1 -0
  480. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail13.json +1 -0
  481. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail14.json +1 -0
  482. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail18.json +1 -0
  483. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail19.json +1 -0
  484. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail2.json +1 -0
  485. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail20.json +1 -0
  486. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail21.json +1 -0
  487. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail22.json +1 -0
  488. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail23.json +1 -0
  489. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail24.json +1 -0
  490. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail25.json +1 -0
  491. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail27.json +2 -0
  492. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail28.json +2 -0
  493. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail3.json +1 -0
  494. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail4.json +1 -0
  495. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail5.json +1 -0
  496. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail6.json +1 -0
  497. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail7.json +1 -0
  498. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail8.json +1 -0
  499. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail9.json +1 -0
  500. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass1.json +56 -0
  501. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass15.json +1 -0
  502. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass16.json +1 -0
  503. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass17.json +1 -0
  504. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass2.json +1 -0
  505. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass26.json +1 -0
  506. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass3.json +6 -0
  507. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/runner.rb +25 -0
  508. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json.rb +293 -0
  509. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_addition.rb +161 -0
  510. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_fixtures.rb +30 -0
  511. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_generate.rb +100 -0
  512. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_rails.rb +118 -0
  513. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_unicode.rb +61 -0
  514. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tools/fuzz.rb +140 -0
  515. data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tools/server.rb +62 -0
  516. data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.1/Rakefile +42 -0
  517. data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.1/lib/simple_gem.rb +6 -0
  518. data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.2/Rakefile +42 -0
  519. data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.2/lib/simple_gem.rb +6 -0
  520. data/spec10/public/core_ext/fixtures/gems/specifications/bad_require_gem-0.0.1.gemspec +28 -0
  521. data/spec10/public/core_ext/fixtures/gems/specifications/json_pure-1.1.3.gemspec +33 -0
  522. data/spec10/public/core_ext/fixtures/gems/specifications/simple_gem-0.0.1.gemspec +28 -0
  523. data/spec10/public/core_ext/fixtures/gems/specifications/simple_gem-0.0.2.gemspec +28 -0
  524. data/spec10/public/core_ext/fixtures/simple_gem/Rakefile +42 -0
  525. data/spec10/public/core_ext/fixtures/simple_gem/lib/simple_gem.rb +6 -0
  526. data/spec10/public/core_ext/fixtures/simple_gem_2/Rakefile +42 -0
  527. data/spec10/public/core_ext/fixtures/simple_gem_2/lib/simple_gem.rb +6 -0
  528. data/spec10/public/core_ext/immediate_spec.rb +17 -0
  529. data/spec10/public/core_ext/kernel_spec.rb +44 -0
  530. data/spec10/public/core_ext/multi_versions_spec.rb +14 -0
  531. data/spec10/public/core_ext/require_as_fail_spec.rb +11 -0
  532. data/spec10/public/core_ext/require_as_immediate_spec.rb +17 -0
  533. data/spec10/public/core_ext/require_as_version_spec.rb +17 -0
  534. data/spec10/public/core_ext/require_as_working_spec.rb +17 -0
  535. data/spec10/public/core_ext/simple_dependency_spec.rb +17 -0
  536. data/spec10/public/core_ext/spec_helper.rb +1 -0
  537. data/spec10/public/core_ext/version_dependency_spec.rb +20 -0
  538. data/spec10/public/directory_structure/directory/app/controllers/application.rb +3 -0
  539. data/spec10/public/directory_structure/directory/app/controllers/base.rb +13 -0
  540. data/spec10/public/directory_structure/directory/app/controllers/custom.rb +19 -0
  541. data/spec10/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
  542. data/spec10/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
  543. data/spec10/public/directory_structure/directory/config/router.rb +3 -0
  544. data/spec10/public/directory_structure/directory_spec.rb +43 -0
  545. data/spec10/public/logger/logger_spec.rb +283 -0
  546. data/spec10/public/logger/spec_helper.rb +1 -0
  547. data/spec10/public/rack/conditinal_get_middleware_spec.rb +128 -0
  548. data/spec10/public/rack/rack_middleware_spec.rb +101 -0
  549. data/spec10/public/rack/shared_example_groups.rb +35 -0
  550. data/spec10/public/request/multipart_spec.rb +43 -0
  551. data/spec10/public/request/request_spec.rb +252 -0
  552. data/spec10/public/router/behavior_spec.rb +74 -0
  553. data/spec10/public/router/generation/conditions_spec.rb +134 -0
  554. data/spec10/public/router/generation/default_route_spec.rb +32 -0
  555. data/spec10/public/router/generation/defaults_spec.rb +20 -0
  556. data/spec10/public/router/generation/identify_spec.rb +163 -0
  557. data/spec10/public/router/generation/namespace_spec.rb +110 -0
  558. data/spec10/public/router/generation/optional_segments_spec.rb +163 -0
  559. data/spec10/public/router/generation/other_spec.rb +17 -0
  560. data/spec10/public/router/generation/params_spec.rb +72 -0
  561. data/spec10/public/router/generation/resources_spec.rb +320 -0
  562. data/spec10/public/router/generation/string_spec.rb +125 -0
  563. data/spec10/public/router/generation/using_request_params_spec.rb +130 -0
  564. data/spec10/public/router/recognition/conditions_spec.rb +395 -0
  565. data/spec10/public/router/recognition/default_routes_spec.rb +35 -0
  566. data/spec10/public/router/recognition/defaults_spec.rb +122 -0
  567. data/spec10/public/router/recognition/deferred_spec.rb +209 -0
  568. data/spec10/public/router/recognition/fixation_spec.rb +27 -0
  569. data/spec10/public/router/recognition/identify_spec.rb +53 -0
  570. data/spec10/public/router/recognition/namespace_spec.rb +353 -0
  571. data/spec10/public/router/recognition/nested_resources_spec.rb +105 -0
  572. data/spec10/public/router/recognition/optional_segments_spec.rb +113 -0
  573. data/spec10/public/router/recognition/params_spec.rb +228 -0
  574. data/spec10/public/router/recognition/redirect_spec.rb +49 -0
  575. data/spec10/public/router/recognition/regexp_paths_spec.rb +61 -0
  576. data/spec10/public/router/recognition/resource_spec.rb +157 -0
  577. data/spec10/public/router/recognition/resources_spec.rb +346 -0
  578. data/spec10/public/router/recognition/variables_spec.rb +87 -0
  579. data/spec10/public/router/router_spec.rb +134 -0
  580. data/spec10/public/router/spec_helper.rb +287 -0
  581. data/spec10/public/router/spec_helper_spec.rb +33 -0
  582. data/spec10/public/session/controllers/sessions.rb +61 -0
  583. data/spec10/public/session/cookie_session_spec.rb +71 -0
  584. data/spec10/public/session/memcached_session_spec.rb +36 -0
  585. data/spec10/public/session/memory_session_spec.rb +26 -0
  586. data/spec10/public/session/multiple_sessions_spec.rb +81 -0
  587. data/spec10/public/session/no_session_spec.rb +14 -0
  588. data/spec10/public/session/session_shared.rb +108 -0
  589. data/spec10/public/session/spec_helper.rb +2 -0
  590. data/spec10/public/template/template_spec.rb +105 -0
  591. data/spec10/public/template/templates/error.html.erb +2 -0
  592. data/spec10/public/template/templates/template.html.erb +1 -0
  593. data/spec10/public/template/templates/template.html.myt +1 -0
  594. data/spec10/public/test/controller_matchers_spec.rb +422 -0
  595. data/spec10/public/test/controllers/controller_assertion_mock.rb +7 -0
  596. data/spec10/public/test/controllers/dispatch_controller.rb +11 -0
  597. data/spec10/public/test/controllers/request_controller.rb +64 -0
  598. data/spec10/public/test/controllers/spec_helper_controller.rb +39 -0
  599. data/spec10/public/test/mock_request_helper_spec.rb +269 -0
  600. data/spec10/public/test/multipart_request_helper_spec.rb +159 -0
  601. data/spec10/public/test/multipart_upload_text_file.txt +1 -0
  602. data/spec10/public/test/request_helper_spec.rb +124 -0
  603. data/spec10/public/test/route_helper_spec.rb +75 -0
  604. data/spec10/public/test/route_matchers_spec.rb +168 -0
  605. data/spec10/public/test/rspec_ext_spec.rb +17 -0
  606. data/spec10/public/test/spec_helper.rb +1 -0
  607. data/spec10/public/webrat/spec_helper.rb +1 -0
  608. data/spec10/public/webrat/test_app/Rakefile +35 -0
  609. data/spec10/public/webrat/test_app/app/controllers/application.rb +2 -0
  610. data/spec10/public/webrat/test_app/app/controllers/exceptions.rb +13 -0
  611. data/spec10/public/webrat/test_app/app/controllers/testing.rb +23 -0
  612. data/spec10/public/webrat/test_app/app/helpers/global_helpers.rb +5 -0
  613. data/spec10/public/webrat/test_app/app/helpers/testing_helper.rb +5 -0
  614. data/spec10/public/webrat/test_app/app/models/user.rb +17 -0
  615. data/spec10/public/webrat/test_app/app/views/exceptions/not_acceptable.html.erb +63 -0
  616. data/spec10/public/webrat/test_app/app/views/exceptions/not_found.html.erb +47 -0
  617. data/spec10/public/webrat/test_app/app/views/layout/application.html.erb +12 -0
  618. data/spec10/public/webrat/test_app/app/views/testing/index.html.erb +3 -0
  619. data/spec10/public/webrat/test_app/app/views/testing/show_form.html.erb +6 -0
  620. data/spec10/public/webrat/test_app/autotest/discover.rb +1 -0
  621. data/spec10/public/webrat/test_app/autotest/merb.rb +149 -0
  622. data/spec10/public/webrat/test_app/autotest/merb_rspec.rb +165 -0
  623. data/spec10/public/webrat/test_app/bin/autospec +31 -0
  624. data/spec10/public/webrat/test_app/bin/edit_json.rb +31 -0
  625. data/spec10/public/webrat/test_app/bin/erubis +31 -0
  626. data/spec10/public/webrat/test_app/bin/gpgen +31 -0
  627. data/spec10/public/webrat/test_app/bin/merb +31 -0
  628. data/spec10/public/webrat/test_app/bin/mongrel_rails +31 -0
  629. data/spec10/public/webrat/test_app/bin/rackup +31 -0
  630. data/spec10/public/webrat/test_app/bin/rake +31 -0
  631. data/spec10/public/webrat/test_app/bin/rake2thor +31 -0
  632. data/spec10/public/webrat/test_app/bin/spec +31 -0
  633. data/spec10/public/webrat/test_app/bin/thor +31 -0
  634. data/spec10/public/webrat/test_app/config/database.yml +33 -0
  635. data/spec10/public/webrat/test_app/config/dependencies.rb +23 -0
  636. data/spec10/public/webrat/test_app/config/environments/development.rb +15 -0
  637. data/spec10/public/webrat/test_app/config/environments/production.rb +10 -0
  638. data/spec10/public/webrat/test_app/config/environments/rake.rb +11 -0
  639. data/spec10/public/webrat/test_app/config/environments/staging.rb +10 -0
  640. data/spec10/public/webrat/test_app/config/environments/test.rb +12 -0
  641. data/spec10/public/webrat/test_app/config/init.rb +25 -0
  642. data/spec10/public/webrat/test_app/config/rack.rb +11 -0
  643. data/spec10/public/webrat/test_app/config/router.rb +44 -0
  644. data/spec10/public/webrat/test_app/doc/rdoc/generators/merb_generator.rb +1362 -0
  645. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/api_grease.js +640 -0
  646. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/index.html.erb +37 -0
  647. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb.css +252 -0
  648. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb.rb +351 -0
  649. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
  650. data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/prototype.js +2515 -0
  651. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/ChangeLog +3 -0
  652. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/README.txt +57 -0
  653. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/abstract.gemspec +48 -0
  654. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/lib/abstract.rb +75 -0
  655. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/setup.rb +1331 -0
  656. data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/test/test.rb +91 -0
  657. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/CHANGELOG +14 -0
  658. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/LICENSE +55 -0
  659. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/Manifest +6 -0
  660. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/README +40 -0
  661. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/cgi_multipart_eof_fix.gemspec +44 -0
  662. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/lib/cgi_multipart_eof_fix.rb +127 -0
  663. data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/test/test_cgi_multipart_eof_fix.rb +59 -0
  664. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/LICENSE +29 -0
  665. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/README +223 -0
  666. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/Rakefile +84 -0
  667. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/Releases +126 -0
  668. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/TODO +6 -0
  669. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/call/call.rb +56 -0
  670. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/call/call_monitor.rb +55 -0
  671. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/daemonize/daemonize.rb +20 -0
  672. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_crash.rb +17 -0
  673. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_exec.rb +16 -0
  674. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_exit.rb +15 -0
  675. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_keep_pid_files.rb +17 -0
  676. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_monitor.rb +16 -0
  677. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_multiple.rb +16 -0
  678. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_normal.rb +12 -0
  679. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_ontop.rb +16 -0
  680. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_optionparser.rb +43 -0
  681. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc.rb +25 -0
  682. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc.rb.output +101 -0
  683. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb +22 -0
  684. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb.output +2 -0
  685. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_simple.rb +17 -0
  686. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver.rb +12 -0
  687. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_crashing.rb +14 -0
  688. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_crashing.rb.output +30 -0
  689. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_exiting.rb +8 -0
  690. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/application.rb +372 -0
  691. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/application_group.rb +152 -0
  692. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/cmdline.rb +117 -0
  693. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/controller.rb +134 -0
  694. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/daemonize.rb +263 -0
  695. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/exceptions.rb +28 -0
  696. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/monitor.rb +127 -0
  697. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pid.rb +101 -0
  698. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pidfile.rb +111 -0
  699. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pidmem.rb +10 -0
  700. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons.rb +283 -0
  701. data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/setup.rb +1360 -0
  702. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/CHANGES.txt +717 -0
  703. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/MIT-LICENSE +20 -0
  704. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/README.txt +102 -0
  705. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/Makefile +6 -0
  706. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/bench.rb +314 -0
  707. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/bench_context.yaml +141 -0
  708. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/_footer.html +4 -0
  709. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/_header.html +52 -0
  710. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_erb.rhtml +29 -0
  711. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_erubis.rhtml +29 -0
  712. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_eruby.rhtml +29 -0
  713. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis +11 -0
  714. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis +11 -0
  715. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis-run.rb +132 -0
  716. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/inline-require +153 -0
  717. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc/docstyle.css +188 -0
  718. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc/users-guide.html +3285 -0
  719. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +181 -0
  720. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ActionView.html +105 -0
  721. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ERB.html +101 -0
  722. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
  723. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
  724. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
  725. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayEruby.html +120 -0
  726. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic/Converter.html +327 -0
  727. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic/Engine.html +130 -0
  728. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic.html +112 -0
  729. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
  730. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
  731. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/CGenerator.html +386 -0
  732. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/CommandOptionError.html +113 -0
  733. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Context.html +344 -0
  734. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Converter.html +283 -0
  735. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
  736. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
  737. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ec.html +126 -0
  738. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ejava.html +126 -0
  739. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ejavascript.html +126 -0
  740. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Engine.html +305 -0
  741. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Eperl.html +126 -0
  742. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ephp.html +126 -0
  743. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
  744. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErboutEruby.html +120 -0
  745. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErubisError.html +117 -0
  746. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Eruby.html +132 -0
  747. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
  748. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEc.html +120 -0
  749. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEjava.html +120 -0
  750. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
  751. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEperl.html +120 -0
  752. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEphp.html +120 -0
  753. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEruby.html +127 -0
  754. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
  755. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Escheme.html +126 -0
  756. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Evaluator.html +212 -0
  757. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/FastEruby.html +131 -0
  758. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Generator.html +416 -0
  759. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
  760. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
  761. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
  762. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +164 -0
  763. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
  764. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers.html +116 -0
  765. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/InterpolationEnhancer.html +306 -0
  766. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
  767. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/JavaGenerator.html +359 -0
  768. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
  769. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Main.html +340 -0
  770. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
  771. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
  772. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
  773. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoTextEruby.html +120 -0
  774. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NotSupportedError.html +119 -0
  775. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
  776. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
  777. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
  778. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Converter.html +266 -0
  779. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ec.html +166 -0
  780. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ejava.html +166 -0
  781. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
  782. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Engine.html +122 -0
  783. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Eperl.html +166 -0
  784. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ephp.html +166 -0
  785. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Eruby.html +155 -0
  786. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Escheme.html +166 -0
  787. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
  788. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI.html +124 -0
  789. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PercentLineEnhancer.html +179 -0
  790. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
  791. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PerlGenerator.html +344 -0
  792. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PhpGenerator.html +350 -0
  793. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
  794. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
  795. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
  796. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
  797. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
  798. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
  799. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
  800. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
  801. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/RubyGenerator.html +327 -0
  802. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
  803. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
  804. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
  805. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
  806. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutEruby.html +120 -0
  807. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
  808. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
  809. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
  810. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringIOEruby.html +120 -0
  811. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/TinyEruby.html +299 -0
  812. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/XmlEruby.html +130 -0
  813. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/XmlHelper.html +255 -0
  814. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis.html +353 -0
  815. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/created.rid +1 -0
  816. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/README_txt.html +247 -0
  817. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/context_rb.html +107 -0
  818. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/converter_rb.html +114 -0
  819. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ec_rb.html +115 -0
  820. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ejava_rb.html +115 -0
  821. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
  822. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
  823. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/eperl_rb.html +115 -0
  824. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ephp_rb.html +115 -0
  825. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/eruby_rb.html +115 -0
  826. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/escheme_rb.html +115 -0
  827. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/optimized_rb.html +114 -0
  828. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine_rb.html +117 -0
  829. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/enhancer_rb.html +107 -0
  830. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/error_rb.html +107 -0
  831. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/evaluator_rb.html +115 -0
  832. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/generator_rb.html +114 -0
  833. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helper_rb.html +107 -0
  834. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
  835. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
  836. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/local-setting_rb.html +107 -0
  837. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/main_rb.html +127 -0
  838. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/preprocessing_rb.html +114 -0
  839. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/tiny_rb.html +107 -0
  840. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis_rb.html +118 -0
  841. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_class_index.html +122 -0
  842. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_file_index.html +51 -0
  843. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_method_index.html +248 -0
  844. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/index.html +24 -0
  845. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/rdoc-style.css +208 -0
  846. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/Makefile +53 -0
  847. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ec +42 -0
  848. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ejava +45 -0
  849. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ejs +16 -0
  850. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.eperl +16 -0
  851. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ephp +17 -0
  852. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.eruby +15 -0
  853. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.escheme +26 -0
  854. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/Makefile +54 -0
  855. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ec +42 -0
  856. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ejava +45 -0
  857. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ejs +16 -0
  858. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.eperl +16 -0
  859. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ephp +17 -0
  860. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.eruby +15 -0
  861. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.escheme +26 -0
  862. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/context.rb +84 -0
  863. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/converter.rb +358 -0
  864. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ec.rb +118 -0
  865. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ejava.rb +111 -0
  866. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ejavascript.rb +120 -0
  867. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/enhanced.rb +122 -0
  868. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/eperl.rb +96 -0
  869. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ephp.rb +100 -0
  870. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/eruby.rb +125 -0
  871. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/escheme.rb +115 -0
  872. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/optimized.rb +128 -0
  873. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine.rb +121 -0
  874. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/enhancer.rb +681 -0
  875. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/error.rb +24 -0
  876. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/evaluator.rb +89 -0
  877. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/generator.rb +86 -0
  878. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helper.rb +48 -0
  879. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helpers/rails_form_helper.rb +198 -0
  880. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helpers/rails_helper.rb +325 -0
  881. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/local-setting.rb +10 -0
  882. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/main.rb +491 -0
  883. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/preprocessing.rb +59 -0
  884. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/tiny.rb +146 -0
  885. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis.rb +73 -0
  886. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/setup.rb +1331 -0
  887. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/assert-text-equal.rb +45 -0
  888. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/Example.ejava +55 -0
  889. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/array_example.result +9 -0
  890. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/arraybuffer_example.result +9 -0
  891. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/bipattern-example.rhtml +4 -0
  892. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/bipattern_example.result +6 -0
  893. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/context.rb +6 -0
  894. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/context.yaml +8 -0
  895. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/def_method.rb +14 -0
  896. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/def_method.result +3 -0
  897. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/escape_example.result +9 -0
  898. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ec +27 -0
  899. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ejs +20 -0
  900. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.eperl +18 -0
  901. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ephp +18 -0
  902. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.eruby +6 -0
  903. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.escheme +28 -0
  904. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.eruby +6 -0
  905. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.rb +17 -0
  906. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.result +16 -0
  907. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.rb +4 -0
  908. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.result +17 -0
  909. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.xhtml +14 -0
  910. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10_x.result +17 -0
  911. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.php +20 -0
  912. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.result +23 -0
  913. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.rhtml +21 -0
  914. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_C.result +10 -0
  915. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_N.result +16 -0
  916. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_U.result +16 -0
  917. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_php.result +15 -0
  918. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1_x.result +9 -0
  919. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.eruby +7 -0
  920. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.rb +10 -0
  921. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.result +27 -0
  922. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2_trim.result +10 -0
  923. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2_x.result +10 -0
  924. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3.eruby +6 -0
  925. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3.rb +10 -0
  926. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example31.result +22 -0
  927. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example32.result +4 -0
  928. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3_e.result +8 -0
  929. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.eruby +3 -0
  930. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.rb +11 -0
  931. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.result +10 -0
  932. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4_x.result +5 -0
  933. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.eruby +6 -0
  934. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.rb +16 -0
  935. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.result +7 -0
  936. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example6.rb +12 -0
  937. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example6.result +7 -0
  938. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example7.eruby +8 -0
  939. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example71.result +13 -0
  940. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example72.result +13 -0
  941. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8.eruby +6 -0
  942. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8_ruby.result +7 -0
  943. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8_yaml.result +7 -0
  944. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.eruby +3 -0
  945. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.rb +8 -0
  946. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.result +9 -0
  947. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example91.result +5 -0
  948. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example92.result +4 -0
  949. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_c.result +29 -0
  950. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_java.result +56 -0
  951. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_js.result +22 -0
  952. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_perl.result +20 -0
  953. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_php.result +19 -0
  954. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_scheme.result +30 -0
  955. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_scheme_display.result +29 -0
  956. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.rb +11 -0
  957. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.result +38 -0
  958. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.rhtml +15 -0
  959. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example.eruby +9 -0
  960. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example2.rb +8 -0
  961. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example2.rhtml +10 -0
  962. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter_example.result +11 -0
  963. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter_example2.result +13 -0
  964. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/interpolation_example.result +9 -0
  965. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program1.rb +8 -0
  966. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program1.result +6 -0
  967. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program2.rb +8 -0
  968. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program2.result +6 -0
  969. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode-example.eruby +14 -0
  970. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode-php.result +20 -0
  971. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode_example.result +15 -0
  972. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/normal-eruby-test.eruby +9 -0
  973. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/normal_eruby_test.result +11 -0
  974. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-example.eruby +14 -0
  975. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-example.php +19 -0
  976. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-php.result +20 -0
  977. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext_example.result +16 -0
  978. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/percentline-example.rhtml +4 -0
  979. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/percentline_example.result +7 -0
  980. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenable_example.result +4 -0
  981. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenabled-example.eruby +3 -0
  982. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenabled-example.rb +8 -0
  983. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printstatement_example.result +8 -0
  984. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/simplify_example.result +9 -0
  985. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/stdout_exmple.result +9 -0
  986. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/stringbuffer_example.result +9 -0
  987. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/tail_260.result +4 -0
  988. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/tailnewline.rhtml +3 -0
  989. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/template1.rhtml +4 -0
  990. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/template2.rhtml +4 -0
  991. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/hoge.rb +5 -0
  992. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-engines.rb +370 -0
  993. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-enhancers.rb +571 -0
  994. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-erubis.rb +884 -0
  995. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-main.rb +674 -0
  996. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-users-guide.rb +58 -0
  997. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test.rb +30 -0
  998. data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/testutil.rb +101 -0
  999. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/LICENSE +20 -0
  1000. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/README.txt +3 -0
  1001. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/Rakefile +177 -0
  1002. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/assertions.rb +8 -0
  1003. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/blank.rb +59 -0
  1004. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/boolean.rb +11 -0
  1005. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/class.rb +175 -0
  1006. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/datetime.rb +9 -0
  1007. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/dictionary.rb +433 -0
  1008. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/hash.rb +419 -0
  1009. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/hook.rb +366 -0
  1010. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/inflection.rb +435 -0
  1011. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/lazy_array.rb +106 -0
  1012. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/logger.rb +202 -0
  1013. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/mash.rb +148 -0
  1014. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/module.rb +41 -0
  1015. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/nil.rb +5 -0
  1016. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/numeric.rb +5 -0
  1017. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/object.rb +175 -0
  1018. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/object_space.rb +13 -0
  1019. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/pathname.rb +5 -0
  1020. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/pooling.rb +239 -0
  1021. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/rubygems.rb +38 -0
  1022. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/simple_set.rb +39 -0
  1023. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/string.rb +132 -0
  1024. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/struct.rb +8 -0
  1025. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/symbol.rb +17 -0
  1026. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/tasks/release.rb +15 -0
  1027. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/time.rb +19 -0
  1028. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/version.rb +3 -0
  1029. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/virtual_file.rb +10 -0
  1030. data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib.rb +56 -0
  1031. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/CHANGELOG +3 -0
  1032. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/Manifest +9 -0
  1033. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/Makefile +153 -0
  1034. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/extconf.rb +3 -0
  1035. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.bundle +0 -0
  1036. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.c +1186 -0
  1037. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.o +0 -0
  1038. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/fastthread.gemspec +52 -0
  1039. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/lib/fastthread.bundle +0 -0
  1040. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/setup.rb +1585 -0
  1041. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_all.rb +6 -0
  1042. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_condvar.rb +34 -0
  1043. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_mutex.rb +74 -0
  1044. data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_queue.rb +79 -0
  1045. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/CHANGELOG +2 -0
  1046. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/COPYING +504 -0
  1047. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/LICENSE +55 -0
  1048. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/Manifest +15 -0
  1049. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/README +115 -0
  1050. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/bin/gpgen +60 -0
  1051. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/gem_plugin.gemspec +53 -0
  1052. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/lib/gem_plugin.rb +291 -0
  1053. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/COPYING +1 -0
  1054. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/LICENSE +1 -0
  1055. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/README +5 -0
  1056. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/Rakefile +61 -0
  1057. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/lib/project/init.rb +6 -0
  1058. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/resources/defaults.yaml +2 -0
  1059. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/setup.rb +1360 -0
  1060. data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/test/test_plugins.rb +72 -0
  1061. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/CHANGES +93 -0
  1062. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/GPL +340 -0
  1063. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/README +78 -0
  1064. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/RUBY +58 -0
  1065. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/Rakefile +309 -0
  1066. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/TODO +1 -0
  1067. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/VERSION +1 -0
  1068. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark.txt +133 -0
  1069. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_generator.rb +48 -0
  1070. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_parser.rb +26 -0
  1071. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_rails.rb +26 -0
  1072. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/bin/edit_json.rb +10 -0
  1073. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/bin/prettify_json.rb +76 -0
  1074. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/example.json +1 -0
  1075. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/index.html +38 -0
  1076. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/prototype.js +4184 -0
  1077. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
  1078. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/generator.c +875 -0
  1079. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.c +182 -0
  1080. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.h +53 -0
  1081. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
  1082. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.c +1758 -0
  1083. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.rl +638 -0
  1084. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.c +154 -0
  1085. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.h +58 -0
  1086. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/install.rb +26 -0
  1087. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Array.xpm +21 -0
  1088. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/FalseClass.xpm +21 -0
  1089. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Hash.xpm +21 -0
  1090. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Key.xpm +73 -0
  1091. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/NilClass.xpm +21 -0
  1092. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Numeric.xpm +28 -0
  1093. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/String.xpm +96 -0
  1094. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/TrueClass.xpm +21 -0
  1095. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/add/core.rb +135 -0
  1096. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/add/rails.rb +58 -0
  1097. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/common.rb +354 -0
  1098. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/editor.rb +1362 -0
  1099. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/ext.rb +13 -0
  1100. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/json.xpm +1499 -0
  1101. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure/generator.rb +394 -0
  1102. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure/parser.rb +259 -0
  1103. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure.rb +75 -0
  1104. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/version.rb +9 -0
  1105. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json.rb +235 -0
  1106. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail1.json +1 -0
  1107. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail10.json +1 -0
  1108. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail11.json +1 -0
  1109. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail12.json +1 -0
  1110. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail13.json +1 -0
  1111. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail14.json +1 -0
  1112. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail18.json +1 -0
  1113. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail19.json +1 -0
  1114. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail2.json +1 -0
  1115. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail20.json +1 -0
  1116. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail21.json +1 -0
  1117. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail22.json +1 -0
  1118. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail23.json +1 -0
  1119. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail24.json +1 -0
  1120. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail25.json +1 -0
  1121. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail27.json +2 -0
  1122. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail28.json +2 -0
  1123. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail3.json +1 -0
  1124. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail4.json +1 -0
  1125. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail5.json +1 -0
  1126. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail6.json +1 -0
  1127. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail7.json +1 -0
  1128. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail8.json +1 -0
  1129. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail9.json +1 -0
  1130. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass1.json +56 -0
  1131. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass15.json +1 -0
  1132. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass16.json +1 -0
  1133. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass17.json +1 -0
  1134. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass2.json +1 -0
  1135. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass26.json +1 -0
  1136. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass3.json +6 -0
  1137. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/runner.rb +25 -0
  1138. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json.rb +293 -0
  1139. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_addition.rb +161 -0
  1140. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_fixtures.rb +30 -0
  1141. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_generate.rb +100 -0
  1142. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_rails.rb +118 -0
  1143. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_unicode.rb +61 -0
  1144. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tools/fuzz.rb +140 -0
  1145. data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tools/server.rb +62 -0
  1146. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/CHANGELOG +1126 -0
  1147. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/CONTRIBUTORS +133 -0
  1148. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/LICENSE +20 -0
  1149. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/PUBLIC_CHANGELOG +157 -0
  1150. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/README +53 -0
  1151. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/Rakefile +461 -0
  1152. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/TODO +0 -0
  1153. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/bin/merb +11 -0
  1154. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/bin/merb-specs +5 -0
  1155. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/autoload.rb +32 -0
  1156. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/bootloader.rb +1346 -0
  1157. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/config.rb +470 -0
  1158. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/constants.rb +97 -0
  1159. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/abstract_controller.rb +713 -0
  1160. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/exceptions.rb +346 -0
  1161. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/merb_controller.rb +390 -0
  1162. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mime.rb +135 -0
  1163. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/authentication.rb +168 -0
  1164. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/conditional_get.rb +97 -0
  1165. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/controller.rb +348 -0
  1166. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/render.rb +532 -0
  1167. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/responder.rb +492 -0
  1168. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/template.rb +299 -0
  1169. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext/hash.rb +16 -0
  1170. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext/kernel.rb +406 -0
  1171. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext.rb +9 -0
  1172. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/cookies.rb +130 -0
  1173. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/default_exception/default_exception.rb +93 -0
  1174. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/default_exception/views/_css.html.erb +200 -0
  1175. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/default_exception/views/_javascript.html.erb +77 -0
  1176. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/default_exception/views/index.html.erb +98 -0
  1177. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/dispatcher.rb +156 -0
  1178. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/request.rb +608 -0
  1179. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/request_parsers.rb +236 -0
  1180. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/behavior.rb +785 -0
  1181. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/cached_proc.rb +52 -0
  1182. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/resources.rb +329 -0
  1183. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/route.rb +632 -0
  1184. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router.rb +355 -0
  1185. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/container.rb +90 -0
  1186. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/cookie.rb +202 -0
  1187. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/memcached.rb +72 -0
  1188. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/memory.rb +111 -0
  1189. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/store_container.rb +162 -0
  1190. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session.rb +266 -0
  1191. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/worker.rb +42 -0
  1192. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/gem_ext/erubis.rb +81 -0
  1193. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/logger.rb +193 -0
  1194. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/plugins.rb +80 -0
  1195. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/abstract.rb +268 -0
  1196. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/ebb.rb +24 -0
  1197. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/evented_mongrel.rb +13 -0
  1198. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/fcgi.rb +17 -0
  1199. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/irb.rb +164 -0
  1200. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/mongrel.rb +41 -0
  1201. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/runner.rb +28 -0
  1202. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/swiftiplied_mongrel.rb +14 -0
  1203. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/thin.rb +38 -0
  1204. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/thin_turbo.rb +17 -0
  1205. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/webrick.rb +72 -0
  1206. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter.rb +48 -0
  1207. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/application.rb +54 -0
  1208. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/handler/mongrel.rb +96 -0
  1209. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/helpers.rb +33 -0
  1210. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/conditional_get.rb +29 -0
  1211. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/content_length.rb +18 -0
  1212. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/path_prefix.rb +31 -0
  1213. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/profiler.rb +19 -0
  1214. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/static.rb +49 -0
  1215. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/tracer.rb +20 -0
  1216. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware.rb +20 -0
  1217. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/stream_wrapper.rb +41 -0
  1218. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack.rb +27 -0
  1219. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/server.rb +386 -0
  1220. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/audit.rake +68 -0
  1221. data/{lib → spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib}/merb-core/tasks/gem_management.rb +1 -1
  1222. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/merb.rb +4 -0
  1223. data/{lib → spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib}/merb-core/tasks/merb_rake_helper.rb +1 -1
  1224. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/stats.rake +71 -0
  1225. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/controller_helper.rb +8 -0
  1226. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/cookie_jar.rb +106 -0
  1227. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/mock_request_helper.rb +400 -0
  1228. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/multipart_request_helper.rb +176 -0
  1229. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/request_helper.rb +81 -0
  1230. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/route_helper.rb +93 -0
  1231. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers.rb +10 -0
  1232. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/controller_matchers.rb +108 -0
  1233. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/request_matchers.rb +126 -0
  1234. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/route_matchers.rb +137 -0
  1235. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/view_matchers.rb +248 -0
  1236. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers.rb +13 -0
  1237. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/run_spec.rb +40 -0
  1238. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/run_specs.rb +133 -0
  1239. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/tasks/spectasks.rb +78 -0
  1240. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/hpricot.rb +32 -0
  1241. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/nokogiri.rb +15 -0
  1242. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/object.rb +14 -0
  1243. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/rspec.rb +165 -0
  1244. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/string.rb +14 -0
  1245. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/webrat.rb +37 -0
  1246. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test.rb +12 -0
  1247. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/generated_parser.rb +653 -0
  1248. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/generated_tokenizer.rb +159 -0
  1249. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/node.rb +95 -0
  1250. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/parser.rb +24 -0
  1251. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/parser.y +198 -0
  1252. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/tokenizer.rb +9 -0
  1253. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/tokenizer.rex +63 -0
  1254. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/xpath_visitor.rb +159 -0
  1255. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css.rb +6 -0
  1256. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/version.rb +3 -0
  1257. data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core.rb +750 -0
  1258. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/LICENSE +20 -0
  1259. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/README +180 -0
  1260. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/Rakefile +73 -0
  1261. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/TODO +5 -0
  1262. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/core_ext/numeric.rb +388 -0
  1263. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/core_ext.rb +57 -0
  1264. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/date_time_formatting.rb +127 -0
  1265. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/date_time_helpers.rb +190 -0
  1266. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form/builder.rb +413 -0
  1267. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form/helpers.rb +449 -0
  1268. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form_helpers.rb +17 -0
  1269. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/tag_helpers.rb +61 -0
  1270. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/text_helpers.rb +61 -0
  1271. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/time_dsl.rb +59 -0
  1272. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers.rb +38 -0
  1273. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/core_ext_spec.rb +19 -0
  1274. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/application.rb +4 -0
  1275. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_check_box.rb +2 -0
  1276. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_file_field.rb +2 -0
  1277. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_hidden_field.rb +2 -0
  1278. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_option_tag.rb +2 -0
  1279. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_password_field.rb +2 -0
  1280. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_radio_button.rb +2 -0
  1281. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_radio_group.rb +2 -0
  1282. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_select.rb +2 -0
  1283. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_text_area.rb +2 -0
  1284. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_text_field.rb +2 -0
  1285. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/button.rb +2 -0
  1286. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/check_box.rb +2 -0
  1287. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/custom_builder.rb +2 -0
  1288. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/delete_button.rb +2 -0
  1289. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/exceptions.rb +25 -0
  1290. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/field_set.rb +2 -0
  1291. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/fields_for.rb +3 -0
  1292. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/file_field.rb +2 -0
  1293. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/foo.rb +23 -0
  1294. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/form.rb +2 -0
  1295. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/form_for.rb +2 -0
  1296. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/hidden_field.rb +2 -0
  1297. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/label.rb +3 -0
  1298. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/numeric_ext.rb +3 -0
  1299. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/option_tag.rb +2 -0
  1300. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/password_field.rb +2 -0
  1301. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/radio_button.rb +2 -0
  1302. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/radio_group.rb +2 -0
  1303. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/relative_date.rb +2 -0
  1304. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/relative_date_span.rb +2 -0
  1305. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/select.rb +2 -0
  1306. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/specs_controller.rb +11 -0
  1307. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/submit.rb +2 -0
  1308. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/tag_helper.rb +21 -0
  1309. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/text_area.rb +2 -0
  1310. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/text_field.rb +3 -0
  1311. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/helpers/global_helpers.rb +8 -0
  1312. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/fake_dm_model.rb +25 -0
  1313. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/first_generic_fake_model.rb +57 -0
  1314. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/second_generic_fake_model.rb +18 -0
  1315. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/third_generic_fake_model.rb +3 -0
  1316. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/basic.html.erb +4 -0
  1317. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/checked.html.erb +4 -0
  1318. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/errors.html.erb +4 -0
  1319. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/label.html.erb +3 -0
  1320. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/on_and_off.html.erb +3 -0
  1321. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb +3 -0
  1322. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb +3 -0
  1323. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_file_field_specs/takes_string.html.erb +3 -0
  1324. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_file_field_specs/with_label.html.erb +3 -0
  1325. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_hidden_field_specs/basic.html.erb +3 -0
  1326. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_hidden_field_specs/errors.html.erb +3 -0
  1327. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb +3 -0
  1328. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_hidden_field_specs/label.html.erb +3 -0
  1329. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_option_tag_specs/grouped.html.erb +3 -0
  1330. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_option_tag_specs/nested.html.erb +3 -0
  1331. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb +4 -0
  1332. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_password_field_specs/attributes.html.erb +3 -0
  1333. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_password_field_specs/basic.html.erb +3 -0
  1334. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_password_field_specs/label.html.erb +3 -0
  1335. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_radio_button_specs/basic.html.erb +3 -0
  1336. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_radio_group_specs/basic.html.erb +3 -0
  1337. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_radio_group_specs/hashes.html.erb +3 -0
  1338. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_radio_group_specs/mixed.html.erb +4 -0
  1339. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_radio_group_specs/override_id.html.erb +3 -0
  1340. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/basic.html.erb +3 -0
  1341. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/blank.html.erb +3 -0
  1342. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/multiple.html.erb +3 -0
  1343. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/prompt.html.erb +3 -0
  1344. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/with_options.html.erb +3 -0
  1345. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb +3 -0
  1346. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_text_area_specs/basic.html.erb +3 -0
  1347. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/bound_text_field_specs/basic.html.erb +3 -0
  1348. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/button_specs/button_with_label.html.erb +1 -0
  1349. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/button_specs/button_with_values.html.erb +1 -0
  1350. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/button_specs/disabled_button.html.erb +1 -0
  1351. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/basic.html.erb +1 -0
  1352. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/boolean.html.erb +1 -0
  1353. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/disabled.html.erb +1 -0
  1354. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/label.html.erb +1 -0
  1355. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb +1 -0
  1356. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb +2 -0
  1357. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb +1 -0
  1358. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb +1 -0
  1359. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/simple.html.erb +1 -0
  1360. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/to_string.html.erb +8 -0
  1361. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/check_box_specs/unchecked.html.erb +2 -0
  1362. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/custom_builder_specs/everything.html.erb +10 -0
  1363. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb +1 -0
  1364. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb +1 -0
  1365. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/delete_button_specs/delete_with_label.html.erb +1 -0
  1366. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/delete_button_specs/simple_delete.html.erb +1 -0
  1367. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/client_error.html.erb +37 -0
  1368. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/internal_server_error.html.erb +216 -0
  1369. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
  1370. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/not_found.html.erb +40 -0
  1371. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/fields_for_specs/basic.html.erb +3 -0
  1372. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/fields_for_specs/midstream.html.erb +7 -0
  1373. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/fields_for_specs/nil.html.erb +3 -0
  1374. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/fieldset_specs/legend.html.erb +3 -0
  1375. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/file_field_specs/disabled.html.erb +1 -0
  1376. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/file_field_specs/makes_multipart.html.erb +3 -0
  1377. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/file_field_specs/with_label.html.erb +1 -0
  1378. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/file_field_specs/with_values.html.erb +1 -0
  1379. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/foo/bar.html.erb +0 -0
  1380. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_for_specs/basic.html.erb +3 -0
  1381. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/create_a_form.html.erb +3 -0
  1382. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/create_a_multipart_form.html.erb +3 -0
  1383. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/fake_delete_if_set.html.erb +3 -0
  1384. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/fake_put_if_set.html.erb +3 -0
  1385. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/get_if_set.html.erb +3 -0
  1386. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/post_by_default.html.erb +3 -0
  1387. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/form_specs/resourceful_form.html.erb +3 -0
  1388. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/hidden_field_specs/basic.html.erb +1 -0
  1389. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/hidden_field_specs/disabled.html.erb +1 -0
  1390. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/hidden_field_specs/label.html.erb +1 -0
  1391. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/label_specs/basic.html.erb +1 -0
  1392. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/layout/application.html.erb +11 -0
  1393. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb +1 -0
  1394. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb +1 -0
  1395. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/numeric_ext_specs/two_digits.html.erb +1 -0
  1396. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/array.html.erb +1 -0
  1397. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/clean.html.erb +1 -0
  1398. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/collection.html.erb +1 -0
  1399. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/multiple_selects.html.erb +1 -0
  1400. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb +1 -0
  1401. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/optgroups.html.erb +1 -0
  1402. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/selected.html.erb +1 -0
  1403. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/with_blank.html.erb +1 -0
  1404. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/option_tag_specs/with_prompt.html.erb +1 -0
  1405. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/password_field_specs/basic.html.erb +1 -0
  1406. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/password_field_specs/disabled.html.erb +1 -0
  1407. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_button_specs/basic.html.erb +1 -0
  1408. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_button_specs/disabled.html.erb +1 -0
  1409. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_button_specs/label.html.erb +1 -0
  1410. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_group_specs/attributes.html.erb +1 -0
  1411. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_group_specs/basic.html.erb +1 -0
  1412. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_group_specs/hash.html.erb +1 -0
  1413. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb +1 -0
  1414. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb +1 -0
  1415. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb +1 -0
  1416. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb +1 -0
  1417. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb +1 -0
  1418. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_specs/relative_today.html.erb +1 -0
  1419. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb +1 -0
  1420. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/relative_date_specs/relative_yesterday.html.erb +1 -0
  1421. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/select_specs/blank.html.erb +1 -0
  1422. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/select_specs/multiple.html.erb +1 -0
  1423. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/submit_specs/disabled_submit.html.erb +1 -0
  1424. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/submit_specs/submit_with_label.html.erb +1 -0
  1425. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/submit_specs/submit_with_values.html.erb +1 -0
  1426. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/tag_helper/nested_tags.html.erb +5 -0
  1427. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/tag_helper/tag_with_attributes.html.erb +1 -0
  1428. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/tag_helper/tag_with_content.html.erb +1 -0
  1429. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb +3 -0
  1430. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_area_specs/basic.html.erb +1 -0
  1431. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_area_specs/disabled.html.erb +1 -0
  1432. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_area_specs/label.html.erb +1 -0
  1433. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_area_specs/nil.html.erb +1 -0
  1434. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_field_specs/basic.html.erb +1 -0
  1435. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_field_specs/class.html.erb +1 -0
  1436. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_field_specs/disabled.html.erb +1 -0
  1437. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/text_field_specs/label.html.erb +1 -0
  1438. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/development.rb +6 -0
  1439. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/production.rb +5 -0
  1440. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/test.rb +6 -0
  1441. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/init.rb +46 -0
  1442. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/rack.rb +11 -0
  1443. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/router.rb +38 -0
  1444. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/images/merb.jpg +0 -0
  1445. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/merb.fcgi +4 -0
  1446. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/stylesheets/master.css +119 -0
  1447. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_config_spec.rb +82 -0
  1448. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_date_time_spec.rb +268 -0
  1449. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_form_spec.rb +1237 -0
  1450. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_tag_helper_spec.rb +40 -0
  1451. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_text_spec.rb +67 -0
  1452. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/numeric_extlib_spec.rb +135 -0
  1453. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/ordinalize_spec.rb +51 -0
  1454. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/spec_helper.rb +156 -0
  1455. data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/time_dsl_spec.rb +43 -0
  1456. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/ChangeLog +101 -0
  1457. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/Install +16 -0
  1458. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/LICENCE +18 -0
  1459. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/README +30 -0
  1460. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/Rakefile +208 -0
  1461. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/lib/mime/types.rb +1558 -0
  1462. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/pre-setup.rb +46 -0
  1463. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/setup.rb +1366 -0
  1464. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/tc_mime_type.rb +275 -0
  1465. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/tc_mime_types.rb +77 -0
  1466. data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/testall.rb +18 -0
  1467. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/CHANGELOG +18 -0
  1468. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/COPYING +55 -0
  1469. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/LICENSE +55 -0
  1470. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/Manifest +69 -0
  1471. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/README +74 -0
  1472. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/TODO +5 -0
  1473. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/bin/mongrel_rails +283 -0
  1474. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/builder.rb +29 -0
  1475. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/README +3 -0
  1476. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/blog.rb +294 -0
  1477. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/tepee.rb +149 -0
  1478. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/httpd.conf +474 -0
  1479. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mime.yaml +3 -0
  1480. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel.conf +9 -0
  1481. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel_simple_ctrl.rb +92 -0
  1482. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel_simple_service.rb +116 -0
  1483. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/monitrc +57 -0
  1484. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/random_thrash.rb +19 -0
  1485. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/simpletest.rb +52 -0
  1486. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/webrick_compare.rb +20 -0
  1487. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/Makefile +153 -0
  1488. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/ext_help.h +14 -0
  1489. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/extconf.rb +6 -0
  1490. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.bundle +0 -0
  1491. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.c +402 -0
  1492. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.o +0 -0
  1493. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.c +1221 -0
  1494. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.h +49 -0
  1495. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.java.rl +170 -0
  1496. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.o +0 -0
  1497. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.rl +152 -0
  1498. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser_common.rl +54 -0
  1499. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/Http11Service.java +13 -0
  1500. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/org/jruby/mongrel/Http11.java +266 -0
  1501. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/org/jruby/mongrel/Http11Parser.java +572 -0
  1502. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/http11.bundle +0 -0
  1503. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/camping.rb +107 -0
  1504. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/cgi.rb +181 -0
  1505. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/command.rb +222 -0
  1506. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/configurator.rb +388 -0
  1507. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/const.rb +110 -0
  1508. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/debug.rb +203 -0
  1509. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/gems.rb +22 -0
  1510. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/handlers.rb +468 -0
  1511. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/header_out.rb +28 -0
  1512. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/http_request.rb +155 -0
  1513. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/http_response.rb +163 -0
  1514. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/init.rb +10 -0
  1515. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/mime_types.yml +616 -0
  1516. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/rails.rb +185 -0
  1517. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/stats.rb +89 -0
  1518. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/tcphack.rb +18 -0
  1519. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/uri_classifier.rb +76 -0
  1520. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel.rb +355 -0
  1521. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/mongrel-public_cert.pem +20 -0
  1522. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/mongrel.gemspec +235 -0
  1523. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/setup.rb +1585 -0
  1524. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/mime.yaml +3 -0
  1525. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/mongrel.conf +1 -0
  1526. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_cgi_wrapper.rb +26 -0
  1527. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_command.rb +86 -0
  1528. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_conditional.rb +107 -0
  1529. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_configurator.rb +87 -0
  1530. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_debug.rb +25 -0
  1531. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_handlers.rb +123 -0
  1532. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_http11.rb +156 -0
  1533. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_redirect_handler.rb +44 -0
  1534. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_request_progress.rb +99 -0
  1535. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_response.rb +127 -0
  1536. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_stats.rb +35 -0
  1537. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_uriclassifier.rb +261 -0
  1538. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_ws.rb +115 -0
  1539. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/testhelp.rb +66 -0
  1540. data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/tools/trickletest.rb +45 -0
  1541. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/AUTHORS +8 -0
  1542. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/COPYING +18 -0
  1543. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/KNOWN-ISSUES +18 -0
  1544. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/RDOX +265 -0
  1545. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/README +287 -0
  1546. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/Rakefile +179 -0
  1547. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/SPEC +126 -0
  1548. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/bin/rackup +172 -0
  1549. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/contrib/rack_logo.svg +111 -0
  1550. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/lobster.ru +4 -0
  1551. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/protectedlobster.rb +14 -0
  1552. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/protectedlobster.ru +8 -0
  1553. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/adapter/camping.rb +22 -0
  1554. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/abstract/handler.rb +28 -0
  1555. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/abstract/request.rb +37 -0
  1556. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/basic.rb +58 -0
  1557. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/md5.rb +124 -0
  1558. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/nonce.rb +51 -0
  1559. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/params.rb +55 -0
  1560. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/request.rb +40 -0
  1561. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/openid.rb +437 -0
  1562. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/builder.rb +56 -0
  1563. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/cascade.rb +36 -0
  1564. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/commonlogger.rb +61 -0
  1565. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/deflater.rb +63 -0
  1566. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/directory.rb +158 -0
  1567. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/file.rb +116 -0
  1568. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/cgi.rb +57 -0
  1569. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/evented_mongrel.rb +8 -0
  1570. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/fastcgi.rb +84 -0
  1571. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/lsws.rb +52 -0
  1572. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/mongrel.rb +78 -0
  1573. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/scgi.rb +57 -0
  1574. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/webrick.rb +57 -0
  1575. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler.rb +44 -0
  1576. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/lint.rb +401 -0
  1577. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/lobster.rb +65 -0
  1578. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/mock.rb +160 -0
  1579. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/recursive.rb +57 -0
  1580. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/reloader.rb +64 -0
  1581. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/request.rb +209 -0
  1582. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/response.rb +166 -0
  1583. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/abstract/id.rb +140 -0
  1584. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/cookie.rb +71 -0
  1585. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/memcache.rb +97 -0
  1586. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/pool.rb +73 -0
  1587. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/showexceptions.rb +344 -0
  1588. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/showstatus.rb +105 -0
  1589. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/static.rb +38 -0
  1590. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/urlmap.rb +48 -0
  1591. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/utils.rb +318 -0
  1592. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack.rb +81 -0
  1593. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/lighttpd.conf +20 -0
  1594. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test +9 -0
  1595. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test.fcgi +8 -0
  1596. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test.ru +7 -0
  1597. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_basic.rb +69 -0
  1598. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_digest.rb +169 -0
  1599. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_openid.rb +137 -0
  1600. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_builder.rb +50 -0
  1601. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_camping.rb +51 -0
  1602. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_cascade.rb +50 -0
  1603. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_cgi.rb +89 -0
  1604. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_commonlogger.rb +32 -0
  1605. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_deflater.rb +70 -0
  1606. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_directory.rb +56 -0
  1607. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_fastcgi.rb +89 -0
  1608. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_file.rb +50 -0
  1609. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_handler.rb +24 -0
  1610. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_lint.rb +303 -0
  1611. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_lobster.rb +45 -0
  1612. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_mock.rb +152 -0
  1613. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_mongrel.rb +170 -0
  1614. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_recursive.rb +77 -0
  1615. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_request.rb +401 -0
  1616. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_response.rb +167 -0
  1617. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_cookie.rb +49 -0
  1618. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_memcache.rb +132 -0
  1619. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_pool.rb +84 -0
  1620. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_showexceptions.rb +21 -0
  1621. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_showstatus.rb +72 -0
  1622. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_static.rb +37 -0
  1623. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_urlmap.rb +175 -0
  1624. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_utils.rb +174 -0
  1625. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_webrick.rb +106 -0
  1626. data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/testrequest.rb +45 -0
  1627. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/CHANGES +400 -0
  1628. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/MIT-LICENSE +21 -0
  1629. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/README +285 -0
  1630. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/Rakefile +418 -0
  1631. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/TODO +20 -0
  1632. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/bin/rake +31 -0
  1633. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/Rakefile1 +38 -0
  1634. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/Rakefile2 +35 -0
  1635. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/a.c +6 -0
  1636. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/b.c +6 -0
  1637. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/main.c +11 -0
  1638. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/glossary.rdoc +51 -0
  1639. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/jamis.rb +591 -0
  1640. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/proto_rake.rdoc +127 -0
  1641. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rake.1.gz +0 -0
  1642. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rakefile.rdoc +534 -0
  1643. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rational.rdoc +151 -0
  1644. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.4.14.rdoc +23 -0
  1645. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.4.15.rdoc +35 -0
  1646. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.0.rdoc +53 -0
  1647. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.3.rdoc +78 -0
  1648. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.4.rdoc +46 -0
  1649. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.6.0.rdoc +141 -0
  1650. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.0.rdoc +119 -0
  1651. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.1.rdoc +59 -0
  1652. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.2.rdoc +121 -0
  1653. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.3.rdoc +47 -0
  1654. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.0.rdoc +114 -0
  1655. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.2.rdoc +165 -0
  1656. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.3.rdoc +112 -0
  1657. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/install.rb +88 -0
  1658. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/classic_namespace.rb +8 -0
  1659. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/clean.rb +33 -0
  1660. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/compositepublisher.rb +24 -0
  1661. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/ftptools.rb +153 -0
  1662. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/publisher.rb +75 -0
  1663. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  1664. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/sshpublisher.rb +47 -0
  1665. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/sys.rb +209 -0
  1666. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/gempackagetask.rb +103 -0
  1667. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/loaders/makefile.rb +35 -0
  1668. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/packagetask.rb +185 -0
  1669. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/rake_test_loader.rb +5 -0
  1670. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/rdoctask.rb +147 -0
  1671. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/ruby182_test_unit_fix.rb +23 -0
  1672. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/runtest.rb +23 -0
  1673. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/tasklib.rb +23 -0
  1674. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/testtask.rb +161 -0
  1675. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/win32.rb +54 -0
  1676. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake.rb +2468 -0
  1677. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/capture_stdout.rb +26 -0
  1678. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/check_expansion.rb +5 -0
  1679. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/contrib/test_sys.rb +47 -0
  1680. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/chains/Rakefile +15 -0
  1681. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/default/Rakefile +19 -0
  1682. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/dryrun/Rakefile +22 -0
  1683. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/file_creation_task/Rakefile +33 -0
  1684. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/imports/Rakefile +19 -0
  1685. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/imports/deps.mf +1 -0
  1686. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/multidesc/Rakefile +17 -0
  1687. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/namespace/Rakefile +57 -0
  1688. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/rakelib/test1.rb +3 -0
  1689. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/rbext/rakefile.rb +3 -0
  1690. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/sample.mf +12 -0
  1691. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/statusreturn/Rakefile +8 -0
  1692. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/unittest/Rakefile +1 -0
  1693. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/filecreation.rb +32 -0
  1694. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/functional.rb +15 -0
  1695. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/in_environment.rb +30 -0
  1696. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/rake_test_setup.rb +10 -0
  1697. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/reqfile.rb +3 -0
  1698. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/reqfile2.rb +3 -0
  1699. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/session_functional.rb +337 -0
  1700. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/shellcommand.rb +3 -0
  1701. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_application.rb +694 -0
  1702. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_clean.rb +14 -0
  1703. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_definitions.rb +82 -0
  1704. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_earlytime.rb +35 -0
  1705. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_extension.rb +63 -0
  1706. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_file_creation_task.rb +62 -0
  1707. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_file_task.rb +139 -0
  1708. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_filelist.rb +618 -0
  1709. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_fileutils.rb +250 -0
  1710. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_ftp.rb +59 -0
  1711. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_invocation_chain.rb +75 -0
  1712. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_makefile_loader.rb +25 -0
  1713. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_multitask.rb +45 -0
  1714. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_namespace.rb +36 -0
  1715. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_package_task.rb +116 -0
  1716. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_pathmap.rb +209 -0
  1717. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_rake.rb +41 -0
  1718. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_require.rb +33 -0
  1719. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_rules.rb +347 -0
  1720. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_task_arguments.rb +89 -0
  1721. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_task_manager.rb +170 -0
  1722. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_tasklib.rb +12 -0
  1723. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_tasks.rb +371 -0
  1724. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_test_task.rb +75 -0
  1725. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_top_level_functions.rb +84 -0
  1726. data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_win32.rb +57 -0
  1727. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/History.txt +1198 -0
  1728. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/License.txt +22 -0
  1729. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/Manifest.txt +403 -0
  1730. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/README.txt +39 -0
  1731. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/Rakefile +89 -0
  1732. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/TODO.txt +10 -0
  1733. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/bin/autospec +4 -0
  1734. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/bin/spec +4 -0
  1735. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/autogenerated_docstrings_example.rb +19 -0
  1736. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/before_and_after_example.rb +40 -0
  1737. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/behave_as_example.rb +45 -0
  1738. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/custom_expectation_matchers.rb +54 -0
  1739. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/custom_formatter.rb +12 -0
  1740. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/dynamic_spec.rb +9 -0
  1741. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/file_accessor.rb +19 -0
  1742. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/file_accessor_spec.rb +38 -0
  1743. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/greeter_spec.rb +31 -0
  1744. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/helper_method_example.rb +14 -0
  1745. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/io_processor.rb +8 -0
  1746. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/io_processor_spec.rb +21 -0
  1747. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/legacy_spec.rb +11 -0
  1748. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/mocking_example.rb +27 -0
  1749. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
  1750. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/nested_classes_example.rb +36 -0
  1751. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/partial_mock_example.rb +29 -0
  1752. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/pending_example.rb +20 -0
  1753. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/predicate_example.rb +27 -0
  1754. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/priority.txt +1 -0
  1755. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/shared_example_group_example.rb +81 -0
  1756. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/shared_stack_examples.rb +38 -0
  1757. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/spec_helper.rb +3 -0
  1758. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack.rb +36 -0
  1759. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack_spec.rb +63 -0
  1760. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
  1761. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stubbing_example.rb +69 -0
  1762. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/yielding_example.rb +33 -0
  1763. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/adder.rb +13 -0
  1764. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/addition +34 -0
  1765. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/addition.rb +9 -0
  1766. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/calculator.rb +65 -0
  1767. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/README.txt +21 -0
  1768. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/everything.rb +6 -0
  1769. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
  1770. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
  1771. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
  1772. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
  1773. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
  1774. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
  1775. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
  1776. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
  1777. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
  1778. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +52 -0
  1779. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
  1780. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +26 -0
  1781. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
  1782. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
  1783. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
  1784. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life/game.rb +23 -0
  1785. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life/grid.rb +43 -0
  1786. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life.rb +3 -0
  1787. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/helper.rb +9 -0
  1788. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/steps/addition_steps.rb +18 -0
  1789. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/README.txt +7 -0
  1790. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/diffing_spec.rb +36 -0
  1791. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
  1792. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failure_in_setup.rb +10 -0
  1793. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failure_in_teardown.rb +10 -0
  1794. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_example.rb +40 -0
  1795. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_flexmock.rb +26 -0
  1796. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_mocha.rb +25 -0
  1797. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_rr.rb +27 -0
  1798. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/partial_mock_example.rb +20 -0
  1799. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/predicate_example.rb +29 -0
  1800. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/raising_example.rb +47 -0
  1801. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/spec_helper.rb +3 -0
  1802. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/syntax_error_example.rb +7 -0
  1803. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/team_spec.rb +44 -0
  1804. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/timeout_behaviour.rb +7 -0
  1805. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/init.rb +9 -0
  1806. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/autotest/discover.rb +3 -0
  1807. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/autotest/rspec.rb +46 -0
  1808. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine/mri.rb +8 -0
  1809. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine/rubinius.rb +8 -0
  1810. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine.rb +26 -0
  1811. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters.rb +1 -0
  1812. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/before_and_after_hooks.rb +93 -0
  1813. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/configuration.rb +167 -0
  1814. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/errors.rb +30 -0
  1815. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group.rb +25 -0
  1816. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb +81 -0
  1817. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb +368 -0
  1818. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_matcher.rb +44 -0
  1819. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_methods.rb +105 -0
  1820. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/module_reopening_fix.rb +21 -0
  1821. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/pending.rb +18 -0
  1822. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/shared_example_group.rb +52 -0
  1823. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example.rb +12 -0
  1824. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/differs/default.rb +66 -0
  1825. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/errors.rb +12 -0
  1826. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions/object.rb +63 -0
  1827. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
  1828. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions.rb +2 -0
  1829. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/handler.rb +52 -0
  1830. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations.rb +56 -0
  1831. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/class.rb +24 -0
  1832. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/main.rb +87 -0
  1833. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/metaclass.rb +7 -0
  1834. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/object.rb +6 -0
  1835. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions.rb +4 -0
  1836. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/autorunner.rb +6 -0
  1837. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testcase.rb +71 -0
  1838. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testresult.rb +6 -0
  1839. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  1840. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  1841. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test.rb +12 -0
  1842. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/be.rb +221 -0
  1843. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/be_close.rb +37 -0
  1844. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/change.rb +148 -0
  1845. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/eql.rb +43 -0
  1846. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/equal.rb +43 -0
  1847. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/exist.rb +22 -0
  1848. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/has.rb +34 -0
  1849. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/have.rb +150 -0
  1850. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/include.rb +77 -0
  1851. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/match.rb +41 -0
  1852. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/operator_matcher.rb +79 -0
  1853. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/raise_error.rb +132 -0
  1854. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/respond_to.rb +46 -0
  1855. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/satisfy.rb +47 -0
  1856. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/simple_matcher.rb +132 -0
  1857. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/throw_symbol.rb +74 -0
  1858. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers.rb +162 -0
  1859. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/argument_constraints.rb +165 -0
  1860. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/argument_expectation.rb +49 -0
  1861. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/error_generator.rb +84 -0
  1862. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/errors.rb +10 -0
  1863. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/extensions/object.rb +3 -0
  1864. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/extensions.rb +1 -0
  1865. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/framework.rb +15 -0
  1866. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/message_expectation.rb +331 -0
  1867. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/methods.rb +51 -0
  1868. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb +56 -0
  1869. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/order_group.rb +29 -0
  1870. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/proxy.rb +224 -0
  1871. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/space.rb +28 -0
  1872. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/spec_methods.rb +46 -0
  1873. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks.rb +200 -0
  1874. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/rake/spectask.rb +227 -0
  1875. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/rake/verify_rcov.rb +52 -0
  1876. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/backtrace_tweaker.rb +56 -0
  1877. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/class_and_arguments_parser.rb +16 -0
  1878. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/command_line.rb +17 -0
  1879. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/drb_command_line.rb +20 -0
  1880. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb +59 -0
  1881. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/base_formatter.rb +79 -0
  1882. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/base_text_formatter.rb +126 -0
  1883. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/failing_example_groups_formatter.rb +27 -0
  1884. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  1885. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/html_formatter.rb +337 -0
  1886. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
  1887. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/profile_formatter.rb +51 -0
  1888. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/progress_bar_formatter.rb +34 -0
  1889. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  1890. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
  1891. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/html_formatter.rb +174 -0
  1892. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/plain_text_formatter.rb +194 -0
  1893. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/progress_bar_formatter.rb +42 -0
  1894. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  1895. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/heckle_runner.rb +72 -0
  1896. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  1897. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/option_parser.rb +205 -0
  1898. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/options.rb +320 -0
  1899. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/reporter.rb +167 -0
  1900. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/spec_parser.rb +71 -0
  1901. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner.rb +213 -0
  1902. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/main.rb +86 -0
  1903. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/regexp.rb +9 -0
  1904. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/string.rb +9 -0
  1905. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions.rb +3 -0
  1906. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/given_scenario.rb +14 -0
  1907. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
  1908. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/scenario_collector.rb +18 -0
  1909. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/scenario_runner.rb +54 -0
  1910. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_mediator.rb +137 -0
  1911. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_parser.rb +247 -0
  1912. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_runner.rb +70 -0
  1913. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner.rb +59 -0
  1914. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/scenario.rb +14 -0
  1915. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step.rb +70 -0
  1916. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step_group.rb +89 -0
  1917. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step_mother.rb +38 -0
  1918. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/story.rb +39 -0
  1919. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/world.rb +128 -0
  1920. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story.rb +10 -0
  1921. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/version.rb +13 -0
  1922. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec.rb +32 -0
  1923. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/flexmock.rb +23 -0
  1924. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/mocha.rb +19 -0
  1925. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/rr.rb +21 -0
  1926. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/rspec.rb +20 -0
  1927. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/examples.rake +7 -0
  1928. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/examples_with_rcov.rake +9 -0
  1929. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/failing_examples_with_html.rake +9 -0
  1930. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/verify_rcov.rake +7 -0
  1931. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rspec.gemspec +22 -0
  1932. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/README.jruby +15 -0
  1933. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/autotest_helper.rb +6 -0
  1934. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/autotest_matchers.rb +47 -0
  1935. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/discover_spec.rb +19 -0
  1936. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/rspec_spec.rb +150 -0
  1937. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/rspec_suite.rb +6 -0
  1938. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/ruby_forker.rb +13 -0
  1939. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/adapters/ruby_engine_spec.rb +16 -0
  1940. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/configuration_spec.rb +296 -0
  1941. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_class_definition_spec.rb +48 -0
  1942. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_factory_spec.rb +165 -0
  1943. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_methods_spec.rb +584 -0
  1944. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_spec.rb +683 -0
  1945. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_matcher_spec.rb +96 -0
  1946. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_methods_spec.rb +169 -0
  1947. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_runner_spec.rb +194 -0
  1948. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/nested_example_group_spec.rb +71 -0
  1949. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/pending_module_spec.rb +145 -0
  1950. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/predicate_matcher_spec.rb +21 -0
  1951. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/shared_example_group_spec.rb +281 -0
  1952. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  1953. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/differs/default_spec.rb +127 -0
  1954. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/extensions/object_spec.rb +95 -0
  1955. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/fail_with_spec.rb +71 -0
  1956. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/extensions/main_spec.rb +71 -0
  1957. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  1958. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  1959. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  1960. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +13 -0
  1961. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  1962. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  1963. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  1964. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  1965. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/spec_spec.rb +52 -0
  1966. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
  1967. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/testcase_spec.rb +49 -0
  1968. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  1969. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/be_close_spec.rb +39 -0
  1970. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/be_spec.rb +248 -0
  1971. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/change_spec.rb +329 -0
  1972. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/description_generation_spec.rb +153 -0
  1973. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/eql_spec.rb +28 -0
  1974. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/equal_spec.rb +28 -0
  1975. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/exist_spec.rb +57 -0
  1976. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/handler_spec.rb +150 -0
  1977. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/has_spec.rb +63 -0
  1978. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/have_spec.rb +394 -0
  1979. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/include_spec.rb +64 -0
  1980. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/match_spec.rb +37 -0
  1981. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/matcher_methods_spec.rb +78 -0
  1982. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
  1983. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  1984. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/raise_error_spec.rb +315 -0
  1985. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/respond_to_spec.rb +54 -0
  1986. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/satisfy_spec.rb +36 -0
  1987. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  1988. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/throw_symbol_spec.rb +54 -0
  1989. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  1990. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  1991. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/at_least_spec.rb +97 -0
  1992. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/at_most_spec.rb +93 -0
  1993. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  1994. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
  1995. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_11545_spec.rb +33 -0
  1996. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  1997. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_496.rb +17 -0
  1998. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  1999. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  2000. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  2001. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  2002. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +95 -0
  2003. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/hash_including_matcher_spec.rb +53 -0
  2004. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_ordering_spec.rb +84 -0
  2005. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_space_spec.rb +54 -0
  2006. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_spec.rb +555 -0
  2007. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  2008. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/nil_expectation_warning_spec.rb +53 -0
  2009. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  2010. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/once_counts_spec.rb +53 -0
  2011. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/options_hash_spec.rb +35 -0
  2012. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/partial_mock_spec.rb +149 -0
  2013. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  2014. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +130 -0
  2015. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/precise_counts_spec.rb +52 -0
  2016. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/record_messages_spec.rb +26 -0
  2017. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/stub_spec.rb +188 -0
  2018. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/twice_counts_spec.rb +67 -0
  2019. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/package/bin_spec_spec.rb +22 -0
  2020. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  2021. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/command_line_spec.rb +141 -0
  2022. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/drb_command_line_spec.rb +97 -0
  2023. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/empty_file.txt +0 -0
  2024. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/examples.txt +2 -0
  2025. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/failed.txt +3 -0
  2026. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/base_formatter_spec.rb +112 -0
  2027. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  2028. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  2029. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
  2030. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
  2031. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
  2032. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
  2033. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.6.html +370 -0
  2034. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatter_spec.rb +61 -0
  2035. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/nested_text_formatter_spec.rb +318 -0
  2036. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
  2037. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +155 -0
  2038. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  2039. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +103 -0
  2040. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/specdoc_formatter_spec.rb +159 -0
  2041. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/html_formatter_spec.rb +135 -0
  2042. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +600 -0
  2043. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/progress_bar_formatter_spec.rb +82 -0
  2044. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
  2045. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +370 -0
  2046. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/heckle_runner_spec.rb +78 -0
  2047. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/heckler_spec.rb +13 -0
  2048. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
  2049. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/option_parser_spec.rb +421 -0
  2050. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/options_spec.rb +450 -0
  2051. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_fixture.rb +7 -0
  2052. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
  2053. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_spec.rb +16 -0
  2054. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +62 -0
  2055. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/reporter_spec.rb +238 -0
  2056. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_bar.rb +0 -0
  2057. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_foo.rb +0 -0
  2058. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_spec.rb +1 -0
  2059. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec.opts +2 -0
  2060. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_drb.opts +1 -0
  2061. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
  2062. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_parser_spec.rb +85 -0
  2063. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_spaced.opts +2 -0
  2064. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner_spec.rb +11 -0
  2065. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/spec_classes.rb +133 -0
  2066. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/builders.rb +46 -0
  2067. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/extensions/main_spec.rb +161 -0
  2068. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/extensions_spec.rb +14 -0
  2069. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/given_scenario_spec.rb +27 -0
  2070. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/plain_text_story_runner_spec.rb +90 -0
  2071. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
  2072. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/scenario_runner_spec.rb +214 -0
  2073. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_mediator_spec.rb +143 -0
  2074. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_parser_spec.rb +401 -0
  2075. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_runner_spec.rb +294 -0
  2076. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner_spec.rb +93 -0
  2077. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/scenario_spec.rb +18 -0
  2078. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_group_spec.rb +157 -0
  2079. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_mother_spec.rb +84 -0
  2080. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_spec.rb +272 -0
  2081. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/story_helper.rb +2 -0
  2082. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/story_spec.rb +84 -0
  2083. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/world_spec.rb +423 -0
  2084. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec.opts +6 -0
  2085. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec_helper.rb +77 -0
  2086. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/all.rb +5 -0
  2087. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/configuration/before_blocks.story +21 -0
  2088. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/configuration/stories.rb +7 -0
  2089. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/autogenerated_docstrings +45 -0
  2090. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/example_group_with_should_methods +17 -0
  2091. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/nested_groups +17 -0
  2092. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/output +25 -0
  2093. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/stories.rb +7 -0
  2094. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/helper.rb +6 -0
  2095. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/examples_and_tests_together +30 -0
  2096. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/stories.rb +7 -0
  2097. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/test_case_with_should_methods +17 -0
  2098. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/mock_framework_integration/stories.rb +7 -0
  2099. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/mock_framework_integration/use_flexmock.story +9 -0
  2100. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/pending_stories/README +3 -0
  2101. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/helpers/cmdline.rb +9 -0
  2102. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/helpers/story_helper.rb +16 -0
  2103. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/matchers/smart_match.rb +37 -0
  2104. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/before_blocks_example.rb +32 -0
  2105. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/example_group_with_should_methods.rb +12 -0
  2106. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/simple_spec.rb +8 -0
  2107. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/spec_with_flexmock.rb +18 -0
  2108. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/steps/running_rspec.rb +50 -0
  2109. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/stories/failing_story.rb +15 -0
  2110. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/test/spec_and_test_together.rb +57 -0
  2111. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/test/test_case_with_should_methods.rb +30 -0
  2112. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/multiline_steps.story +23 -0
  2113. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/steps/multiline_steps.rb +13 -0
  2114. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/stories.rb +6 -0
  2115. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/builder.js +136 -0
  2116. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/controls.js +972 -0
  2117. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/dragdrop.js +976 -0
  2118. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/effects.js +1117 -0
  2119. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/prototype.js +4140 -0
  2120. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/rspec.js +149 -0
  2121. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/scriptaculous.js +58 -0
  2122. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/slider.js +276 -0
  2123. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/sound.js +55 -0
  2124. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/unittest.js +568 -0
  2125. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/lib/server.rb +24 -0
  2126. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stories.html +176 -0
  2127. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stylesheets/rspec.css +136 -0
  2128. data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stylesheets/test.css +90 -0
  2129. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/CHANGELOG.rdoc +52 -0
  2130. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/LICENSE +20 -0
  2131. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/README.markdown +76 -0
  2132. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/Rakefile +6 -0
  2133. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/bin/rake2thor +83 -0
  2134. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/bin/thor +7 -0
  2135. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/error.rb +3 -0
  2136. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/options.rb +242 -0
  2137. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/ordered_hash.rb +64 -0
  2138. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/runner.rb +286 -0
  2139. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/task.rb +84 -0
  2140. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/task_hash.rb +22 -0
  2141. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/tasks/package.rb +18 -0
  2142. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/tasks.rb +77 -0
  2143. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/util.rb +57 -0
  2144. data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor.rb +146 -0
  2145. data/spec10/public/webrat/test_app/gems/specifications/abstract-1.0.0.gemspec +29 -0
  2146. data/spec10/public/webrat/test_app/gems/specifications/cgi_multipart_eof_fix-2.5.0.gemspec +31 -0
  2147. data/spec10/public/webrat/test_app/gems/specifications/daemons-1.0.10.gemspec +31 -0
  2148. data/spec10/public/webrat/test_app/gems/specifications/erubis-2.6.2.gemspec +34 -0
  2149. data/spec10/public/webrat/test_app/gems/specifications/extlib-0.9.8.gemspec +28 -0
  2150. data/spec10/public/webrat/test_app/gems/specifications/fastthread-1.0.1.gemspec +32 -0
  2151. data/spec10/public/webrat/test_app/gems/specifications/gem_plugin-0.2.3.gemspec +33 -0
  2152. data/spec10/public/webrat/test_app/gems/specifications/json_pure-1.1.3.gemspec +33 -0
  2153. data/spec10/public/webrat/test_app/gems/specifications/merb-core-0.9.14.gemspec +57 -0
  2154. data/spec10/public/webrat/test_app/gems/specifications/merb-helpers-0.9.14.gemspec +33 -0
  2155. data/spec10/public/webrat/test_app/gems/specifications/mime-types-1.15.gemspec +34 -0
  2156. data/spec10/public/webrat/test_app/gems/specifications/mongrel-1.1.5.gemspec +49 -0
  2157. data/spec10/public/webrat/test_app/gems/specifications/rack-0.4.0.gemspec +33 -0
  2158. data/spec10/public/webrat/test_app/gems/specifications/rake-0.8.3.gemspec +33 -0
  2159. data/spec10/public/webrat/test_app/gems/specifications/rspec-1.1.11.gemspec +35 -0
  2160. data/spec10/public/webrat/test_app/gems/specifications/thor-0.9.8.gemspec +31 -0
  2161. data/spec10/public/webrat/test_app/merb/merb-auth/setup.rb +44 -0
  2162. data/spec10/public/webrat/test_app/merb/merb-auth/strategies.rb +11 -0
  2163. data/spec10/public/webrat/test_app/merb/session/session.rb +9 -0
  2164. data/spec10/public/webrat/test_app/public/favicon.ico +0 -0
  2165. data/spec10/public/webrat/test_app/public/images/merb.jpg +0 -0
  2166. data/spec10/public/webrat/test_app/public/javascripts/application.js +1 -0
  2167. data/spec10/public/webrat/test_app/public/javascripts/jquery.js +32 -0
  2168. data/spec10/public/webrat/test_app/public/merb.fcgi +22 -0
  2169. data/spec10/public/webrat/test_app/public/robots.txt +5 -0
  2170. data/spec10/public/webrat/test_app/public/stylesheets/master.css +119 -0
  2171. data/spec10/public/webrat/test_app/tasks/doc.thor +149 -0
  2172. data/spec10/public/webrat/test_app/tasks/merb.thor +2012 -0
  2173. data/spec10/public/webrat/webrat_spec.rb +75 -0
  2174. data/spec10/spec_helper.rb +134 -0
  2175. metadata +2172 -41
  2176. data/lib/merb-core/core_ext/json_pure_fix.rb +0 -14
@@ -0,0 +1,1198 @@
1
+ === Version 1.1.11 / 2008-10-24
2
+
3
+ * 1 major enhancement
4
+
5
+ * eliminate ALL gem dependencies (as they were causing trouble for people on different platforms/environments)
6
+
7
+ === Version 1.1.10 / 2008-10-24
8
+
9
+ * 1 minor enhancement
10
+
11
+ * hash.should include(:key => 'value') #when you don't care about the whole hash
12
+
13
+ * 2 bug fixes
14
+
15
+ * fix --help output (had inaccurate info about 'nested' formatter)
16
+ * eliminate spicycode-rcov dev dependency for rubygems < 1.3
17
+
18
+ === Version 1.1.9 / 2008-10-20
19
+
20
+ WARNING: This release removes implicit inclusion of modules in example groups.
21
+ This means that if you have 'describe MyModule do', MyModule will not be
22
+ included in the group.
23
+
24
+ * 2 major enhancements
25
+
26
+ * Add extend to configuration (thanks to advice from Chad Fowler)
27
+ * Modules are no longer implicitly included in example groups
28
+
29
+ * 4 minor enhancements
30
+
31
+ * mingw indicates windows too (thanks to Luis Lavena for the tip)
32
+ * improved output for partial mock expecation failures
33
+ * it_should_behave_like now accepts n names of shared groups
34
+ * eliminated redundant inclusion/extension of ExampleGroupMethods
35
+
36
+ * 6 bug fixes
37
+
38
+ * spec command with no arguments prints help
39
+ * fixed typo in help. Fixes #73.
40
+ * fixed bug where should_receive..and_yield after similar stub added the args_to_yield to the stub's original args_to_yield (Pat Maddox)
41
+ * fixed bug where rspec-autotest (autospec) was loading non-spec files in spec directory. Fixes #559.
42
+ * fixed bug where should_not_receive was reporting twice
43
+ * fixed bug where rspec tries to run examples just because it is required (even if there are no examples loaded). Fixes #575.
44
+
45
+ === Version 1.1.8 / 2008-10-03
46
+
47
+ * 2 bug fixes
48
+
49
+ * restore colorized output in linux and windows w/ autotest (Tim Pope). Fixes #413.
50
+ * autospec no longer hangs on windows. Fixes #554.
51
+
52
+ === Version 1.1.7 / 2008-10-02
53
+
54
+ * no changes since 1.1.6, but releasing rspec-1.1.7 to align versions with rspec-rails-1.1.7
55
+
56
+ === Version 1.1.6 / 2008-10-02
57
+
58
+ * 2 bug fixes
59
+
60
+ * fixed bug where negative message expectations following stubs resulted in false (negative) positives (Mathias Meyer). Closes #548.
61
+ * fixed bug where Not Yet Implemented examples report incorrect caller (Scott Taylor). Closes #547.
62
+
63
+ * 1 minor enhancement
64
+
65
+ * removed deprecated mock argument constraint symbols
66
+
67
+ === Version 1.1.5 / 2008-09-28
68
+
69
+ IMPORTANT: use the new 'autospec' command instead of 'autotest'. We changed
70
+ the way autotest discovers rspec so the autotest executable won't
71
+ automatically load rspec anymore. This allows rspec to live side by side other
72
+ spec frameworks without always co-opting autotest through autotest's discovery
73
+ mechanism.
74
+
75
+ ALSO IMPORTANT: $rspec_options is gone. If you were using this for anything
76
+ (like your own runners), use Spec::Runner.options instead.
77
+
78
+ ADDITIONALLY IMPORTANT: If you have any custom formatters, you'll need to
79
+ modify #example_pending to accept three arguments instead of just two. See the
80
+ rdoc for Spec::Runner::Formatter::BaseFormatter#example_pending for more
81
+ information.
82
+
83
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
84
+ * Added additional characters to be escaped in step strings (patch from Jake Cahoon). Closes #417.
85
+ * Disable color codes on STDOUT when STDOUT.tty? is false (patch from Tim Pope). Closes #413.
86
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser). Closes #230.
87
+ * a step definition with no block is treated as pending
88
+ * make sure consolidate_failures only grabs _spec files. Closes #369
89
+ * Simplifying ExampleGroupMethods#registration_backtrace. (From Wilson Bilkovich - http://metaclass.org/2008/6/7/calling-in-the-dark)
90
+ * Use 127.0.0.1 instead of localhost for drb (thanks Ola Bini)
91
+ * html story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #300
92
+ * plain text story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #439
93
+ * quiet deprecation warning on inflector - patch from RSL. Closes #430
94
+ * added autospec executable
95
+ * added configurable messages to simple_matcher
96
+ * should and should_not return true on success
97
+ * use hoe for build/release
98
+ * bye, bye translator
99
+ * autotest/rspec uses ruby command instead of spec command (no need for spec command unless loading directories)
100
+ * Avoid 'invalid option -O' in autotest (patch from Jonathan del Strother). Closes #486.
101
+ * Fix: Unimplemented step with new line throws error (patch from Ben Mabey). Closes #494.
102
+ * Only use color codes on tty; override for autospec (patch from Tim Pope). Closes #413.
103
+ * Warn when setting mock expectations on nil (patch from Ben Mabey). Closes #521.
104
+ * Support argument constraints as values in the hash_including contstraint. Thanks to Pirkka Hartikainen for failing code examples and the fix. Buttons up #501.
105
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser)
106
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
107
+ * Add 2nd arg to respond_to? to align w/ core Ruby rdoc: http://www.ruby-doc.org/core/classes/Object.html#M000604
108
+ * quiet backtrace tweaker filters individual lines out of multiline (ala Rails) error messages (Pat Maddox)
109
+ * added ability to stub multiple methods in one stub! call (Pat Maddox)
110
+ * story progress bar formatter and more colourful summaries from the plain text story formatter (Joseph Wilk)
111
+ * Avoid ruby invocation errors when autotesting (Jonathan del Strother)
112
+ * added mock('foo').as_null_object
113
+ * add file and line number to pending_example for formatters (Scott Taylor)
114
+ * return last stubbed value for mock expectation with no explicit return (Pat Maddox)
115
+ * Fixed bug when should_receive(:foo).any_number_of_times is called after similar stub (Pat Maddox)
116
+ * Warning messages now issued when expectations are set on nil (Ben Mabey)
117
+
118
+ === Version 1.1.4
119
+
120
+ Maintenance release.
121
+
122
+ Note: we've removed the metaclass method from Object. There were some
123
+ generated specs that used it, and they will now break. Just replace the
124
+ metaclass call with (class << self; self; end) and all will be well.
125
+
126
+ * added hash_including mock argument matcher. Closes #332 (patch from Rick DeNatale)
127
+ * pending steps print out yellow in stories (patch from Kyle Hargraves)
128
+ * Deprecation warnings for specs that assume auto-inclusion of modules. Closes #326 (patch from Scott Taylor)
129
+ * mock.should_not_receive(:anything) fails fast (once again)
130
+ * Patch from Antti Tarvainen to stop files from being loaded repeatedly when running heckle. Closes #333.
131
+ * Fixed bug in which session object in example was not the same instance used in the controller. Closes #331.
132
+ * Applied patch from Antti Tarvainen to fix bug where heckle runs rspec runs heckle runs rspec etc. Closes #280.
133
+ * Applied patch from Zach Dennis to merge :steps functionality to :steps_for. Closes #324.
134
+ * Applied patch from Ryan Davis to add eval of block passed to raise_error matcher. Closes #321.
135
+ * alias :context :describe in example_group_methods. Closes #312.
136
+ * Applied patch from Ben Mabey to make the Story runner exit with a non-0 exit code on failing stories. Closes #228.
137
+ * Applied patch from Coda Hale to get the :red hook called in autotest. Closes #279.
138
+ * Applied patch from Patrick Ritchie to support --drb in spec.opts. Closes #274, #293.
139
+ * Moved metaclass method from Object to an internal module which gets included where it is needed.
140
+ * Applied patch from Dayo Esho: and_yield clobbers return value from block. Closes #217.
141
+ * Applied patch from Bob Cotton: ExampleGroupFactory.default resets previously registered types. Closes #222.
142
+ * Applied patch from Mike Williams to support the lib directory in rails apps with the Textmate Alternate File command. Closes #276.
143
+ * ExampleGroupMethods#xspecify aliases #xit
144
+ * A SharedExampleGroup can be created within another ExampleGroup.
145
+ * Applied patch from Bob Cotton: Nested ExampleGroups do not have a spec_path. Closes #224.
146
+ * Add before_suite and after_suite callbacks to ExampleGroupMethods and Options. Closes #210.
147
+ * The after(:suite) callback lambda is passed a boolean representing whether the suite passed or failed
148
+ * Added NestedTextFormatter. Closes #366.
149
+ * decoupled mock framework from global extensions used by rspec - supports use of flexmock or mocha w/ rails
150
+ * Applied patch from Roman Chernyatchik to allow the user to pass in the ruby version into spectask. Closes #325, #370
151
+
152
+ === Version 1.1.3
153
+
154
+ Maintenance release.
155
+ Notice to autotest users: you must also upgrade to ZenTest-3.9.0.
156
+
157
+ * Tightened up exceptions list in autotest/rails_spec. Closes #264.
158
+ * Applied patch from Ryan Davis for ZenTest-3.9.0 compatibility
159
+ * Applied patch from Kero to add step_upcoming to story listeners. Closes #253.
160
+ * Fixed bug where the wrong named error was not always caught by "should raise_error"
161
+ * Applied patch from Luis Lavena: No coloured output on Windows due missing RUBYOPT. Closes #244.
162
+ * Applied patch from Craig Demyanovich to add support for "should_not render_template" to rspec_on_rails. Closes #241.
163
+ * Added --pattern (-p for short) option to control what files get loaded. Defaults to '**/*_spec.rb'
164
+ * Exit with non-0 exit code if examples *or tests* (in test/unit interop mode) fail. Closes #203.
165
+ * Moved at_exit hook to a method in Spec::Runner which only runs if specs get loaded. Closes #242.
166
+ * Applied patch from kakutani ensuring that base_view_path gets cleared after each view example. Closes #235.
167
+ * More tweaks to regexp step names
168
+ * Fixed focused specs in nested ExampleGroups. Closes #225.
169
+
170
+ === Version 1.1.2
171
+
172
+ Minor bug fixes/enhancements.
173
+ Notice to autotest users: you must also upgrade to ZenTest-3.8.0.
174
+
175
+ * RSpec's Autotest subclasses compatible with ZenTest-3.8.0 (thanks to Ryan Davis for making it easier on Autotest subs).
176
+ * Applied patch from idl to add spec/lib to rake stats. Closes #226.
177
+ * calling setup_fixtures and teardown_fixtures for Rails >= r8570. Closes #219.
178
+ * Applied patch from Josh Knowles using ActiveSupport's Inflector (when available) to make 'should have' read a bit better. Closes #197.
179
+ * Fixed regression in 1.1 that caused failing examples to fail to generate their own names. Closes #209.
180
+ * Applied doc patch from Jens Krämer for capturing content_for
181
+ * Applied patch from Alexander Lang to clean up story steps after each story. Closes #198.
182
+ * Applied patch from Josh Knowles to support 'string_or_response.should have_text(...)'. Closes #193.
183
+ * Applied patch from Ian Dees to quiet the Story Runner backtrace. Closes #183.
184
+ * Complete support for defining steps with regexp 'names'.
185
+
186
+ === Version 1.1.1
187
+
188
+ Bug fix release.
189
+
190
+ * Fix regression in 1.1.0 that caused transactions to not get rolled back between examples.
191
+ * Applied patch from Bob Cotton to reintroduce ExampleGroup.description_options. Closes LH[#186]
192
+
193
+ === Version 1.1.0
194
+
195
+ The "tell me a story and go nest yourself" release.
196
+
197
+ * Applied patch from Mike Vincent to handle generators rails > 2.0.1. Closes LH[#181]
198
+ * Formatter.pending signature changed so it gets passed an ExampleGroup instance instead of the name ( LH[#180])
199
+ * Fixed LH[#180] Spec::Rails::Example::ModelExampleGroup and friends show up in rspec/rails output
200
+ * Spec::Rails no longer loads ActiveRecord extensions if it's disabled in config/boot.rb
201
+ * Applied LH[#178] small annoyances running specs with warnings enabled (Patch from Mikko Lehtonen)
202
+ * Tighter integration with Rails fixtures. Take advantage of fixture caching to get performance improvements (Thanks to Pat Maddox, Nick Kallen, Jonathan Barnes, and Curtis)
203
+
204
+ === Version 1.1.0-RC1
205
+
206
+ Textmate Bundle users - this release adds a new RSpec bundle that highlights describe, it, before and after and
207
+ provides navigation to descriptions and examples (rather than classes and methods). When you first install this,
208
+ it is going to try to hijack all of your .rb files. All you need to do is open a .rb file that does not end with
209
+ 'spec.rb' and change the bundle selection from RSpec to Ruby. TextMate will do the right thing from then on.
210
+
211
+ Shortcuts for tab-activated snippets all follow the TextMate convention of 2 or 3 letters of the first word, followed by the first letter of each subsequent word. So "should have_at_least" would be triggered by shhal.
212
+
213
+ We reduced the scope for running spec directories, files, a single file or individual spec in TextMate to source.ruby.rspec. This allowed us to restore the standard Ruby shortcuts:
214
+
215
+ CMD-R runs all the specs in one file
216
+ CMD-SHIFT-R runs an individual spec
217
+ CMD-OPT-R runs any files or directories selected in the TextMate drawer
218
+
219
+ rspec_on_rails users - don't forget to run script/generate rspec
220
+
221
+ * Added shared_examples_for method, which you can (should) use instead of describe Foo, :shared => true
222
+ * Applied LH[#168] Fix describe Object, "description contains a # in it" (Patch from Martin Emde)
223
+ * Applied LH[#15] Reverse loading of ActionView::Base helper modules (Patch from Mark Van Holstyn)
224
+ * Applied LH[#149] Update contribute page to point towards lighthouse (Patch from Josh Knowles)
225
+ * Applied LH[#142] verify_rcov fails with latest rcov (Patch from Kyle Hargraves)
226
+ * Applied LH[#10] Allow stubs to yield and return values (Patch from Pat Maddox)
227
+ * Fixed LH[#139] version.rb in trunk missing svn last changed number
228
+ * Applied LH[#14] Adding support for by_at_least/by_at_most in Change matcher (Patch from Saimon Moore)
229
+ * Applied LH[#12] Fix for TM when switching to alternate file (Patch from Trevor Squires)
230
+ * Applied LH[#133] ExampleMatcher should match against before(:all) (Patch from Bob Cotton)
231
+ * Applied LH[#134] Only load spec inside spec_helper.rb (Patch from Mark Van Holstyn)
232
+ * RSpec now bails immediately if there are examples with identical names.
233
+ * Applied LH[#132] Plain Text stories should support Given and Given: (Patch from Jarkko Laine)
234
+ * Applied patch from Pat Maddox: Story Mediator - the glue that binds the plain text story parser with the rest of the system
235
+ * Applied LH[#16] Have SimpleMatchers expose their description for specdocs (Patch from Bryan Helmkamp)
236
+ * Stories now support --colour
237
+ * Changed the DSL modules to Example (i.e. Spec::Example instead of Spec::DSL)
238
+ * Applied [#15608] Story problem if parenthesis used in Given, When, Then or And (Patch from Sinclair Bain)
239
+ * Applied [#15659] GivenScenario fails when it is a RailsStory (Patch from Nathan Sutton)
240
+ * Fixed [#15639] rcov exclusion configuration. (Spec::Rails projects can configure rcov with spec/rcov.opts)
241
+ * The rdoc formatter (--format rdoc) is gone. It was buggy and noone was using it.
242
+ * Changed Spec::DSL::Behaviour to Spec::DSL::ExampleGroup
243
+ * Changed Spec::DSL::SharedBehaviour to Spec::DSL::SharedExampleGroup
244
+ * Applied [#14023] Small optimization for heavily proxied objects. (Patch from Ian Leitch)
245
+ * Applied [#13943] ProfileFormatter (Top 10 slowest examples) (Patch from Ian Leitch)
246
+ * Fixed [#15232] heckle is not working correctly in trunk (as of r2801)
247
+ * Applied [#14399] Show pending reasons in HTML report (Patch from Bryan Helmkamp)
248
+ * Discovered fixed: [#10263] mock "leak" when setting an expectation in a block passed to mock#should_receive
249
+ * Fixed [#14671] Spec::DSL::ExampleRunner gives "NO NAME because of --dry-run" for every example for 'rake spec:doc'
250
+ * Fixed [#14543] rspec_scaffold broken with Rails 2.0
251
+ * Removed Patch [#10577] Rails with Oracle breaks 0.9.2 - was no longer necessary since we moved describe to the Main object (instead of Object)
252
+ * Fixed [#14527] specs run twice on rails 1.2.4 and rspec/rspec_on_rails trunk
253
+ * Applied [#14043] Change output ordering to show pending before errors (Patch from Mike Mangino)
254
+ * Applied [#14095] Don't have ./script/generate rspec create previous_failures.txt (Patch from Bryan Helmkamp)
255
+ * Applied [#14254] Improved error handling for Object#should and Object#should_not (Patch from Antti Tarvainen)
256
+ * Applied [#14186] Remove dead code from message_expecation.rb (Patch from Antti Tarvainen)
257
+ * Applied [#14183] Tiny improvement on mock_spec.rb (Patch from Antti Tarvainen)
258
+ * Applied [#14208] Fix to Mock#method_missing raising NameErrors instead of MockExpectationErrors (Patch from Antti Tarvainen)
259
+ * Applied [#14255] Fixed examples in mock_spec.rb and shared_behaviour_spec.rb (Patch from Antti Tarvainen)
260
+ * Applied [#14362] partially mocking objects that define == can blow up (Patch from Pat Maddox)
261
+ * test_ methods with an arity of 0 defined in a describe block or Example object will be run as an Example, providing a seamless transition from Test::Unit
262
+ * Removed BehaviourRunner
263
+ * Fixed [#13969] Spec Failures on Trunk w/ Autotest
264
+ * Applied [#14156] False positives with should_not (Patch from Antti Tarvainen)
265
+ * Applied [#14170] route_for and params_from internal specs fixed (Patch from Antti Tarvainen)
266
+ * Fixed [#14166] Cannot build trunk
267
+ * Applied [#14142] Fix for bug #11602: Nested #have_tag specifications fails on the wrong line number (Patch from Antti Tarvainen)
268
+ * Removed warn_if_no_files argument and feature
269
+ * Steps (Given/When/Then) with no blocks are treated as pending
270
+ * Applied [#13913] Scenario should treat no code block as pending (Patch from Evan Light)
271
+ * Fixed [#13370] Weird mock expectation error (Patch from Mike Mangino)
272
+ * Applied [#13952] Fix for performance regression introduced in r2096 (Patch from Ian Leitch)
273
+ * Applied [#13881] Dynamically include Helpers that are included on ActionView::Base (Patch from Brandon Keepers)
274
+ * Applied [#13833] ActionView::Helpers::JavaScriptMacrosHelper removed after 1.2.3 (Patch from Yurii Rashkovskii)
275
+ * Applied [#13814] RSpec on Rails w/ fixture-scenarios (Patch from Shintaro Kakutani)
276
+ * Add ability to define Example subclass instead of using describe
277
+ * Applied Patch from James Edward Gray II to improve syntax highlighting in TextMate
278
+ * Fixed [#13579] NoMethodError not raised for missing helper methods
279
+ * Fixed [#13713] form helper method 'select' can not be called when calling custom helper methods from specs
280
+ * Example subclasses Test::Unit::TestCase
281
+ * Added stub_everything method to create a stub that will return itself for any message it doesn't understand
282
+ * Added stories directory with stories/all.rb and stories/helper.rb when you script/generate rspec
283
+ * Applied [#13554] Add "And" so you can say Given... And... When... Then... And...
284
+ * Applied [#11254] RSpec syntax coloring and function pop-up integration in TextMate (Patch from Wincent Colaiuta)
285
+ * Applied [#13143] ActionView::Helpers::RecordIdentificationHelper should be included if present (Patch from Jay Levitt)
286
+ * Applied [#13567] patch to allow stubs to yield consecutive values (Patch from Rupert Voelcker)
287
+ * Applied [#13559] reverse version of route_for (Patch from Rupert Voelcker)
288
+ * Added [#13532] /lib specs should get base EvalContext
289
+ * Applied [#13451] Add a null_object option to mock_model (Patch from James Deville)
290
+ * Applied [#11919] Making non-implemented specs easy in textmate (Patch from Scott Taylor)
291
+ * Applied [#13274] ThrowSymbol recognized a NameError triggered by Kernel#method_missing as a thrown Symbol
292
+ * Applied [#12722] the alternate file command does not work in rails views due to scope (Patch from Carl Porth)
293
+ * Behaviour is now a Module that is used by Example class methods and SharedBehaviour
294
+ * Added ExampleDefinition
295
+ * Added story runner framework based on rbehave [#12628]
296
+ * Applied [#13336] Helper directory incorrect for rake stats in statsetup task (Patch from Curtis Miller)
297
+ * Applied [#13339] Add the ability for spec_parser to parse describes with :behaviour_type set (Patch from Will Leinweber and Dav Yaginuma)
298
+ * Fixed [#13271] incorrect behaviour with expect_render and stub_render
299
+ * Applied [#13129] Fix failing specs in spec_distributed (Patch from Bob Cotton)
300
+ * Applied [#13118] Rinda support for Spec::Distributed (Patch from Bob Cotton)
301
+ * Removed BehaviourEval
302
+ * Removed Behaviour#inherit
303
+ * Moved implementation of install_dependencies to example_rails_app
304
+ * Renamed RSPEC_DEPS to VENDOR_DEPS
305
+ * Added Example#not_implemented?
306
+ * You can now stub!(:msg).with(specific args)
307
+ * describe("A", Hash, "with one element") will generate description "A Hash with one element" (Tip from Ola Bini)
308
+ * Applied [#13016] [DOC] Point out that view specs render, well, a view (Patch from Jay Levitt)
309
+ * Applied [#13078] Develop rspec with autotest (Patch from Scott Taylor)
310
+ * Fixed [#13065] Named routes throw a NoMethodError in Helper specs (Patches from James Deville and Mike Mangino)
311
+ * Added (back) the verbose attribute in Spec::Rake::SpecTask
312
+ * Changed documentation to point at the new http svn URL, which is more accessible.
313
+
314
+ === Version 1.0.8
315
+
316
+ Another bugfix release - this time to resolve the version mismatch
317
+
318
+ === Version 1.0.7
319
+
320
+ Quick bugfix release to ensure that you don't have to have the rspec gem installed
321
+ in order to use autotest with rspec_on_rails.
322
+
323
+ * Fixed [#13015] autotest gives failure in 'spec_command' after upgrade 1.0.5 to 1.0.6
324
+
325
+ === Version 1.0.6
326
+
327
+ The "holy cow, batman, it's been a long time since we released and there are a ton of bug
328
+ fixes, patches and even new features" release.
329
+
330
+ Warning: Spec::Rails users: In fixing 11508, we've removed the raise_controller_errors method. As long as you
331
+ follow the upgrade instructions and run 'script/generate rspec' you'll be fine, but if you skip this
332
+ step you need to manually go into spec_helper.rb and remove the call to that method (if present - it
333
+ might not be if you haven't upgraded in a while).
334
+
335
+ Warning: Implementors of custom formatters. Formatters will now be sent an Example object instead of just a
336
+ String for #example_started, #example_passed and #example_failed. In certain scenarios
337
+ (Spec::Ui with Spec::Distributed), the formatter must ask the Example for its sequence number instead of
338
+ keeping track of a sequence number internal to the formatter. Most of you shouldn't need to upgrade
339
+ your formatters though - the Example#to_s method returns the example name/description, so you should be
340
+ able to use the passed Example instance as if it were a String.
341
+
342
+ * Applied [#12986] Autotest Specs + Refactoring (Patch from Scott Tayler)
343
+ * Added a #close method to formatters, which allows them to gracefully close streams.
344
+ * Applied [#12935] Remove requirement that mocha must be installed as a gem when used as mocking framework. (Patch from Ryan Kinderman).
345
+ * Fixed [#12893] RSpec's Autotest should work with rspec's trunk
346
+ * Fixed [#12865] Partial mock error when object has an @options instance var
347
+ * Applied [#12701] Allow checking of content captured with content_for in view specs (Patch from Jens Kr�mer)
348
+ * Applied [#12817] Cannot include same shared behaviour when required with absolute paths (Patch from Ian Leitch)
349
+ * Applied [#12719] rspec_on_rails should not include pagination helper (Patch from Matthijs Langenberg)
350
+ * Fixed [#12714] helper spec not finding rails core helpers
351
+ * Applied [#12611] should_not redirect_to implementation (Patch from Yurii Rashkovskii)
352
+ * Applied [#12682] Not correctly aliasing original 'stub!' and 'should_receive' methods for ApplicationController (Patch from Matthijs Langenberg)
353
+ * Disabled controller.should_receive(:render) and controller.stub!(:render). Use expect_render or stub_render instead.
354
+ * Applied [#12484] Allow a Behaviour's Description to flow through to the Formatter (Patch from Bob Cotton)
355
+ * Fixed [#12448] The spec:plugins rake task from rspec_on_rails should ignore specs from the rspec_on_rails plugin
356
+ * Applied [#12300] rr integration (patch from Kyle Hargraves)
357
+ * Implemented [#12284] mock_with :rr (integration with RR mock framework: http://rubyforge.org/projects/pivotalrb/)
358
+ * Applied [#12237] (tiny) added full path to mate in switch_command (Patch from Carl Porth)
359
+ * Formatters will now be sent an Example object instead of just a String for certain methods
360
+ * All Spec::Rake::SpecTask attributes can now be procs, which allows for lazy evaluation.
361
+ * Changed the Spec::Ui interfaces slightly. See examples.
362
+ * Applied [#12174] mishandling of paths with spaces in spec_mate switch_command (Patch from Carl Porth)
363
+ * Implemented [#8315] File "Go to..." functionality
364
+ * Applied [#11917] Cleaner Spec::Ui error for failed Selenium connection (Patch from Ian Dees)
365
+ * Applied [#11888] rspec_on_rails spews out warnings when assert_select is used with an XML response (Patch from Ian Leitch)
366
+ * Applied [#12010] Nicer failure message formatting (Patch from Wincent Colaiuta)
367
+ * Applied [#12156] smooth open mate patch (Patch from Ienaga Eiji)
368
+ * Applied [#10577] Rails with Oracle breaks 0.9.2. (Patch from Sinclair Bain)
369
+ * Fixed [#12079] auto-generated example name incomplete: should have 1 error on ....]
370
+ * Applied [#12066] Docfix for mocks/mocks.page (Patch from Kyle Hargraves)
371
+ * Fixed [#11891] script/generate rspec_controller fails to create appropriate views (from templates) on edge rails
372
+ * Applied [#11921] Adds the correct controller_name from derived_controller_name() to the ViewExampleGroupController (Patch from Eloy Duran)
373
+ * Fixed [#11903] config.include with behaviour_type 'hash' does not work
374
+ * Examples without blocks and pending is now reported with a P instead of a *
375
+ * Pending blocks that now pass are rendered blue
376
+ * New behaviour for after: If an after block raises an error, the other ones will still run instead of bailing at the first.
377
+ * Made it possible to run spec from RSpec.tmbundle with --drb against a Rails spec_server.
378
+ * Applied [#11868] Add ability for pending to optionally hold a failing block and to fail when it passes (Patch from Bob Cotton)
379
+ * Fixed [#11843] watir_behaviour missing from spec_ui gem
380
+ * Added 'switch between source and spec file' command in Spec::Mate (based on code from Ruy Asan)
381
+ * Applied [#11509] Documentation - RSpec requires hpricot
382
+ * Applied [#11807] Daemonize spec_server and rake tasks to manage them. (patch from Kyosuke MOROHASHI)
383
+ * Added pending(message) method
384
+ * Fixed [#11777] should render_template doesn't check paths correctly
385
+ * Fixed [#11749] Use of 'rescue => e' does not catch all exceptions
386
+ * Fixed [#11793] should raise_error('with a message') does not work correctly
387
+ * Fixed [#11774] Mocks should respond to :kind_of? in the same way they respond to :is_a?
388
+ * Fixed [#11508] Exceptions are not raised for Controller Specs (removed experimental raise_controller_errors)
389
+ * Applied [#11615] Partial mock methods give ambiguous failures when given a method name as a String (Patch from Jay Phillips)
390
+ * Fixed [#11545] Rspec doesn't handle should_receive on ActiveRecord associations (Patch from Ian White)
391
+ * Fixed [#11514] configuration.use_transactional_fixtures is ALWAYS true, regardless of assignment
392
+ * Improved generated RESTful controller examples to cover both successful and unsuccessful POST and PUT
393
+ * Changed TextMate snippets for controllers to pass controller class names to #describe rather than controller_name.
394
+ * Changed TextMate snippets for mocks to use no_args() and any_args() instead of the deprecated Symbols.
395
+ * Applied [#11500] Documentation: no rails integration specs in 1.0
396
+ * Renamed SpecMate's shortcuts for running all examples and focused examples to avoid conflicts (CMD-d and CMD-i)
397
+ * Added a TextMate snippet for custom matchers, lifted from Geoffrey Grosenbach's RSpec peepcode show.
398
+ * The translator translates mock constraints to the new matchers that were introduced in 1.0.4
399
+ * Documented environment variables for Spec::Rake::SpecTask. Renamed SPECOPTS and RCOVOPTS to SPEC_OPTS and RCOV_OPTS.
400
+ * Fixed [#10534] Windows: undefined method 'controller_name'
401
+
402
+ === Version 1.0.5
403
+ Bug fixes. Autotest plugin tweaks.
404
+
405
+ * Fixed [#11378] fix to 10814 broke drb (re-opened #10814)
406
+ * Fixed [#11223] Unable to access flash from rails helper specs
407
+ * Fixed [#11337] autotest runs specs redundantly
408
+ * Fixed [#11258] windows: autotest won't run
409
+ * Applied [#11253] Tweaks to autotest file mappings (Patch from Wincent Colaiuta)
410
+ * Applied [#11252] Should be able to re-load file containing shared behaviours without raising an exception (Patch from Wincent Colaiuta)
411
+ * Fixed [#11247] standalone autotest doesn't work because of unneeded autotest.rb
412
+ * Applied [#11221] Autotest support does not work w/o Rails Gem installed (Patch from Josh Knowles)
413
+
414
+ === Version 1.0.4
415
+ The getting ready for JRuby release.
416
+
417
+ * Fixed [#11181] behaviour_type scoping of config.before(:each) is not working
418
+ * added mock argument constraint matchers (anything(), boolean(), an_instance_of(Type)) which work with rspec or mocha
419
+ * added mock argument constraint matchers (any_args(), no_args()) which only work with rspec
420
+ * deprecated rspec's symbol mock argument constraint matchers (:any_args, :no_args, :anything, :boolean, :numeric, :string)
421
+ * Added tarball of rspec_on_rails to the release build to support folks working behind a firewall that blocks svn access.
422
+ * Fixed [#11137] rspec incorrectly handles flash after resetting the session
423
+ * Fixed [#11143] Views code for ActionController::Base#render broke between 1.0.0 and 1.0.3 on Rails Edge r6731
424
+ * Added raise_controller_errors for controller examples in Spec::Rails
425
+
426
+ === Version 1.0.3
427
+ Bug fixes.
428
+
429
+ * Fixed [#11104] Website uses old specify notation
430
+ * Applied [#11101] StringHelpers.starts_with?(prefix) assumes a string parameter for _prefix_
431
+ * Removed 'rescue nil' which was hiding errors in controller examples.
432
+ * Fixed [#11075] controller specs fail when using mocha without integrated_views
433
+ * Fixed problem with redirect_to failing incorrectly against edge rails.
434
+ * Fixed [#11082] RspecResourceGenerator should be RspecScaffoldGenerator
435
+ * Fixed [#10959] Focused Examples do not work for Behaviour defined with constant with modules
436
+
437
+ === Version 1.0.2
438
+ This is just to align the version numbers in rspec and rspec_on_rails.
439
+
440
+ === Version 1.0.1
441
+ This is a maintenance release with mostly cleaning up, and one minor enhancement -
442
+ Modules are automatically included when described directly.
443
+
444
+ * Renamed Spec::Rails' rspec_resource generator to rspec_scaffold.
445
+ * Removed Spec::Rails' be_feed matcher since it's based on assert_select_feed which is not part of Rails (despite that docs for assert_select_encoded says it is).
446
+ * describe(SomeModule) will include that module in the examples. Like for Spec::Rails helpers, but now also in core.
447
+ * Header in HTML report will be yellow instead of red if there is one failed example
448
+ * Applied [#10951] Odd instance variable name in rspec_model template (patch from Kyle Hargraves)
449
+ * Improved integration with autotest (Patches from Ryan Davis and David Goodland)
450
+ * Some small fixes to make all specs run on JRuby.
451
+
452
+ === Version 1.0.0
453
+ The stake in the ground release. This represents a commitment to the API as it is. No significant
454
+ backwards compatibility changes in the API are expected after this release.
455
+
456
+ * Fixed [#10923] have_text matcher does not support should_not
457
+ * Fixed [#10673] should > and should >= broken
458
+ * Applied [#10921] Allow verify_rcov to accept greater than threshold coverage %'s via configuration
459
+ * Applied [#10920] Added support for not implemented examples (Patch from Chad Humphries and Ken Barker)
460
+ * Patch to allow not implemented examples. This works by not providing a block to the example. (Patch from Chad Humphries, Ken Barker)
461
+ * Yanked support for Rails 1.1.6 in Spec::Rails
462
+ * RSpec.tmbundle uses CMD-SHIFT-R to run focused examples now.
463
+ * Spec::Rails now bundles a spec:rcov task by default (suggestion from Kurt Schrader)
464
+ * Fixed [#10814] Runner loads shared code, test cases require them again
465
+ * Fixed [#10753] Global before and after
466
+ * Fixed [#10774] Allow before and after to be specified in config II
467
+ * Refactored Spec::Ui examples to use new global before and after blocks.
468
+ * Added instructions about how to get Selenium working with Spec::Ui (spec_ui/examples/selenium/README.txt)
469
+ * Fixed [#10805] selenium.rb missing from gem?
470
+ * Added rdocs explaining how to deal with errors in Rails' controller actions
471
+ * Applied [#10770] Finer grained includes.
472
+ * Fixed [#10747] Helper methods defined in shared specs are not visible when shared spec is used
473
+ * Fixed [#10748] Shared descriptions in separate files causes 'already exists' error
474
+ * Applied [#10698] Running with --drb executes specs twice (patch from Ruy Asan)
475
+ * Fixed [#10871] 0.9.4 - Focussed spec runner fails to run specs in descriptions with type and string when there is no leading space in the string
476
+
477
+ === Version 0.9.4
478
+ This release introduces massive improvements to Spec::Ui - the user interface functional testing
479
+ extension to RSpec. There are also some minor bug fixes to the RSpec core.
480
+
481
+ * Massive improvements to Spec::Ui. Complete support for all Watir's ie.xxx(how, what) methods. Inline screenshots and HTML.
482
+ * Reactivated --timeout, which had mysteriously been deactivated in a recent release.
483
+ * Fixed [#10669] Kernel#describe override does not cover Kernel#context
484
+ * Applied [#10636] Added spec for OptionParser in Runner (Patch from Scott Taylor)
485
+ * Added [#10516] should_include should be able to accept multiple items
486
+ * Applied [#10631] redirect_to matcher doesn't respect request.host (Patch from Tim Lucas)
487
+ * Each formatter now flushes their own IO. This is to avoid buffering of output.
488
+ * Fixed [#10670] IVarProxy#delete raises exception when instance variable does not exist
489
+
490
+ === Version 0.9.3
491
+ This is a bugfix release.
492
+
493
+ * Fixed [#10594] Failing Custom Matcher show NAME NOT GENERATED description
494
+ * describe(SomeType, "#message") will not add a space: "SomeType#message" (likewise for '.')
495
+ * describe(SomeType, "message") will have a decription with a space: "SomeType message"
496
+ * Applied [#10566] prepend_before and prepend_after callbacks
497
+ * Applied [#10567] Call setup and teardown using before and after callbacks
498
+
499
+ === Version 0.9.2
500
+ This is a quick maintenance release.
501
+
502
+ * Added some website love
503
+ * Fixed [#10542] reverse predicate matcher syntax
504
+ * Added a spec:translate Rake task to make 0.9 translation easier with Spec:Rails
505
+ * Better translation of should_redirect_to
506
+ * Fixed --colour support for Windows. This is a regression that was introduced in 0.9.1
507
+ * Applied [#10460] Make SpecRunner easier to instantiate without using commandline args
508
+
509
+ === Version 0.9.1
510
+
511
+ This release introduces #describe and #it (aliased as #context and #specify for
512
+ backwards compatibility). This allows you to express specs like this:
513
+
514
+ describe SomeClass do # Creates a Behaviour
515
+ it "should do something" do # Creates an Example
516
+ end
517
+ end
518
+
519
+ The command line features four new options that give you more control over what specs
520
+ are being run and in what order. This can be used to verify that your specs are
521
+ independent (by running in opposite order with --reverse). It can also be used to cut
522
+ down feedback time by running the most recently modified specs first (--loadby mtime --reverse).
523
+
524
+ Further, --example replaces the old --spec option, and it can now take a file name of
525
+ spec names as an alternative to just a spec name. The --format failing_examples:file.txt
526
+ option allows you to output an --example compatible file, which makes it possible to only
527
+ rerun the specs that failed in the last run. Spec::Rails uses all of these four options
528
+ by default to optimise your RSpec experience.
529
+
530
+ There is now a simple configuration model. For Spec::Rails, you do something like this:
531
+
532
+ Spec::Runner.configure do |config|
533
+ config.use_transactional_fixtures = true
534
+ config.use_instantiated_fixtures = false
535
+ config.fixture_path = RAILS_ROOT + '/spec/fixtures'
536
+ end
537
+
538
+ You can now use mocha or flexmock with RSpec if you prefer either to
539
+ RSpec's own mock framework. Just put this:
540
+
541
+ Spec::Runner.configure do |config|
542
+ config.mock_with :mocha
543
+ end
544
+
545
+ or this:
546
+
547
+ Spec::Runner.configure do |config|
548
+ config.mock_with :flexmock
549
+ end
550
+
551
+ in a file that is loaded before your specs. You can also
552
+ configure included modules and predicate_matchers:
553
+
554
+ Spec::Runner.configure do |config|
555
+ config.include SomeModule
556
+ config.predicate_matchers[:does_something?] = :do_something
557
+ end
558
+
559
+ See Spec::DSL::Behaviour for more on predicate_matchers
560
+
561
+ * Sugar FREE!
562
+ * Added [10434 ] Please Make -s synonymous with -e for autotest compat. This is temporary until autotest uses -e instead of -s.
563
+ * Fixed [#10133] custom predicate matchers
564
+ * Applied [#10473] Add should exist (new matcher) - Patch from Bret Pettichord
565
+ * Added another formatter: failing_behaviours. Writes the names of the failing behaviours for use with --example.
566
+ * Applied [#10315] Patch to fix pre_commit bug 10313 - pre_commit_rails: doesn't always build correctly (Patch from Antii Tarvainen)
567
+ * Applied [#10245] Patch to HTML escape the behavior name when using HTML Formatter (Patch from Josh Knowles)
568
+ * Applied [#10410] redirect_to does not behave consistently with regards to query string parameter ordering (Patch from Nicholas Evans)
569
+ * Applied [#9605] Patch for ER 9472, shared behaviour (Patch by Bob Cotton)
570
+ * The '--format rdoc' option no longer causes a dry-run by default. --dry-run must be used explicitly.
571
+ * It's possible to specify the output file in the --format option (See explanation in --help)
572
+ * Several --format options may be specified to output several formats in one run.
573
+ * The --out option is gone. Use --format html:path/to/my.html instead (or similar).
574
+ * Spec::Runner::Formatter::BaseTextFormatter#initialize only takes one argument - an IO. dry_run and color are setters.
575
+ * Made Spec::Ui *much* easier to install. It will be released separately. Check out trunk/spec_ui/examples
576
+ * HTML reports now include a syntax highlighted snippet of the source code where the spec failed (needs the syntax gem)
577
+ * Added [#10262] Better Helper testing of Erb evaluation block helpers
578
+ * Added [#9735] support flexmock (thanks to Jim Weirich for his modifications to flexmock to support this)
579
+ * Spec::Rails controller specs will no longer let mock exception ripple through to the response.
580
+ * Fixed [#9260] IvarProxy does not act like a hash.
581
+ * Applied [#9458] The rspec_scaffold generator does not take into account class nesting (Patch from Steve Tendon)
582
+ * Applied [#9132] Rakefile spec:doc can fail without preparing database (Patch from Steve Ross)
583
+ * Applied [#9678] Custom runner command line switch, and multi-threaded runner (Patch from Bob Cotton)
584
+ * Applied [#9926] Rakefile - RSPEC_DEPS constant as an Array of Hashes instead of an Array of Arrays (Patch from Scott Taylor)
585
+ * Applied [#9925] Changed ".rhtml" to "template" in REST spec generator (Patch from Scott Taylor)
586
+ * Applied [#9852] Patch for RSpec's Website using Webgen 0.4.2 (Patch from Scott Taylor)
587
+ * Fixed [#6523] Run rspec on rails without a db
588
+ * Fixed [#9295] rake spec should run anything in the spec directory (not just rspec's standard dirs)
589
+ * Added [#9786] infer controller and helper names from the described type
590
+ * Fixed [#7795] form_tag renders action='/view_spec' in view specs
591
+ * Fixed [#9767] rspec_on_rails should not define rescue_action on controllers
592
+ * Fixed [#9421] --line doesn't work with behaviours that use class names
593
+ * Fixed [#9760] rspec generators incompatible with changes to edge rails
594
+ * Added [#9786] infer controller and helper names from the described type
595
+ * Applied a simplified version of [#9282] Change to allow running specs from textmate with rspec installed as a rails plugin (and no rspec gem installed)
596
+ * Applied [#9700] Make Spec::DSL::Example#name public / Add a --timeout switch. A great way to prevent specs from getting slow.
597
+ * In Rails, script/generate rspec will generate a spec.opts file that optimises faster/more efficient running of specs.
598
+ * Added [#9522] support using rspec's expectations with test/unit
599
+ * Moved rspec_on_rails up to the project root, simplifying the download url
600
+ * Fixed [#8103] RSpec not installing spec script correctly.
601
+ * The --spec option is replaced by the --example option.
602
+ * The --loadby option no longer supports a file argument. Use --example file_name instead.
603
+ * The --example option can now take a file name as an argument. The file should contain example names.
604
+ * Internal classes are named Behaviour/Example (rather than Context/Specification).
605
+ * You can now use mocha by saying config.mock_with :mocha in a spec_helper
606
+ * before_context_eval is replaced by before_eval.
607
+ * Applied [#9509] allow spaced options in spec.opts
608
+ * Applied [#9510] Added File for Ruby 1.8.6
609
+ * Applied [#9511] Clarification to README file in spec/
610
+ * Moved all of the Spec::Rails specs down to the plugins directory - now you can run the specs after you install.
611
+ * Updated RSpec.tmbundle to the 0.9 syntax and replaced context/specify with describe/it.
612
+ * Applied [#9232] ActionController::Base#render is sometimes protected (patch from Dan Manges)
613
+ * Added --reverse option, allowing contexts/specs to be run in reverse order.
614
+ * Added --loadby option, allowing better control over load order for spec files. mtime and file.txt supported.
615
+ * Implemented [#8696] --order option (see --reverse and --loadby)
616
+ * Added describe/it as aliases for context/specify - suggestion from Dan North.
617
+ * Applied [#7637] [PATCH] add skip-migration option to rspec_scaffold generator
618
+ * Added [#9167] string.should have_tag
619
+ * Changed script/rails_spec_server to script/spec_server and added script/spec (w/ path to vendor/plugins/rspec)
620
+ * Fixed [#8897] Error when mixing controller spec with/without integrated views and using template system other than rhtml
621
+ * Updated sample app specs to 0.9 syntax
622
+ * Updated generated specs to 0.9 syntax
623
+ * Applied [#8994] trunk: generated names for be_ specs (Multiple patches from Yurii Rashkovskii)
624
+ * Applied [#9983]: Allow before and after to be called in BehaviourEval. This is useful for shared examples.
625
+
626
+ === Version 0.8.2
627
+
628
+ Replaced assert_select fork with an assert_select wrapper for have_tag. This means that "should have_rjs" no longer supports :hide or :effect, but you can still use should_have_rjs for those.
629
+
630
+ === Version 0.8.1
631
+
632
+ Quick "in house" bug-fix
633
+
634
+ === Version 0.8.0
635
+
636
+ This release introduces a new approach to handling expectations using Expression Matchers.
637
+
638
+ See Upgrade[http://rspec.rubyforge.org/upgrade.html], Spec::Expectations, Spec::Matchers and RELEASE-PLAN for more info.
639
+
640
+ This release also improves the spec command line by adding DRb support and making it possible to
641
+ store command line options in a file. This means a more flexible RSpec experience with Rails,
642
+ Rake and editor plugins like TextMate.
643
+
644
+ It also sports myriad new features, bug fixes, patches and general goodness:
645
+
646
+ * Fixed [#8928] rspec_on_rails 0.8.0-RC1 controller tests make double call to setup_with_fixtures
647
+ * Fixed [#8925] Documentation bug in 0.8.0RC1 rspec website
648
+ * Applied [#8132] [PATCH] RSpec breaks "rake db:sessions:create" in a rails project that has the rspec_on_rails plugin (Patch from Erik Kastner)
649
+ * Fixed [#8789] --line and --spec not working when the context has parenhesis in the name
650
+ * Added [#8783] auto generate spec names from last expectation
651
+ * --heckle now fails if the heckled class or module is not found.
652
+ * Fixed [#8771] Spec::Mocks::BaseExpectation#with converts hash params to array of arrays with #collect
653
+ * Fixed [#8750] should[_not]_include backwards compatibility between 0.8.0-RC1 and 0.7.5.1 broken
654
+ * Fixed [#8646] Context Runner does not report on Non standard exceptions and return a 0 return code
655
+ * RSpec on Rails' spec_helper.rb will only force RAILS_ENV to test if it was not specified on the command line.
656
+ * Fixed [#5485] proc#should_raise and proc#should_not_raise output
657
+ * Added [#8484] should_receive with blocks
658
+ * Applied [#8218] heckle_runner.rb doesn't work with heckle >= 1.2.0 (Patch from Michal Kwiatkowski)
659
+ * Fixed [#8240] Cryptic error message when no controller_name
660
+ * Applied [#7461] [PATCH] Contexts don't call Module::included when they include a module
661
+ * Removed unintended block of test/unit assertions in rspec_on_rails - they should all, in theory, now be accessible
662
+ * Added mock_model method to RSpec on Rails, which stubs common methods. Based on http://metaclass.org/2006/12/22/making-a-mockery-of-activerecord
663
+ * Fixed [#8165] Partial Mock Errors when respond_to? is true but the method is not in the object
664
+ * Fixed [#7611] Partial Mocks override Subclass methods
665
+ * Fixed [#8302] Strange side effect when mocking a class method
666
+ * Applied [#8316] to_param should return a stringified key in resource generator's controller spec (Patch from Chris Anderson)
667
+ * Applied [#8216] shortcut for creating object stub
668
+ * Applied [#8008] Correct generated specs for view when calling resource generator (Patch from Jonathan Tron)
669
+ * Fixed [#7754] Command-R fails to run spec in TextMate (added instruction from Luke Redpath to the website)
670
+ * Fixed [#7826] RSpect.tmbundle web page out of date.
671
+ * RSpec on Rails specs are now running against RoR 1.2.1 and 1.2.2
672
+ * rspec_scaffold now generates specs for views
673
+ * In a Rails app, RSpec core is only loaded when RAILS_ENV==test (init.rb)
674
+ * Added support for target.should arbitrary_expectation_handler and target.should_not arbitrary_expectation_handler
675
+ * Fixed [#7533] Spec suite fails and the process exits with a code 0
676
+ * Fixed [#7565] Subsequent stub! calls for method fail to override the first call to method
677
+ * Applied [#7524] Incorrect Documentation for 'pattern' in Rake task (patch from Stephen Duncan)
678
+ * Fixed [#7409] default fixtures do not appear to run.
679
+ * Fixed [#7507] "render..and return" doesn't return
680
+ * Fixed [#7509] rcov/rspec incorrectly includes boot.rb (Patch from Courtenay)
681
+ * Fixed [#7506] unnecessary complex output on failure of response.should be_redirect
682
+ * Applied [#6098] Make scaffold_resource generator. Based on code from Pat Maddox.
683
+ * The drbspec command is gone. Use spec --drb instead.
684
+ * The drb option is gone from the Rake task. Pass --drb to spec_opts instead.
685
+ * New -X/--drb option for running specs against a server like spec/rails' script/rails_spec_server
686
+ * New -O/--options and -G/--generate flags for file-based options (handy for spec/rails)
687
+ * Applied [#7339] Turn off caching in HTML reports
688
+ * Applied [#7419] "c option for colorizing output does not work with rails_spec" (Patch from Shintaro Kakutani)
689
+ * Applied [#7406] [PATCH] 0.7.5 rspec_on_rails loads fixtures into development database (Patch from Wilson Bilkovich)
690
+ * Applied [#7387] Allow stubs to return consecutive values (Patch from Pat Maddox)
691
+ * Applied [#7393] Fix for rake task (Patch from Pat Maddox)
692
+ * Reinstated support for response.should_render (in addition to controller.should_render)
693
+
694
+ === Version 0.7.5.1
695
+
696
+ Bug fix release to allow downloads of rspec gem using rubygems 0.9.1.
697
+
698
+ === Version 0.7.5
699
+ This release adds support for Heckle - Seattle'rb's code mutation tool.
700
+ There are also several bug fixes to the RSpec core and the RSpec on Rails plugin.
701
+
702
+ * Removed svn:externals on rails versions and plugins
703
+ * Applied [#7345] Adding context_setup and context_teardown, with specs and 100% rcov
704
+ * Applied [#7320] [PATCH] Allow XHR requests in controller specs to render RJS templates
705
+ * Applied [#7319] Migration code uses drop_column when it should use remove_column (patch from Pat Maddox)
706
+ * Added support for Heckle
707
+ * Applied [#7282] dump results even if spec is interrupted (patch from Kouhei Sutou)
708
+ * Applied [#7277] model.should_have(n).errors_on(:attribute) (patch from Wilson Bilkovich)
709
+ * Applied [#7270] RSpec render_partial colliding with simply_helpful (patch from David Goodlad)
710
+ * Added [#7250] stubs should support throwing
711
+ * Added [#7249] stubs should support yielding
712
+ * Fixed [#6760] fatal error when accessing nested finders in rspec
713
+ * Fixed [#7179] script/generate rspec_scaffold generates incorrect helper name
714
+ * Added preliminary support for assert_select (response.should_have)
715
+ * Fixed [#6971] and_yield does not work when the arity is -1
716
+ * Fixed [#6898] Can we separate rspec from the plugins?
717
+ * Added [#7025] should_change should accept a block
718
+ * Applied [#6989] partials with locals (patch from Micah Martin)
719
+ * Applied [#7023] Typo in team.page
720
+
721
+ === Version 0.7.4
722
+
723
+ This release features a complete redesign of the reports generated with --format html.
724
+ As usual there are many bug fixes - mostly related to spec/rails.
725
+
726
+ * Applied [#7010] Fixes :spacer_template does not work w/ view spec (patch from Shintaro Kakutani)
727
+ * Applied [#6798] ensure two ':' in the first backtrace line for Emacs's 'next-error' command (patch from Kouhei Sutou)
728
+ * Added Much nicer reports to generated website
729
+ * Much nicer reports with --format --html (patch from Luke Redpath)
730
+ * Applied [#6959] Calls to render and redirect in controllers should return true
731
+ * Fixed [#6981] helper method is not available in partial template.
732
+ * Added [#6978] mock should tell you the expected and actual args when receiving the right message with the wrong args
733
+ * Added the possibility to tweak the output of the HtmlFormatter (by overriding extra_failure_content).
734
+ * Fixed [#6936] View specs don't include ApplicationHelper by default
735
+ * Fixed [#6903] Rendering a partial in a view makes the view spec blow up
736
+ * Added callback library from Brian Takita
737
+ * Added [#6925] support controller.should_render :action_name
738
+ * Fixed [#6884] intermittent errors related to method binding
739
+ * Fixed [#6870] rspec on edge rails spec:controller fixture loading fails
740
+ * Using obj.inspect for all messages
741
+ * Improved performance by getting rid of instance_exec (instance_eval is good enough because we never need to pass it args)
742
+
743
+ === Version 0.7.3
744
+
745
+ Almost normal bug fix/new feature release.
746
+
747
+ A couple of things you need to change in your rails specs:
748
+ # spec_helper.rb is a little different (see http://rspec.rubyforge.org/upgrade.html)
749
+ # use controller.should_render before OR after the action (controller.should_have_rendered is deprecated)
750
+
751
+ * Applied [#6577] messy mock backtrace when frozen to edge rails (patch from Jay Levitt)
752
+ * Fixed [#6674] rspec_on_rails fails on @session deprecation warning
753
+ * Fixed [#6780] routing() was failing...fix included - works for 1.1.6 and edge (1.2)
754
+ * Fixed [#6835] bad message with arbitrary predicate
755
+ * Added [#6731] Partial templates rendered
756
+ * Fixed [#6713] helper methods not rendered in view tests?
757
+ * Fixed [#6707] cannot run controller / helper tests via rails_spec or spec only works with rake
758
+ * Applied [#6417] lambda {...}.should_change(receiver, :message) (patch from Wilson Bilkovich)
759
+ * Eliminated dependency on ZenTest
760
+ * Fixed [#6650] Reserved characters in the TextMate bundle break svn on Win32
761
+ * Fixed [#6643] script/generate rspec_controller: invalid symbol generation for 'controller_name' for *modularized* controllers
762
+ * The script/rails_spec command has been moved to bin/drbspec in RSpec core (installed by the gem)
763
+
764
+ === Version 0.7.2
765
+
766
+ This release introduces a brand new RSpec bundle for TextMate, plus some small bugfixes.
767
+
768
+ * Packaged RSpec.tmbundle.tgz as part of the distro
769
+ * Fixed [#6593] Add moving progress bar to HtmlFormatter using Javascript
770
+ * Applied [#6265] should_raise should accept an Exception object
771
+ * Fixed [#6616] Can't run Rails specs with RSpec.tmbundle
772
+ * Fixed [#6411] Can't run Rails specs with ruby
773
+ * Added [#6589] New -l --line option. This is useful for IDE/editor runners/extensions.
774
+ * Fixed [#6615] controller.should_render_rjs should support :partial => 'path/to/template'
775
+
776
+ === Version 0.7.1
777
+
778
+ Bug fixes and a couple o' new features.
779
+
780
+ * Fixed [#6575] Parse error in aliasing the partial mock original method (patch by Brian Takita)
781
+ * Fixed [#6277] debris left by stubbing (trunk) [submitted by dastels] (fixed by fix to [#6575])
782
+ * Fixed [#6575] Parse error in aliasing the partial mock original method
783
+ * Fixed [#6555] should_have_tag does not match documentation
784
+ * Fixed [#6567] SyntaxError should not stop entire run
785
+ * Fixed [#6558] integrated views look for template even when redirected
786
+ * Fixed [#6547] response.should be_redirect broken in 0.7.0
787
+ * Applied [#6471] Easy way to spec routes
788
+ * Applied [#6587] Rspec on Rails displays "Spec::Rails::ContextFactory" as context name
789
+ * Applied [#6514] Document has trivial typos.
790
+ * Added [#6560] controller.session should be available before the action
791
+ * Added support for should_have_rjs :visual_effect
792
+ * Different printing and colours for unmet expectations (red) and other exceptions (magenta)
793
+ * Simplified method_missing on mock_methods to make it less invasive on partial mocks.
794
+
795
+ === Version 0.7.0
796
+
797
+ This is the "Grow up and eat your own dog food release". RSpec is now used on itself and
798
+ we're no longer using Test::Unit to test it. Although, we are still extending Test::Unit
799
+ for the rails plugin (indirectly - through ZenTest)
800
+
801
+ IMPORTANT NOTE: THIS RELEASE IS NOT 100% BACKWARDS COMPATIBLE TO 0.6.x
802
+
803
+ There are a few changes that will require that you change your existing specs.
804
+
805
+ RSpec now handles equality exactly like ruby does:
806
+
807
+ # actual.should_equal(expected) will pass if actual.equal?(expected) returns true
808
+ # actual.should eql(expected) will pass if actual.eql?(expected) returns true
809
+ # actual.should == expected will pass if actual == expected) returns true
810
+
811
+ At the high level, eql? implies equivalence, while equal? implies object identity. For more
812
+ information on how ruby deals w/ equality, you should do this:
813
+
814
+ ri equal?
815
+
816
+ or look at this:
817
+
818
+ http://www.ruby-doc.org/core/classes/Object.html#M001057
819
+
820
+ Also, we left in should_be as a synonym for should_equal, so the only specs that should break are the
821
+ ones using should_equal (which used to use <code>==</code> instead of <code>.equal?</code>).
822
+
823
+ Lastly, should_be used to handle true and false differently from any other values. We've removed
824
+ this special handling, so now actual.should_be true will fail for any value other than true (it
825
+ used to pass for any non-nil, non-false value), and actual.should_be false will fail for any
826
+ value other than false (it used to pass for nil or false).
827
+
828
+ Here's what you'll need to do to update your specs:
829
+ # search for "should_equal" and replace with "should_eql"
830
+ # run specs
831
+
832
+ If any specs still fail, they are probably related to should be_true or should_be_false using
833
+ non-boolean values. Those you'll just have to inspect manually and adjust appropriately (sorry!).
834
+
835
+ --------------------------------------------------
836
+ Specifying multiple return values in mocks now works like this:
837
+
838
+ mock.should_receive(:message).and_return(1,2,3)
839
+
840
+ It used to work like this:
841
+
842
+ mock.should_receive(:message).and_return([1,2,3])
843
+
844
+ but we decided that was counter intuitive and otherwise lame.
845
+
846
+ Here's what you'll need to do to update your specs:
847
+ # search for "and_return(["
848
+ # get rid of the "[" and "]"
849
+
850
+ --------------------------------------------------
851
+ RSpec on Rails now supports the following (thanks to ZenTest upon which it is built):
852
+
853
+ # Separate specs for models, views, controllers and helpers
854
+ # Controller specs are completely decoupled from the views by default (though you can tell them to couple themselves if you prefer)
855
+ # View specs are completely decoupled from app-specific controllers
856
+
857
+ See http://rspec.rubyforge.org/documentation/rails/index.html for more information
858
+ --------------------------------------------------
859
+ As usual, there are also other new features and bug fixes:
860
+
861
+ * Added lots of documentation on mocks/stubs and the rails plugin.
862
+ * Added support for assigns[key] syntax for controller specs (to align w/ pre-existing syntax for view specs)
863
+ * Added support for controller.should_redirect_to
864
+ * RSpec on Rails automatically checks whether it's compatible with the installed RSpec
865
+ * Applied [#6393] rspec_on_rails uses deprecated '@response' instead of the accessor
866
+ * RSpec now has 100% spec coverage(!)
867
+ * Added support for stubbing and partial mocking
868
+ * Progress (....F..F.) is now coloured. Tweaked patch from KAKUTANI Shintaro.
869
+ * Backtrace now excludes the rcov runner (/usr/local/bin/rcov)
870
+ * Fixed [#5539] predicates do not work w/ rails
871
+ * Added [#6091] support for Regexp matching messages sent to should_raise
872
+ * Added [#6333] support for Regexp matching in mock arguments
873
+ * Applied [#6283] refactoring of diff support to allow selectable formats and custom differs
874
+ * Fixed [#5564] "ruby spec_file.rb" doesn't work the same way as "spec spec_file.rb"
875
+ * Fixed [#6056] Multiple output of failing-spec notice
876
+ * Fixed [#6233] Colours in specdoc
877
+ * Applied [#6207] Allows --diff option to diff target and expected's #inspect output (Patch by Lachie Cox)
878
+ * Fixed [#6203] Failure messages are misleading - consider using inspect.
879
+ * Added [#6334] subject.should_have_xyz will try to call subject.has_xyz? - use this for hash.should_have_key(key)
880
+ * Fixed [#6017] Rake task should ignore empty or non-existent spec-dirs
881
+
882
+ === Version 0.6.4
883
+
884
+ In addition to a number of bug fixes and patches, this release begins to formalize the support for
885
+ RSpec on Rails.
886
+
887
+ * Added Christopher Petrilli's TextMate bundle to vendor/textmate/RSpec.tmbundle
888
+ * Fixed [#5909], once again supporting multi_word_predicates
889
+ * Applied [#5873] - response.should_have_rjs (initial patch from Jake Howerton, based on ARTS by Kevin Clark)
890
+ * Added generation of view specs for rspec_on_rails
891
+ * Applied [#5815] active_record_subclass.should_have(3).records
892
+ * Added support in "rake stats" for view specs (in spec/views)
893
+ * Applied [#5801] QuickRef.pdf should say RSpec, not rSpec
894
+ * Applied [#5728] rails_spec_runner fails on Windows (Patch from Lindsay Evans).
895
+ * Applied [#5708] RSpec Rails plugin rspec_controller generator makes specs that do not parse.
896
+ * Cleaned up RSpec on Rails so it doesn't pollute as much during bootstrapping.
897
+ * Added support for response.should_have_tag and response.should_not_have_tag (works just like assert_tag in rails)
898
+ * Added new -c, --colour, --color option for colourful (red/green) output. Inspired from Pat Eyler's Redgreen gem.
899
+ * Added examples for Watir and Selenium under the gem's vendor directory.
900
+ * Renamed rails_spec_runner to rails_spec_server (as referred to in the docs)
901
+ * Added support for trying a plural for arbitrary predicates. E.g. Album.should_exist(:name => "Hey Jude") will call Album.exists?(:name => "Hey Jude")
902
+ * Added support for should_have to work with methods taking args returning a collection. E.g. @dave.should_have(3).albums_i_have_that_this_guy_doesnt(@aslak)
903
+ * Added [#5570] should_not_receive(:msg).with(:specific, "args")
904
+ * Applied [#5065] to support using define_method rather than method_missing to capture expected messages on mocks. Thanks to Eero Saynatkari for the tip that made it work.
905
+ * Restructured directories and Modules in order to separate rspec into three distinct Modules: Spec::Expectations, Spec::Runner and Spec::Mocks. This will allow us to more easily integrate other mock frameworks and/or allow test/unit users to take advantage of the expectation API.
906
+ * Applied [#5620] support any boolean method and arbitrary comparisons (5.should_be < 6) (Patch from Mike Williams)
907
+
908
+ === Version 0.6.3
909
+
910
+ This release fixes some minor bugs related to RSpec on Rails
911
+ Note that if you upgrade a rails app with this version of the rspec_on_rails plugin
912
+ you should remove your lib/tasks/rspec.rake if it exists.
913
+
914
+ * Backtraces from drb (and other standard ruby libraries) are now stripped from backtraces.
915
+ * Applied [#5557] Put rspec.rake into the task directory of the RSpec on Rails plugin (Patch from Daniel Siemssen)
916
+ * Applied [#5556] rails_spec_server loads environment.rb twice (Patch from Daniel Siemssen)
917
+
918
+ === Version 0.6.2
919
+ This release fixes a couple of regressions with the rake task that were introduced in the previous version (0.6.1)
920
+
921
+ * Fixed [#5518] ruby -w: warnings in 0.6.1
922
+ * Applied [#5525] fix rake task path to spec tool for gem-installed rspec (patch from Riley Lynch)
923
+ * Fixed a teensey regression with the rake task - introduced in 0.6.1. The spec command is now quoted so it works on windows.
924
+
925
+ === Version 0.6.1
926
+ This is the "fix the most annoying bugs release" of RSpec. There are 9 bugfixes this time.
927
+ Things that may break backwards compatibility:
928
+ 1) Spec::Rake::SpecTask no longer has the options attribute. Use ruby_opts, spec_opts and rcov_opts instead.
929
+
930
+ * Fixed [#4891] RCOV task failing on windows
931
+ * Fixed [#4896] Shouldn't modify user's $LOAD_PATH (Tip from Gavin Sinclair)
932
+ * Fixed [#5369] ruby -w: warnings in RSpec 0.5.16 (Tip from Suraj Kurapati)
933
+ * Applied [#5141] ExampleMatcher doesn't escape strings before matching (Patch from Nikolai Weibull).
934
+ * Fixed [#5224] Move 'require diff-lcs' from test_helper.rb to diff_test.rb (Tip from Chris Roos)
935
+ * Applied [#5449] Rake stats for specs (Patch from Nick Sieger)
936
+ * Applied [#5468, #5058] Fix spec runner to correctly run controller specs (Patch from Daniel Siemssen)
937
+ * Applied fixes to rails_spec_server to improve its ability to run several times. (Patch from Daniel Siemssen)
938
+ * Changed RCov::VerifyTask to fail if the coverage is above the threshold. This is to ensure it gets bumped when coverage improves.
939
+
940
+ === Version 0.6.0
941
+ This release makes an official commitment to underscore_syntax (with no more support for dot.syntax)
942
+
943
+ * Fixed bug (5292) that caused mock argument matching to fail
944
+ * Converted ALL tests to use underscore syntax
945
+ * Fixed all remaining problems with underscores revealed by converting all the tests to underscores
946
+ * Enhanced sugar to support combinations of methods (i.e. once.and_return)
947
+ * Simplified helper structure taking advantage of dot/underscore combos (i.e. should.be.an_instance_of, which can be expressed as should be_an_instance_of)
948
+ * Added support for at_most in mocks
949
+ * Added support for should_not_receive(:msg) (will be removing should_receive(:msg).never some time soon)
950
+ * Added support for should_have_exactly(5).items_in_collection
951
+
952
+ === Version 0.5.16
953
+ This release improves Rails support and test2spec translation.
954
+
955
+ * Fixed underscore problems that occurred when RSpec was used in Rails
956
+ * Simplified the Rails support by packaging it as a plugin instead of a generator gem.
957
+ * Fixed [#5063] 'rspec_on_rails' require line in spec_helper.rb
958
+ * Added pre_commit rake task to reduce risk of regressions. Useful for RSpec developers and patchers.
959
+ * Added failure_message to RSpec Rake task
960
+ * test2spec now defines converted helper methods outside of the setup block (bug #5057).
961
+
962
+ === Version 0.5.15
963
+ This release removes a prematurely added feature that shouldn't have been added.
964
+
965
+ * Removed support for differences that was added in 0.5.14. The functionality is not aligned with RSpec's vision.
966
+
967
+ === Version 0.5.14
968
+ This release introduces better ways to extend specs, improves some of the core API and
969
+ a experimental support for faster rails specs.
970
+
971
+ * Added proc methods for specifying differences (increments and decrements). See difference_test.rb
972
+ * Methods can now be defined alongside specs. This obsoletes the need for defining methods in setup. (Patch #5002 from Brian Takita)
973
+ * Sugar (underscores) now works correctly with should be_a_kind_of and should be_an_instance_of
974
+ * Added support for include and inherit in contexts. (Patch #4971 from Brian Takita)
975
+ * Added rails_spec and rails_spec_server for faster specs on rails (still buggy - help needed)
976
+ * Fixed bug that caused should_render to break if given a :symbol (in Rails)
977
+ * Added support for comparing exception message in should_raise and should_not_raise
978
+
979
+ === Version 0.5.13
980
+ This release fixes some subtle bugs in the mock API.
981
+
982
+ * Use fully-qualified class name of Exceptions in failure message. Easier to debug that way.
983
+ * Fixed a bug that caused mocks to yield a one-element array (rather than the element) when one yield arg specified.
984
+ * Mocks not raise AmbiguousReturnError if an explicit return is used at the same time as an expectation block.
985
+ * Blocks passed to yielding mocks can now raise without causing mock verification to fail.
986
+
987
+ === Version 0.5.12
988
+ This release adds diff support for failure messages, a HTML formatter plus some other
989
+ minor enhancements.
990
+
991
+ * Added HTML formatter.
992
+ * Added fail_on_error option to spectask.
993
+ * Added support for diffing, using the diff-lcs Rubygem (#2648).
994
+ * Remove RSpec on Rails files from backtrace (#4694).
995
+ * All of RSpec's own tests run successfully after translation with test2spec.
996
+ * Added --verbose mode for test2spec - useful for debugging when classes fail to translate.
997
+ * Output of various formatters is now flushed - to get more continuous output.
998
+
999
+ === Version 0.5.11
1000
+ This release makes test2spec usable with Rails (with some manual steps).
1001
+ See http://rspec.rubyforge.org/tools/rails.html for more details
1002
+
1003
+ * test2spec now correctly translates bodies of helper methods (non- test_*, setup and teardown ones).
1004
+ * Added more documentation about how to get test2spec to work with Rails.
1005
+
1006
+ === Version 0.5.10
1007
+ This version features a second rewrite of test2spec - hopefully better than the previous one.
1008
+
1009
+ * Improved test2spec's internals. It now transforms the syntax tree before writing out the code.
1010
+
1011
+ === Version 0.5.9
1012
+ This release improves test2spec by allowing more control over the output
1013
+
1014
+ * Added --template option to test2spec, which allows for custom output driven by ERB
1015
+ * Added --quiet option to test2spec
1016
+ * Removed unnecessary dependency on RubyToC
1017
+
1018
+ === Version 0.5.8
1019
+ This release features a new Test::Unit to RSpec translation tool.
1020
+ Also note that the RubyGem of the previous release (0.5.7) was corrupt.
1021
+ We're close to being able to translate all of RSpec's own Test::Unit
1022
+ tests and have them run successfully!
1023
+
1024
+ * Updated test2spec documentation.
1025
+ * Replaced old test2rspec with a new test2spec, which is based on ParseTree and RubyInline.
1026
+
1027
+ === Version 0.5.7
1028
+ This release changes examples and documentation to recommend underscores rather than dots,
1029
+ and addresses some bugfixes and changes to the spec commandline.
1030
+
1031
+ * spec DIR now works correctly, recursing down and slurping all *.rb files
1032
+ * All documentation and examples are now using '_' instead of '.'
1033
+ * Custom external formatters can now be specified via --require and --format.
1034
+
1035
+ === Version 0.5.6
1036
+ This release fixes a bug in the Rails controller generator
1037
+
1038
+ * The controller generator did not write correct source code (missing 'do'). Fixed.
1039
+
1040
+ === Version 0.5.5
1041
+ This release adds initial support for Ruby on Rails in the rspec_generator gem.
1042
+
1043
+ * [Rails] Reorganised Lachie's original code to be a generator packaged as a gem rather than a plugin.
1044
+ * [Rails] Imported code from http://lachie.info/svn/projects/rails_plugins/rspec_on_rails (Written by Lachie Cox)
1045
+ * Remove stack trace lines from TextMate's Ruby bundle
1046
+ * Better error message from spectask when no spec files are found.
1047
+
1048
+ === Version 0.5.4
1049
+ The "the tutorial is ahead of the gem" release
1050
+
1051
+ * Support for running a single spec with --spec
1052
+ * Exitcode is now 1 unless all specs pass, in which case it's 0.
1053
+ * -v, --version now both mean the same thing
1054
+ * For what was verbose output (-v), use --format specdoc or -f s
1055
+ * --format rdoc always runs in dry-run mode
1056
+ * Removed --doc and added --format and --dry-run
1057
+ * Refactored towards more pluggable formatters
1058
+ * Use webgen's execute tag when generating website (more accurate)
1059
+ * Fixed incorrect quoting of spec_opts in SpecTask
1060
+ * Added patch to enable underscored shoulds like 1.should_equal(1) - patch from Rich Kilmer
1061
+ * Removed most inherited instance method from Mock, making more methods mockable.
1062
+ * Made the RCovVerify task part of the standard toolset.
1063
+ * Documented Rake task and how to use it with Rcov
1064
+ * Implemented <ruby></ruby> tags for website (hooking into ERB, RedCloth and syntax)
1065
+ * RSpec Rake task now takes spec_opts and out params so it can be used for doc generation
1066
+ * RCov integration for RSpec Rake task (#4058)
1067
+ * Group all results instead of printing them several times (#4057)
1068
+ * Mocks can now yield
1069
+ * Various improvements to error reporting (including #4191)
1070
+ * backtrace excludes rspec code - use -b to include it
1071
+ * split examples into examples (passing) and failing_examples
1072
+
1073
+ === Version 0.5.3
1074
+ The "hurry up, CoR is in two days" release.
1075
+
1076
+ * Don't run rcov by default
1077
+ * Make separate task for running tests with RCov
1078
+ * Added Rake task to fail build if coverage drops below a certain threshold
1079
+ * Even more failure output cleanup (simplification)
1080
+ * Added duck_type constraint for mocks
1081
+
1082
+ === Version 0.5.2
1083
+ This release has minor improvements to the commandline and fixes some gem warnings
1084
+
1085
+ * Readded README to avoid RDoc warnings
1086
+ * Added --version switch to commandline
1087
+ * More changes to the mock API
1088
+
1089
+ === Version 0.5.1
1090
+ This release is the first release of RSpec with a new website. It will look better soon.
1091
+
1092
+ * Added initial documentation for API
1093
+ * Added website based on webgen
1094
+ * Modified test task to use rcov
1095
+ * Deleted unused code (thanks, rcov!)
1096
+ * Various changes to the mock API,
1097
+ * Various improvements to failure reporting
1098
+
1099
+ === Version 0.5.0
1100
+ This release introduces a new API and obsolesces previous versions.
1101
+
1102
+ * Moved source code to separate subfolders
1103
+ * Added new DSL runner based on instance_exec
1104
+ * Added spike for testdox/rdoc generation
1105
+ * merge Astels' and Chelimsky's work on ShouldHelper
1106
+ * this would be 0.5.0 if I updated the documentation
1107
+ * it breaks all of your existing specifications. We're not sorry.
1108
+
1109
+ === Version 0.3.2
1110
+
1111
+ The "srbaker is an idiot" release.
1112
+
1113
+ * also forgot to update the path to the actual Subversion repository
1114
+ * this should be it
1115
+
1116
+ === Version 0.3.1
1117
+
1118
+ This is just 0.3.0, but with the TUTORIAL added to the documentation list.
1119
+
1120
+ * forgot to include TUTORIAL in the documentation
1121
+
1122
+ === Version 0.3.0
1123
+
1124
+ It's been a while since last release, lots of new stuff is available. For instance:
1125
+
1126
+ * improvements to the runners
1127
+ * addition of should_raise expectation (thanks to Brian Takita)
1128
+ * some documentation improvements
1129
+ * RSpec usable as a DSL
1130
+
1131
+ === Version 0.2.0
1132
+
1133
+ This release provides a tutorial for new users wishing to get started with
1134
+ RSpec, and many improvements.
1135
+
1136
+ * improved reporting in the spec runner output
1137
+ * update the examples to the new mock api
1138
+ * added TUTORIAL, a getting started document for new users of RSpec
1139
+
1140
+ === Version 0.1.7
1141
+
1142
+ This release improves installation and documentation, mock integration and error reporting.
1143
+
1144
+ * Comparison errors now print the class name too.
1145
+ * Mocks now take an optional +options+ parameter to specify behaviour.
1146
+ * Removed __expects in favour of should_receive
1147
+ * Added line number reporting in mock error messages for unreceived message expectations.
1148
+ * Added should_match and should_not_match.
1149
+ * Added a +mock+ method to Spec::Context which will create mocks that autoverify (no need to call __verify).
1150
+ * Mocks now require names in the constructor to ensure sensible error messages.
1151
+ * Made 'spec' executable and updated usage instructions in README accordingly.
1152
+ * Made more parts of the Spec::Context API private to avoid accidental usage.
1153
+ * Added more RDoc to Spec::Context.
1154
+
1155
+ === Version 0.1.6
1156
+
1157
+ More should methods.
1158
+
1159
+ * Added should_match and should_not_match.
1160
+
1161
+ === Version 0.1.5
1162
+
1163
+ Included examples and tests in gem.
1164
+
1165
+ === Version 0.1.4
1166
+
1167
+ More tests on block based Mock expectations.
1168
+
1169
+ === Version 0.1.3
1170
+
1171
+ Improved mocking:
1172
+
1173
+ * block based Mock expectations.
1174
+
1175
+ === Version 0.1.2
1176
+
1177
+ This release adds some improvements to the mock API and minor syntax improvements
1178
+
1179
+ * Added Mock.should_expect for a more consistent DSL.
1180
+ * Added MockExpectation.and_returns for a better DSL.
1181
+ * Made Mock behave as a null object after a call to Mock.ignore_missing
1182
+ * Internal syntax improvements.
1183
+ * Improved exception trace by adding exception class name to error message.
1184
+ * Renamed some tests for better consistency.
1185
+
1186
+ === Version 0.1.1
1187
+
1188
+ This release adds some shoulds and improves error reporting
1189
+
1190
+ * Added should be_same_as and should_not be_same_as.
1191
+ * Improved error reporting for comparison expectations.
1192
+
1193
+ === Version 0.1.0
1194
+
1195
+ This is the first preview release of RSpec, a Behaviour-Driven Development library for Ruby
1196
+
1197
+ * Added Rake script with tasks for gems, rdoc etc.
1198
+ * Added an XForge task to make release go easier.