actionpack 1.13.6 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (317) hide show
  1. data/CHANGELOG +1400 -20
  2. data/MIT-LICENSE +1 -1
  3. data/README +5 -5
  4. data/RUNNING_UNIT_TESTS +4 -5
  5. data/Rakefile +5 -6
  6. data/install.rb +2 -2
  7. data/lib/action_controller.rb +11 -15
  8. data/lib/action_controller/assertions.rb +12 -25
  9. data/lib/action_controller/assertions/dom_assertions.rb +18 -4
  10. data/lib/action_controller/assertions/model_assertions.rb +8 -1
  11. data/lib/action_controller/assertions/response_assertions.rb +35 -12
  12. data/lib/action_controller/assertions/routing_assertions.rb +56 -12
  13. data/lib/action_controller/assertions/selector_assertions.rb +105 -38
  14. data/lib/action_controller/assertions/tag_assertions.rb +28 -15
  15. data/lib/action_controller/base.rb +318 -250
  16. data/lib/action_controller/benchmarking.rb +33 -29
  17. data/lib/action_controller/caching.rb +130 -64
  18. data/lib/action_controller/cgi_ext.rb +16 -0
  19. data/lib/action_controller/cgi_ext/{cookie_performance_fix.rb → cookie.rb} +25 -40
  20. data/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  21. data/lib/action_controller/cgi_ext/session.rb +73 -0
  22. data/lib/action_controller/cgi_ext/stdinput.rb +23 -0
  23. data/lib/action_controller/cgi_process.rb +34 -57
  24. data/lib/action_controller/components.rb +19 -36
  25. data/lib/action_controller/cookies.rb +10 -9
  26. data/lib/action_controller/dispatcher.rb +195 -0
  27. data/lib/action_controller/filters.rb +35 -34
  28. data/lib/action_controller/flash.rb +30 -35
  29. data/lib/action_controller/helpers.rb +121 -47
  30. data/lib/action_controller/http_authentication.rb +126 -0
  31. data/lib/action_controller/integration.rb +105 -101
  32. data/lib/action_controller/layout.rb +59 -47
  33. data/lib/action_controller/mime_responds.rb +57 -68
  34. data/lib/action_controller/mime_type.rb +43 -80
  35. data/lib/action_controller/mime_types.rb +20 -0
  36. data/lib/action_controller/polymorphic_routes.rb +88 -0
  37. data/lib/action_controller/record_identifier.rb +91 -0
  38. data/lib/action_controller/request.rb +553 -88
  39. data/lib/action_controller/request_forgery_protection.rb +126 -0
  40. data/lib/action_controller/request_profiler.rb +138 -0
  41. data/lib/action_controller/rescue.rb +185 -69
  42. data/lib/action_controller/resources.rb +211 -172
  43. data/lib/action_controller/response.rb +49 -8
  44. data/lib/action_controller/routing.rb +359 -236
  45. data/lib/action_controller/routing_optimisation.rb +119 -0
  46. data/lib/action_controller/session/active_record_store.rb +3 -2
  47. data/lib/action_controller/session/cookie_store.rb +161 -0
  48. data/lib/action_controller/session/mem_cache_store.rb +9 -16
  49. data/lib/action_controller/session_management.rb +17 -8
  50. data/lib/action_controller/streaming.rb +6 -3
  51. data/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  52. data/lib/action_controller/templates/rescues/{_trace.rhtml → _trace.erb} +0 -0
  53. data/lib/action_controller/templates/rescues/{diagnostics.rhtml → diagnostics.erb} +2 -2
  54. data/lib/action_controller/templates/rescues/{layout.rhtml → layout.erb} +0 -0
  55. data/lib/action_controller/templates/rescues/{missing_template.rhtml → missing_template.erb} +0 -0
  56. data/lib/action_controller/templates/rescues/{routing_error.rhtml → routing_error.erb} +0 -0
  57. data/lib/action_controller/templates/rescues/{template_error.rhtml → template_error.erb} +2 -2
  58. data/lib/action_controller/templates/rescues/{unknown_action.rhtml → unknown_action.erb} +0 -0
  59. data/lib/action_controller/test_case.rb +53 -0
  60. data/lib/action_controller/test_process.rb +59 -46
  61. data/lib/action_controller/url_rewriter.rb +48 -24
  62. data/lib/action_controller/vendor/html-scanner/html/document.rb +7 -4
  63. data/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  64. data/lib/action_controller/vendor/html-scanner/html/selector.rb +11 -6
  65. data/lib/action_controller/verification.rb +27 -21
  66. data/lib/action_pack.rb +1 -1
  67. data/lib/action_pack/version.rb +4 -4
  68. data/lib/action_view.rb +2 -3
  69. data/lib/action_view/base.rb +218 -63
  70. data/lib/action_view/compiled_templates.rb +1 -2
  71. data/lib/action_view/helpers/active_record_helper.rb +35 -17
  72. data/lib/action_view/helpers/asset_tag_helper.rb +395 -87
  73. data/lib/action_view/helpers/atom_feed_helper.rb +111 -0
  74. data/lib/action_view/helpers/benchmark_helper.rb +12 -5
  75. data/lib/action_view/helpers/cache_helper.rb +29 -0
  76. data/lib/action_view/helpers/capture_helper.rb +97 -63
  77. data/lib/action_view/helpers/date_helper.rb +295 -35
  78. data/lib/action_view/helpers/debug_helper.rb +6 -2
  79. data/lib/action_view/helpers/form_helper.rb +354 -111
  80. data/lib/action_view/helpers/form_options_helper.rb +171 -109
  81. data/lib/action_view/helpers/form_tag_helper.rb +332 -76
  82. data/lib/action_view/helpers/javascript_helper.rb +35 -11
  83. data/lib/action_view/helpers/javascripts/controls.js +484 -354
  84. data/lib/action_view/helpers/javascripts/dragdrop.js +88 -58
  85. data/lib/action_view/helpers/javascripts/effects.js +396 -364
  86. data/lib/action_view/helpers/javascripts/prototype.js +2817 -1107
  87. data/lib/action_view/helpers/number_helper.rb +84 -60
  88. data/lib/action_view/helpers/prototype_helper.rb +419 -43
  89. data/lib/action_view/helpers/record_identification_helper.rb +20 -0
  90. data/lib/action_view/helpers/record_tag_helper.rb +59 -0
  91. data/lib/action_view/helpers/sanitize_helper.rb +223 -0
  92. data/lib/action_view/helpers/scriptaculous_helper.rb +63 -4
  93. data/lib/action_view/helpers/tag_helper.rb +69 -39
  94. data/lib/action_view/helpers/text_helper.rb +221 -148
  95. data/lib/action_view/helpers/url_helper.rb +283 -165
  96. data/lib/action_view/partials.rb +134 -62
  97. data/lib/action_view/template_error.rb +4 -12
  98. data/lib/actionpack.rb +1 -0
  99. data/test/abstract_unit.rb +21 -1
  100. data/test/action_view_test.rb +26 -0
  101. data/test/active_record_unit.rb +12 -20
  102. data/test/activerecord/active_record_store_test.rb +2 -2
  103. data/test/activerecord/render_partial_with_record_identification_test.rb +74 -0
  104. data/test/controller/action_pack_assertions_test.rb +21 -152
  105. data/test/controller/addresses_render_test.rb +2 -7
  106. data/test/controller/assert_select_test.rb +120 -14
  107. data/test/controller/base_test.rb +11 -13
  108. data/test/controller/caching_test.rb +125 -5
  109. data/test/controller/capture_test.rb +23 -16
  110. data/test/controller/cgi_test.rb +66 -391
  111. data/test/controller/components_test.rb +31 -42
  112. data/test/controller/content_type_test.rb +1 -1
  113. data/test/controller/cookie_test.rb +42 -14
  114. data/test/controller/deprecation/deprecated_base_methods_test.rb +1 -42
  115. data/test/controller/dispatcher_test.rb +123 -0
  116. data/test/controller/fake_models.rb +5 -0
  117. data/test/controller/filters_test.rb +44 -7
  118. data/test/controller/flash_test.rb +46 -2
  119. data/test/controller/fragment_store_setting_test.rb +10 -8
  120. data/test/controller/helper_test.rb +19 -2
  121. data/test/controller/html-scanner/document_test.rb +124 -0
  122. data/test/controller/html-scanner/node_test.rb +69 -0
  123. data/test/controller/html-scanner/sanitizer_test.rb +250 -0
  124. data/test/controller/html-scanner/tag_node_test.rb +239 -0
  125. data/test/controller/html-scanner/text_node_test.rb +51 -0
  126. data/test/controller/html-scanner/tokenizer_test.rb +125 -0
  127. data/test/controller/http_authentication_test.rb +54 -0
  128. data/test/controller/integration_test.rb +12 -26
  129. data/test/controller/layout_test.rb +64 -12
  130. data/test/controller/mime_responds_test.rb +193 -38
  131. data/test/controller/mime_type_test.rb +30 -8
  132. data/test/controller/new_render_test.rb +104 -22
  133. data/test/controller/polymorphic_routes_test.rb +98 -0
  134. data/test/controller/record_identifier_test.rb +103 -0
  135. data/test/controller/redirect_test.rb +120 -18
  136. data/test/controller/render_test.rb +195 -45
  137. data/test/controller/request_forgery_protection_test.rb +217 -0
  138. data/test/controller/request_test.rb +545 -27
  139. data/test/controller/rescue_test.rb +501 -0
  140. data/test/controller/resources_test.rb +258 -132
  141. data/test/controller/routing_test.rb +502 -106
  142. data/test/controller/selector_test.rb +5 -5
  143. data/test/controller/send_file_test.rb +17 -7
  144. data/test/controller/session/cookie_store_test.rb +246 -0
  145. data/test/controller/session/mem_cache_store_test.rb +182 -0
  146. data/test/controller/session_fixation_test.rb +8 -11
  147. data/test/controller/session_management_test.rb +7 -7
  148. data/test/controller/test_test.rb +150 -38
  149. data/test/controller/url_rewriter_test.rb +87 -12
  150. data/test/controller/verification_test.rb +11 -0
  151. data/test/controller/view_paths_test.rb +137 -0
  152. data/test/controller/webservice_test.rb +11 -75
  153. data/test/fixtures/addresses/{list.rhtml → list.erb} +0 -0
  154. data/test/fixtures/db_definitions/sqlite.sql +2 -1
  155. data/test/fixtures/developer.rb +2 -0
  156. data/test/fixtures/fun/games/{hello_world.rhtml → hello_world.erb} +0 -0
  157. data/test/fixtures/helpers/fun/pdf_helper.rb +1 -1
  158. data/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  159. data/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  160. data/test/fixtures/layouts/{builder.rxml → builder.builder} +0 -0
  161. data/test/fixtures/layouts/{standard.rhtml → standard.erb} +0 -0
  162. data/test/fixtures/layouts/{talk_from_action.rhtml → talk_from_action.erb} +0 -0
  163. data/test/fixtures/layouts/{yield.rhtml → yield.erb} +0 -0
  164. data/test/fixtures/multipart/binary_file +0 -0
  165. data/test/fixtures/multipart/bracketed_param +5 -0
  166. data/test/fixtures/override/test/hello_world.erb +1 -0
  167. data/test/fixtures/override2/layouts/test/sub.erb +1 -0
  168. data/test/fixtures/post_test/layouts/post.html.erb +1 -0
  169. data/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  170. data/test/fixtures/post_test/post/index.html.erb +1 -0
  171. data/test/fixtures/post_test/post/index.iphone.erb +1 -0
  172. data/test/fixtures/post_test/super_post/index.html.erb +1 -0
  173. data/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  174. data/test/fixtures/public/404.html +1 -0
  175. data/test/fixtures/public/500.html +1 -0
  176. data/test/fixtures/public/javascripts/application.js +0 -1
  177. data/test/fixtures/public/javascripts/bank.js +1 -0
  178. data/test/fixtures/public/javascripts/robber.js +1 -0
  179. data/test/fixtures/public/stylesheets/bank.css +1 -0
  180. data/test/fixtures/public/stylesheets/robber.css +1 -0
  181. data/test/fixtures/replies.yml +2 -0
  182. data/test/fixtures/reply.rb +2 -1
  183. data/test/fixtures/respond_to/{all_types_with_layout.rhtml → all_types_with_layout.html.erb} +0 -0
  184. data/test/fixtures/respond_to/{all_types_with_layout.rjs → all_types_with_layout.js.rjs} +0 -0
  185. data/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  186. data/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  187. data/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  188. data/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  189. data/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  190. data/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  191. data/test/fixtures/respond_to/{using_defaults.rhtml → using_defaults.html.erb} +0 -0
  192. data/test/fixtures/respond_to/{using_defaults.rjs → using_defaults.js.rjs} +0 -0
  193. data/test/fixtures/respond_to/{using_defaults.rxml → using_defaults.xml.builder} +0 -0
  194. data/test/fixtures/respond_to/{using_defaults_with_type_list.rhtml → using_defaults_with_type_list.html.erb} +0 -0
  195. data/test/fixtures/respond_to/{using_defaults_with_type_list.rjs → using_defaults_with_type_list.js.rjs} +0 -0
  196. data/test/fixtures/respond_to/{using_defaults_with_type_list.rxml → using_defaults_with_type_list.xml.builder} +0 -0
  197. data/test/fixtures/scope/test/{modgreet.rhtml → modgreet.erb} +0 -0
  198. data/test/fixtures/test/{_customer.rhtml → _customer.erb} +0 -0
  199. data/test/fixtures/test/{_customer_greeting.rhtml → _customer_greeting.erb} +0 -0
  200. data/test/fixtures/test/_hash_greeting.erb +1 -0
  201. data/test/fixtures/test/_hash_object.erb +2 -0
  202. data/test/fixtures/test/{_hello.rxml → _hello.builder} +0 -0
  203. data/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  204. data/test/fixtures/test/_partial.erb +1 -0
  205. data/test/fixtures/test/_partial.html.erb +1 -0
  206. data/test/fixtures/test/_partial.js.erb +1 -0
  207. data/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  208. data/test/fixtures/test/{_partial_only.rhtml → _partial_only.erb} +0 -0
  209. data/test/fixtures/test/{_person.rhtml → _person.erb} +0 -0
  210. data/test/fixtures/test/{action_talk_to_layout.rhtml → action_talk_to_layout.erb} +0 -0
  211. data/test/fixtures/test/{block_content_for.rhtml → block_content_for.erb} +0 -0
  212. data/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  213. data/test/fixtures/test/{capturing.rhtml → capturing.erb} +0 -0
  214. data/test/fixtures/test/{content_for.rhtml → content_for.erb} +0 -0
  215. data/test/fixtures/test/content_for_concatenated.erb +3 -0
  216. data/test/fixtures/test/content_for_with_parameter.erb +2 -0
  217. data/test/fixtures/test/dot.directory/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
  218. data/test/fixtures/test/{erb_content_for.rhtml → erb_content_for.erb} +0 -0
  219. data/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  220. data/test/fixtures/test/formatted_xml_erb.builder +1 -0
  221. data/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  222. data/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  223. data/test/fixtures/test/{greeting.rhtml → greeting.erb} +0 -0
  224. data/test/fixtures/test/{hello.rxml → hello.builder} +0 -0
  225. data/test/fixtures/test/{hello_world.rxml → hello_world.builder} +0 -0
  226. data/test/fixtures/test/{hello_world.rhtml → hello_world.erb} +0 -0
  227. data/test/fixtures/test/{hello_world_container.rxml → hello_world_container.builder} +0 -0
  228. data/test/fixtures/test/{hello_world_with_layout_false.rhtml → hello_world_with_layout_false.erb} +0 -0
  229. data/test/fixtures/test/{hello_xml_world.rxml → hello_xml_world.builder} +0 -0
  230. data/test/fixtures/test/list.erb +1 -0
  231. data/test/fixtures/test/{non_erb_block_content_for.rxml → non_erb_block_content_for.builder} +0 -0
  232. data/test/fixtures/test/{potential_conflicts.rhtml → potential_conflicts.erb} +0 -0
  233. data/test/fixtures/test/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
  234. data/test/fixtures/test/{render_file_with_locals.rhtml → render_file_with_locals.erb} +0 -0
  235. data/test/fixtures/test/{render_to_string_test.rhtml → render_to_string_test.erb} +0 -0
  236. data/test/fixtures/test/{update_element_with_capture.rhtml → update_element_with_capture.erb} +0 -0
  237. data/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  238. data/test/fixtures/topic.rb +1 -1
  239. data/test/template/active_record_helper_test.rb +67 -20
  240. data/test/template/asset_tag_helper_test.rb +222 -54
  241. data/test/template/atom_feed_helper_test.rb +101 -0
  242. data/test/template/benchmark_helper_test.rb +2 -2
  243. data/test/template/compiled_templates_test.rb +76 -32
  244. data/test/template/date_helper_test.rb +125 -9
  245. data/test/template/form_helper_test.rb +326 -33
  246. data/test/template/form_options_helper_test.rb +822 -15
  247. data/test/template/form_tag_helper_test.rb +96 -30
  248. data/test/template/javascript_helper_test.rb +61 -13
  249. data/test/template/number_helper_test.rb +12 -11
  250. data/test/template/prototype_helper_test.rb +185 -24
  251. data/test/template/sanitize_helper_test.rb +49 -0
  252. data/test/template/scriptaculous_helper_test.rb +9 -3
  253. data/test/template/tag_helper_test.rb +13 -2
  254. data/test/template/text_helper_test.rb +38 -52
  255. data/test/template/url_helper_test.rb +216 -46
  256. metadata +144 -116
  257. data/examples/.htaccess +0 -24
  258. data/examples/address_book/index.rhtml +0 -33
  259. data/examples/address_book/layout.rhtml +0 -8
  260. data/examples/address_book_controller.cgi +0 -9
  261. data/examples/address_book_controller.fcgi +0 -6
  262. data/examples/address_book_controller.rb +0 -52
  263. data/examples/address_book_controller.rbx +0 -4
  264. data/examples/benchmark.rb +0 -52
  265. data/examples/benchmark_with_ar.fcgi +0 -89
  266. data/examples/blog_controller.cgi +0 -53
  267. data/examples/debate/index.rhtml +0 -14
  268. data/examples/debate/new_topic.rhtml +0 -22
  269. data/examples/debate/topic.rhtml +0 -32
  270. data/examples/debate_controller.cgi +0 -57
  271. data/lib/action_controller/assertions/deprecated_assertions.rb +0 -228
  272. data/lib/action_controller/cgi_ext/cgi_ext.rb +0 -36
  273. data/lib/action_controller/cgi_ext/cgi_methods.rb +0 -211
  274. data/lib/action_controller/cgi_ext/pstore_performance_fix.rb +0 -30
  275. data/lib/action_controller/cgi_ext/raw_post_data_fix.rb +0 -95
  276. data/lib/action_controller/cgi_ext/session_performance_fix.rb +0 -30
  277. data/lib/action_controller/deprecated_dependencies.rb +0 -65
  278. data/lib/action_controller/deprecated_redirects.rb +0 -17
  279. data/lib/action_controller/deprecated_request_methods.rb +0 -34
  280. data/lib/action_controller/macros/auto_complete.rb +0 -53
  281. data/lib/action_controller/macros/in_place_editing.rb +0 -33
  282. data/lib/action_controller/pagination.rb +0 -408
  283. data/lib/action_controller/scaffolding.rb +0 -189
  284. data/lib/action_controller/templates/rescues/_request_and_response.rhtml +0 -44
  285. data/lib/action_controller/templates/scaffolds/edit.rhtml +0 -7
  286. data/lib/action_controller/templates/scaffolds/layout.rhtml +0 -69
  287. data/lib/action_controller/templates/scaffolds/list.rhtml +0 -27
  288. data/lib/action_controller/templates/scaffolds/new.rhtml +0 -6
  289. data/lib/action_controller/templates/scaffolds/show.rhtml +0 -9
  290. data/lib/action_controller/vendor/xml_node.rb +0 -97
  291. data/lib/action_view/helpers/deprecated_helper.rb +0 -37
  292. data/lib/action_view/helpers/java_script_macros_helper.rb +0 -233
  293. data/lib/action_view/helpers/pagination_helper.rb +0 -86
  294. data/test/activerecord/active_record_assertions_test.rb +0 -92
  295. data/test/activerecord/pagination_test.rb +0 -165
  296. data/test/controller/deprecated_instance_variables_test.rb +0 -48
  297. data/test/controller/raw_post_test.rb +0 -68
  298. data/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml +0 -1
  299. data/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml +0 -1
  300. data/test/fixtures/deprecated_instance_variables/_flash_ivar.rhtml +0 -1
  301. data/test/fixtures/deprecated_instance_variables/_flash_method.rhtml +0 -1
  302. data/test/fixtures/deprecated_instance_variables/_headers_ivar.rhtml +0 -1
  303. data/test/fixtures/deprecated_instance_variables/_headers_method.rhtml +0 -1
  304. data/test/fixtures/deprecated_instance_variables/_params_ivar.rhtml +0 -1
  305. data/test/fixtures/deprecated_instance_variables/_params_method.rhtml +0 -1
  306. data/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml +0 -1
  307. data/test/fixtures/deprecated_instance_variables/_request_method.rhtml +0 -1
  308. data/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml +0 -1
  309. data/test/fixtures/deprecated_instance_variables/_response_method.rhtml +0 -1
  310. data/test/fixtures/deprecated_instance_variables/_session_ivar.rhtml +0 -1
  311. data/test/fixtures/deprecated_instance_variables/_session_method.rhtml +0 -1
  312. data/test/fixtures/respond_to/layouts/standard.rhtml +0 -1
  313. data/test/fixtures/test/_hash_object.rhtml +0 -1
  314. data/test/fixtures/test/list.rhtml +0 -1
  315. data/test/template/deprecated_helper_test.rb +0 -36
  316. data/test/template/deprecated_instance_variables_test.rb +0 -43
  317. data/test/template/java_script_macros_helper_test.rb +0 -109
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: actionpack
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.13.6
7
- date: 2007-11-24 00:00:00 +13:00
6
+ version: 2.0.0
7
+ date: 2007-12-06 00:00:00 -06:00
8
8
  summary: Web-flow and rendering framework putting the VC in MVC.
9
9
  require_paths:
10
10
  - lib
@@ -35,10 +35,8 @@ files:
35
35
  - RUNNING_UNIT_TESTS
36
36
  - CHANGELOG
37
37
  - MIT-LICENSE
38
- - examples/.htaccess
39
38
  - lib/action_controller
40
39
  - lib/action_controller/assertions
41
- - lib/action_controller/assertions/deprecated_assertions.rb
42
40
  - lib/action_controller/assertions/dom_assertions.rb
43
41
  - lib/action_controller/assertions/model_assertions.rb
44
42
  - lib/action_controller/assertions/response_assertions.rb
@@ -50,37 +48,37 @@ files:
50
48
  - lib/action_controller/benchmarking.rb
51
49
  - lib/action_controller/caching.rb
52
50
  - lib/action_controller/cgi_ext
53
- - lib/action_controller/cgi_ext/cgi_ext.rb
54
- - lib/action_controller/cgi_ext/cgi_methods.rb
55
- - lib/action_controller/cgi_ext/cookie_performance_fix.rb
56
- - lib/action_controller/cgi_ext/pstore_performance_fix.rb
57
- - lib/action_controller/cgi_ext/raw_post_data_fix.rb
58
- - lib/action_controller/cgi_ext/session_performance_fix.rb
51
+ - lib/action_controller/cgi_ext/cookie.rb
52
+ - lib/action_controller/cgi_ext/query_extension.rb
53
+ - lib/action_controller/cgi_ext/session.rb
54
+ - lib/action_controller/cgi_ext/stdinput.rb
55
+ - lib/action_controller/cgi_ext.rb
59
56
  - lib/action_controller/cgi_process.rb
60
57
  - lib/action_controller/components.rb
61
58
  - lib/action_controller/cookies.rb
62
- - lib/action_controller/deprecated_dependencies.rb
63
- - lib/action_controller/deprecated_redirects.rb
64
- - lib/action_controller/deprecated_request_methods.rb
59
+ - lib/action_controller/dispatcher.rb
65
60
  - lib/action_controller/filters.rb
66
61
  - lib/action_controller/flash.rb
67
62
  - lib/action_controller/helpers.rb
63
+ - lib/action_controller/http_authentication.rb
68
64
  - lib/action_controller/integration.rb
69
65
  - lib/action_controller/layout.rb
70
- - lib/action_controller/macros
71
- - lib/action_controller/macros/auto_complete.rb
72
- - lib/action_controller/macros/in_place_editing.rb
73
66
  - lib/action_controller/mime_responds.rb
74
67
  - lib/action_controller/mime_type.rb
75
- - lib/action_controller/pagination.rb
68
+ - lib/action_controller/mime_types.rb
69
+ - lib/action_controller/polymorphic_routes.rb
70
+ - lib/action_controller/record_identifier.rb
76
71
  - lib/action_controller/request.rb
72
+ - lib/action_controller/request_forgery_protection.rb
73
+ - lib/action_controller/request_profiler.rb
77
74
  - lib/action_controller/rescue.rb
78
75
  - lib/action_controller/resources.rb
79
76
  - lib/action_controller/response.rb
80
77
  - lib/action_controller/routing.rb
81
- - lib/action_controller/scaffolding.rb
78
+ - lib/action_controller/routing_optimisation.rb
82
79
  - lib/action_controller/session
83
80
  - lib/action_controller/session/active_record_store.rb
81
+ - lib/action_controller/session/cookie_store.rb
84
82
  - lib/action_controller/session/drb_server.rb
85
83
  - lib/action_controller/session/drb_store.rb
86
84
  - lib/action_controller/session/mem_cache_store.rb
@@ -89,20 +87,15 @@ files:
89
87
  - lib/action_controller/streaming.rb
90
88
  - lib/action_controller/templates
91
89
  - lib/action_controller/templates/rescues
92
- - lib/action_controller/templates/rescues/_request_and_response.rhtml
93
- - lib/action_controller/templates/rescues/_trace.rhtml
94
- - lib/action_controller/templates/rescues/diagnostics.rhtml
95
- - lib/action_controller/templates/rescues/layout.rhtml
96
- - lib/action_controller/templates/rescues/missing_template.rhtml
97
- - lib/action_controller/templates/rescues/routing_error.rhtml
98
- - lib/action_controller/templates/rescues/template_error.rhtml
99
- - lib/action_controller/templates/rescues/unknown_action.rhtml
100
- - lib/action_controller/templates/scaffolds
101
- - lib/action_controller/templates/scaffolds/edit.rhtml
102
- - lib/action_controller/templates/scaffolds/layout.rhtml
103
- - lib/action_controller/templates/scaffolds/list.rhtml
104
- - lib/action_controller/templates/scaffolds/new.rhtml
105
- - lib/action_controller/templates/scaffolds/show.rhtml
90
+ - lib/action_controller/templates/rescues/_request_and_response.erb
91
+ - lib/action_controller/templates/rescues/_trace.erb
92
+ - lib/action_controller/templates/rescues/diagnostics.erb
93
+ - lib/action_controller/templates/rescues/layout.erb
94
+ - lib/action_controller/templates/rescues/missing_template.erb
95
+ - lib/action_controller/templates/rescues/routing_error.erb
96
+ - lib/action_controller/templates/rescues/template_error.erb
97
+ - lib/action_controller/templates/rescues/unknown_action.erb
98
+ - lib/action_controller/test_case.rb
106
99
  - lib/action_controller/test_process.rb
107
100
  - lib/action_controller/url_rewriter.rb
108
101
  - lib/action_controller/vendor
@@ -110,10 +103,10 @@ files:
110
103
  - lib/action_controller/vendor/html-scanner/html
111
104
  - lib/action_controller/vendor/html-scanner/html/document.rb
112
105
  - lib/action_controller/vendor/html-scanner/html/node.rb
106
+ - lib/action_controller/vendor/html-scanner/html/sanitizer.rb
113
107
  - lib/action_controller/vendor/html-scanner/html/selector.rb
114
108
  - lib/action_controller/vendor/html-scanner/html/tokenizer.rb
115
109
  - lib/action_controller/vendor/html-scanner/html/version.rb
116
- - lib/action_controller/vendor/xml_node.rb
117
110
  - lib/action_controller/verification.rb
118
111
  - lib/action_controller.rb
119
112
  - lib/action_pack
@@ -125,16 +118,15 @@ files:
125
118
  - lib/action_view/helpers
126
119
  - lib/action_view/helpers/active_record_helper.rb
127
120
  - lib/action_view/helpers/asset_tag_helper.rb
121
+ - lib/action_view/helpers/atom_feed_helper.rb
128
122
  - lib/action_view/helpers/benchmark_helper.rb
129
123
  - lib/action_view/helpers/cache_helper.rb
130
124
  - lib/action_view/helpers/capture_helper.rb
131
125
  - lib/action_view/helpers/date_helper.rb
132
126
  - lib/action_view/helpers/debug_helper.rb
133
- - lib/action_view/helpers/deprecated_helper.rb
134
127
  - lib/action_view/helpers/form_helper.rb
135
128
  - lib/action_view/helpers/form_options_helper.rb
136
129
  - lib/action_view/helpers/form_tag_helper.rb
137
- - lib/action_view/helpers/java_script_macros_helper.rb
138
130
  - lib/action_view/helpers/javascript_helper.rb
139
131
  - lib/action_view/helpers/javascripts
140
132
  - lib/action_view/helpers/javascripts/controls.js
@@ -142,8 +134,10 @@ files:
142
134
  - lib/action_view/helpers/javascripts/effects.js
143
135
  - lib/action_view/helpers/javascripts/prototype.js
144
136
  - lib/action_view/helpers/number_helper.rb
145
- - lib/action_view/helpers/pagination_helper.rb
146
137
  - lib/action_view/helpers/prototype_helper.rb
138
+ - lib/action_view/helpers/record_identification_helper.rb
139
+ - lib/action_view/helpers/record_tag_helper.rb
140
+ - lib/action_view/helpers/sanitize_helper.rb
147
141
  - lib/action_view/helpers/scriptaculous_helper.rb
148
142
  - lib/action_view/helpers/tag_helper.rb
149
143
  - lib/action_view/helpers/text_helper.rb
@@ -151,12 +145,13 @@ files:
151
145
  - lib/action_view/partials.rb
152
146
  - lib/action_view/template_error.rb
153
147
  - lib/action_view.rb
148
+ - lib/actionpack.rb
154
149
  - test/abstract_unit.rb
150
+ - test/action_view_test.rb
155
151
  - test/active_record_unit.rb
156
152
  - test/activerecord
157
- - test/activerecord/active_record_assertions_test.rb
158
153
  - test/activerecord/active_record_store_test.rb
159
- - test/activerecord/pagination_test.rb
154
+ - test/activerecord/render_partial_with_record_identification_test.rb
160
155
  - test/controller
161
156
  - test/controller/action_pack_assertions_test.rb
162
157
  - test/controller/addresses_render_test.rb
@@ -181,37 +176,53 @@ files:
181
176
  - test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb
182
177
  - test/controller/cookie_test.rb
183
178
  - test/controller/custom_handler_test.rb
184
- - test/controller/deprecated_instance_variables_test.rb
185
179
  - test/controller/deprecation
186
180
  - test/controller/deprecation/deprecated_base_methods_test.rb
181
+ - test/controller/dispatcher_test.rb
187
182
  - test/controller/fake_controllers.rb
183
+ - test/controller/fake_models.rb
188
184
  - test/controller/filter_params_test.rb
189
185
  - test/controller/filters_test.rb
190
186
  - test/controller/flash_test.rb
191
187
  - test/controller/fragment_store_setting_test.rb
192
188
  - test/controller/helper_test.rb
189
+ - test/controller/html-scanner
190
+ - test/controller/html-scanner/document_test.rb
191
+ - test/controller/html-scanner/node_test.rb
192
+ - test/controller/html-scanner/sanitizer_test.rb
193
+ - test/controller/html-scanner/tag_node_test.rb
194
+ - test/controller/html-scanner/text_node_test.rb
195
+ - test/controller/html-scanner/tokenizer_test.rb
196
+ - test/controller/http_authentication_test.rb
193
197
  - test/controller/integration_test.rb
194
198
  - test/controller/layout_test.rb
195
199
  - test/controller/mime_responds_test.rb
196
200
  - test/controller/mime_type_test.rb
197
201
  - test/controller/new_render_test.rb
198
- - test/controller/raw_post_test.rb
202
+ - test/controller/polymorphic_routes_test.rb
203
+ - test/controller/record_identifier_test.rb
199
204
  - test/controller/redirect_test.rb
200
205
  - test/controller/render_test.rb
206
+ - test/controller/request_forgery_protection_test.rb
201
207
  - test/controller/request_test.rb
208
+ - test/controller/rescue_test.rb
202
209
  - test/controller/resources_test.rb
203
210
  - test/controller/routing_test.rb
204
211
  - test/controller/selector_test.rb
205
212
  - test/controller/send_file_test.rb
213
+ - test/controller/session
214
+ - test/controller/session/cookie_store_test.rb
215
+ - test/controller/session/mem_cache_store_test.rb
206
216
  - test/controller/session_fixation_test.rb
207
217
  - test/controller/session_management_test.rb
208
218
  - test/controller/test_test.rb
209
219
  - test/controller/url_rewriter_test.rb
210
220
  - test/controller/verification_test.rb
221
+ - test/controller/view_paths_test.rb
211
222
  - test/controller/webservice_test.rb
212
223
  - test/fixtures
213
224
  - test/fixtures/addresses
214
- - test/fixtures/addresses/list.rhtml
225
+ - test/fixtures/addresses/list.erb
215
226
  - test/fixtures/companies.yml
216
227
  - test/fixtures/company.rb
217
228
  - test/fixtures/content_type
@@ -221,143 +232,160 @@ files:
221
232
  - test/fixtures/content_type/render_default_for_rxml.rxml
222
233
  - test/fixtures/db_definitions
223
234
  - test/fixtures/db_definitions/sqlite.sql
224
- - test/fixtures/deprecated_instance_variables
225
- - test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml
226
- - test/fixtures/deprecated_instance_variables/_cookies_method.rhtml
227
- - test/fixtures/deprecated_instance_variables/_flash_ivar.rhtml
228
- - test/fixtures/deprecated_instance_variables/_flash_method.rhtml
229
- - test/fixtures/deprecated_instance_variables/_headers_ivar.rhtml
230
- - test/fixtures/deprecated_instance_variables/_headers_method.rhtml
231
- - test/fixtures/deprecated_instance_variables/_params_ivar.rhtml
232
- - test/fixtures/deprecated_instance_variables/_params_method.rhtml
233
- - test/fixtures/deprecated_instance_variables/_request_ivar.rhtml
234
- - test/fixtures/deprecated_instance_variables/_request_method.rhtml
235
- - test/fixtures/deprecated_instance_variables/_response_ivar.rhtml
236
- - test/fixtures/deprecated_instance_variables/_response_method.rhtml
237
- - test/fixtures/deprecated_instance_variables/_session_ivar.rhtml
238
- - test/fixtures/deprecated_instance_variables/_session_method.rhtml
239
235
  - test/fixtures/developer.rb
240
236
  - test/fixtures/developers.yml
241
237
  - test/fixtures/developers_projects.yml
242
238
  - test/fixtures/fun
243
239
  - test/fixtures/fun/games
244
- - test/fixtures/fun/games/hello_world.rhtml
240
+ - test/fixtures/fun/games/hello_world.erb
245
241
  - test/fixtures/helpers
246
242
  - test/fixtures/helpers/abc_helper.rb
247
243
  - test/fixtures/helpers/fun
248
244
  - test/fixtures/helpers/fun/games_helper.rb
249
245
  - test/fixtures/helpers/fun/pdf_helper.rb
250
246
  - test/fixtures/layout_tests
247
+ - test/fixtures/layout_tests/alt
248
+ - test/fixtures/layout_tests/alt/hello.rhtml
251
249
  - test/fixtures/layout_tests/layouts
252
250
  - test/fixtures/layout_tests/layouts/controller_name_space
253
251
  - test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml
254
252
  - test/fixtures/layout_tests/layouts/item.rhtml
255
253
  - test/fixtures/layout_tests/layouts/layout_test.rhtml
254
+ - test/fixtures/layout_tests/layouts/multiple_extensions.html.erb
256
255
  - test/fixtures/layout_tests/layouts/third_party_template_library.mab
257
256
  - test/fixtures/layout_tests/views
258
257
  - test/fixtures/layout_tests/views/hello.rhtml
259
258
  - test/fixtures/layouts
260
- - test/fixtures/layouts/builder.rxml
261
- - test/fixtures/layouts/standard.rhtml
262
- - test/fixtures/layouts/talk_from_action.rhtml
263
- - test/fixtures/layouts/yield.rhtml
259
+ - test/fixtures/layouts/builder.builder
260
+ - test/fixtures/layouts/standard.erb
261
+ - test/fixtures/layouts/talk_from_action.erb
262
+ - test/fixtures/layouts/yield.erb
264
263
  - test/fixtures/multipart
265
264
  - test/fixtures/multipart/binary_file
265
+ - test/fixtures/multipart/bracketed_param
266
266
  - test/fixtures/multipart/large_text_file
267
267
  - test/fixtures/multipart/mixed_files
268
268
  - test/fixtures/multipart/mona_lisa.jpg
269
269
  - test/fixtures/multipart/single_parameter
270
270
  - test/fixtures/multipart/text_file
271
+ - test/fixtures/override
272
+ - test/fixtures/override/test
273
+ - test/fixtures/override/test/hello_world.erb
274
+ - test/fixtures/override2
275
+ - test/fixtures/override2/layouts
276
+ - test/fixtures/override2/layouts/test
277
+ - test/fixtures/override2/layouts/test/sub.erb
278
+ - test/fixtures/post_test
279
+ - test/fixtures/post_test/layouts
280
+ - test/fixtures/post_test/layouts/post.html.erb
281
+ - test/fixtures/post_test/layouts/super_post.iphone.erb
282
+ - test/fixtures/post_test/post
283
+ - test/fixtures/post_test/post/index.html.erb
284
+ - test/fixtures/post_test/post/index.iphone.erb
285
+ - test/fixtures/post_test/super_post
286
+ - test/fixtures/post_test/super_post/index.html.erb
287
+ - test/fixtures/post_test/super_post/index.iphone.erb
271
288
  - test/fixtures/project.rb
272
289
  - test/fixtures/projects.yml
273
290
  - test/fixtures/public
291
+ - test/fixtures/public/404.html
292
+ - test/fixtures/public/500.html
274
293
  - test/fixtures/public/images
275
294
  - test/fixtures/public/images/rails.png
276
295
  - test/fixtures/public/javascripts
277
296
  - test/fixtures/public/javascripts/application.js
297
+ - test/fixtures/public/javascripts/bank.js
298
+ - test/fixtures/public/javascripts/cache
299
+ - test/fixtures/public/javascripts/robber.js
300
+ - test/fixtures/public/stylesheets
301
+ - test/fixtures/public/stylesheets/bank.css
302
+ - test/fixtures/public/stylesheets/robber.css
278
303
  - test/fixtures/replies.yml
279
304
  - test/fixtures/reply.rb
280
305
  - test/fixtures/respond_to
281
- - test/fixtures/respond_to/all_types_with_layout.rhtml
282
- - test/fixtures/respond_to/all_types_with_layout.rjs
306
+ - test/fixtures/respond_to/all_types_with_layout.html.erb
307
+ - test/fixtures/respond_to/all_types_with_layout.js.rjs
308
+ - test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb
309
+ - test/fixtures/respond_to/iphone_with_html_response_type.html.erb
310
+ - test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb
283
311
  - test/fixtures/respond_to/layouts
284
- - test/fixtures/respond_to/layouts/standard.rhtml
285
- - test/fixtures/respond_to/using_defaults.rhtml
286
- - test/fixtures/respond_to/using_defaults.rjs
287
- - test/fixtures/respond_to/using_defaults.rxml
288
- - test/fixtures/respond_to/using_defaults_with_type_list.rhtml
289
- - test/fixtures/respond_to/using_defaults_with_type_list.rjs
290
- - test/fixtures/respond_to/using_defaults_with_type_list.rxml
312
+ - test/fixtures/respond_to/layouts/missing.html.erb
313
+ - test/fixtures/respond_to/layouts/standard.html.erb
314
+ - test/fixtures/respond_to/layouts/standard.iphone.erb
315
+ - test/fixtures/respond_to/using_defaults.html.erb
316
+ - test/fixtures/respond_to/using_defaults.js.rjs
317
+ - test/fixtures/respond_to/using_defaults.xml.builder
318
+ - test/fixtures/respond_to/using_defaults_with_type_list.html.erb
319
+ - test/fixtures/respond_to/using_defaults_with_type_list.js.rjs
320
+ - test/fixtures/respond_to/using_defaults_with_type_list.xml.builder
291
321
  - test/fixtures/scope
292
322
  - test/fixtures/scope/test
293
- - test/fixtures/scope/test/modgreet.rhtml
323
+ - test/fixtures/scope/test/modgreet.erb
294
324
  - test/fixtures/test
295
- - test/fixtures/test/_customer.rhtml
296
- - test/fixtures/test/_customer_greeting.rhtml
297
- - test/fixtures/test/_hash_object.rhtml
298
- - test/fixtures/test/_hello.rxml
299
- - test/fixtures/test/_partial_only.rhtml
300
- - test/fixtures/test/_person.rhtml
301
- - test/fixtures/test/action_talk_to_layout.rhtml
302
- - test/fixtures/test/block_content_for.rhtml
303
- - test/fixtures/test/capturing.rhtml
304
- - test/fixtures/test/content_for.rhtml
325
+ - test/fixtures/test/_customer.erb
326
+ - test/fixtures/test/_customer_greeting.erb
327
+ - test/fixtures/test/_hash_greeting.erb
328
+ - test/fixtures/test/_hash_object.erb
329
+ - test/fixtures/test/_hello.builder
330
+ - test/fixtures/test/_layout_for_partial.html.erb
331
+ - test/fixtures/test/_partial.erb
332
+ - test/fixtures/test/_partial.html.erb
333
+ - test/fixtures/test/_partial.js.erb
334
+ - test/fixtures/test/_partial_for_use_in_layout.html.erb
335
+ - test/fixtures/test/_partial_only.erb
336
+ - test/fixtures/test/_person.erb
337
+ - test/fixtures/test/action_talk_to_layout.erb
338
+ - test/fixtures/test/block_content_for.erb
339
+ - test/fixtures/test/calling_partial_with_layout.html.erb
340
+ - test/fixtures/test/capturing.erb
341
+ - test/fixtures/test/content_for.erb
342
+ - test/fixtures/test/content_for_concatenated.erb
343
+ - test/fixtures/test/content_for_with_parameter.erb
305
344
  - test/fixtures/test/delete_with_js.rjs
306
345
  - test/fixtures/test/dot.directory
307
- - test/fixtures/test/dot.directory/render_file_with_ivar.rhtml
346
+ - test/fixtures/test/dot.directory/render_file_with_ivar.erb
308
347
  - test/fixtures/test/enum_rjs_test.rjs
309
- - test/fixtures/test/erb_content_for.rhtml
310
- - test/fixtures/test/greeting.rhtml
311
- - test/fixtures/test/hello.rxml
312
- - test/fixtures/test/hello_world.rhtml
313
- - test/fixtures/test/hello_world.rxml
314
- - test/fixtures/test/hello_world_container.rxml
315
- - test/fixtures/test/hello_world_with_layout_false.rhtml
316
- - test/fixtures/test/hello_xml_world.rxml
317
- - test/fixtures/test/list.rhtml
318
- - test/fixtures/test/non_erb_block_content_for.rxml
319
- - test/fixtures/test/potential_conflicts.rhtml
320
- - test/fixtures/test/render_file_with_ivar.rhtml
321
- - test/fixtures/test/render_file_with_locals.rhtml
322
- - test/fixtures/test/render_to_string_test.rhtml
323
- - test/fixtures/test/update_element_with_capture.rhtml
348
+ - test/fixtures/test/erb_content_for.erb
349
+ - test/fixtures/test/formatted_html_erb.html.erb
350
+ - test/fixtures/test/formatted_xml_erb.builder
351
+ - test/fixtures/test/formatted_xml_erb.html.erb
352
+ - test/fixtures/test/formatted_xml_erb.xml.erb
353
+ - test/fixtures/test/greeting.erb
354
+ - test/fixtures/test/hello.builder
355
+ - test/fixtures/test/hello_world.builder
356
+ - test/fixtures/test/hello_world.erb
357
+ - test/fixtures/test/hello_world_container.builder
358
+ - test/fixtures/test/hello_world_with_layout_false.erb
359
+ - test/fixtures/test/hello_xml_world.builder
360
+ - test/fixtures/test/list.erb
361
+ - test/fixtures/test/non_erb_block_content_for.builder
362
+ - test/fixtures/test/potential_conflicts.erb
363
+ - test/fixtures/test/render_file_with_ivar.erb
364
+ - test/fixtures/test/render_file_with_locals.erb
365
+ - test/fixtures/test/render_to_string_test.erb
366
+ - test/fixtures/test/update_element_with_capture.erb
367
+ - test/fixtures/test/using_layout_around_block.html.erb
324
368
  - test/fixtures/topic.rb
325
369
  - test/fixtures/topics.yml
326
370
  - test/template
327
371
  - test/template/active_record_helper_test.rb
328
372
  - test/template/asset_tag_helper_test.rb
373
+ - test/template/atom_feed_helper_test.rb
329
374
  - test/template/benchmark_helper_test.rb
330
375
  - test/template/compiled_templates_test.rb
331
376
  - test/template/date_helper_test.rb
332
- - test/template/deprecated_helper_test.rb
333
- - test/template/deprecated_instance_variables_test.rb
334
377
  - test/template/form_helper_test.rb
335
378
  - test/template/form_options_helper_test.rb
336
379
  - test/template/form_tag_helper_test.rb
337
- - test/template/java_script_macros_helper_test.rb
338
380
  - test/template/javascript_helper_test.rb
339
381
  - test/template/number_helper_test.rb
340
382
  - test/template/prototype_helper_test.rb
383
+ - test/template/sanitize_helper_test.rb
341
384
  - test/template/scriptaculous_helper_test.rb
342
385
  - test/template/tag_helper_test.rb
343
386
  - test/template/text_helper_test.rb
344
387
  - test/template/url_helper_test.rb
345
388
  - test/testing_sandbox.rb
346
- - examples/address_book
347
- - examples/address_book/index.rhtml
348
- - examples/address_book/layout.rhtml
349
- - examples/address_book_controller.cgi
350
- - examples/address_book_controller.fcgi
351
- - examples/address_book_controller.rb
352
- - examples/address_book_controller.rbx
353
- - examples/benchmark.rb
354
- - examples/benchmark_with_ar.fcgi
355
- - examples/blog_controller.cgi
356
- - examples/debate
357
- - examples/debate/index.rhtml
358
- - examples/debate/new_topic.rhtml
359
- - examples/debate/topic.rhtml
360
- - examples/debate_controller.cgi
361
389
  test_files: []
362
390
 
363
391
  rdoc_options: []
@@ -378,5 +406,5 @@ dependencies:
378
406
  requirements:
379
407
  - - "="
380
408
  - !ruby/object:Gem::Version
381
- version: 1.4.4
409
+ version: 2.0.0
382
410
  version: