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.
- data/CHANGELOG +1400 -20
- data/MIT-LICENSE +1 -1
- data/README +5 -5
- data/RUNNING_UNIT_TESTS +4 -5
- data/Rakefile +5 -6
- data/install.rb +2 -2
- data/lib/action_controller.rb +11 -15
- data/lib/action_controller/assertions.rb +12 -25
- data/lib/action_controller/assertions/dom_assertions.rb +18 -4
- data/lib/action_controller/assertions/model_assertions.rb +8 -1
- data/lib/action_controller/assertions/response_assertions.rb +35 -12
- data/lib/action_controller/assertions/routing_assertions.rb +56 -12
- data/lib/action_controller/assertions/selector_assertions.rb +105 -38
- data/lib/action_controller/assertions/tag_assertions.rb +28 -15
- data/lib/action_controller/base.rb +318 -250
- data/lib/action_controller/benchmarking.rb +33 -29
- data/lib/action_controller/caching.rb +130 -64
- data/lib/action_controller/cgi_ext.rb +16 -0
- data/lib/action_controller/cgi_ext/{cookie_performance_fix.rb → cookie.rb} +25 -40
- data/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/lib/action_controller/cgi_ext/session.rb +73 -0
- data/lib/action_controller/cgi_ext/stdinput.rb +23 -0
- data/lib/action_controller/cgi_process.rb +34 -57
- data/lib/action_controller/components.rb +19 -36
- data/lib/action_controller/cookies.rb +10 -9
- data/lib/action_controller/dispatcher.rb +195 -0
- data/lib/action_controller/filters.rb +35 -34
- data/lib/action_controller/flash.rb +30 -35
- data/lib/action_controller/helpers.rb +121 -47
- data/lib/action_controller/http_authentication.rb +126 -0
- data/lib/action_controller/integration.rb +105 -101
- data/lib/action_controller/layout.rb +59 -47
- data/lib/action_controller/mime_responds.rb +57 -68
- data/lib/action_controller/mime_type.rb +43 -80
- data/lib/action_controller/mime_types.rb +20 -0
- data/lib/action_controller/polymorphic_routes.rb +88 -0
- data/lib/action_controller/record_identifier.rb +91 -0
- data/lib/action_controller/request.rb +553 -88
- data/lib/action_controller/request_forgery_protection.rb +126 -0
- data/lib/action_controller/request_profiler.rb +138 -0
- data/lib/action_controller/rescue.rb +185 -69
- data/lib/action_controller/resources.rb +211 -172
- data/lib/action_controller/response.rb +49 -8
- data/lib/action_controller/routing.rb +359 -236
- data/lib/action_controller/routing_optimisation.rb +119 -0
- data/lib/action_controller/session/active_record_store.rb +3 -2
- data/lib/action_controller/session/cookie_store.rb +161 -0
- data/lib/action_controller/session/mem_cache_store.rb +9 -16
- data/lib/action_controller/session_management.rb +17 -8
- data/lib/action_controller/streaming.rb +6 -3
- data/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
- data/lib/action_controller/templates/rescues/{_trace.rhtml → _trace.erb} +0 -0
- data/lib/action_controller/templates/rescues/{diagnostics.rhtml → diagnostics.erb} +2 -2
- data/lib/action_controller/templates/rescues/{layout.rhtml → layout.erb} +0 -0
- data/lib/action_controller/templates/rescues/{missing_template.rhtml → missing_template.erb} +0 -0
- data/lib/action_controller/templates/rescues/{routing_error.rhtml → routing_error.erb} +0 -0
- data/lib/action_controller/templates/rescues/{template_error.rhtml → template_error.erb} +2 -2
- data/lib/action_controller/templates/rescues/{unknown_action.rhtml → unknown_action.erb} +0 -0
- data/lib/action_controller/test_case.rb +53 -0
- data/lib/action_controller/test_process.rb +59 -46
- data/lib/action_controller/url_rewriter.rb +48 -24
- data/lib/action_controller/vendor/html-scanner/html/document.rb +7 -4
- data/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
- data/lib/action_controller/vendor/html-scanner/html/selector.rb +11 -6
- data/lib/action_controller/verification.rb +27 -21
- data/lib/action_pack.rb +1 -1
- data/lib/action_pack/version.rb +4 -4
- data/lib/action_view.rb +2 -3
- data/lib/action_view/base.rb +218 -63
- data/lib/action_view/compiled_templates.rb +1 -2
- data/lib/action_view/helpers/active_record_helper.rb +35 -17
- data/lib/action_view/helpers/asset_tag_helper.rb +395 -87
- data/lib/action_view/helpers/atom_feed_helper.rb +111 -0
- data/lib/action_view/helpers/benchmark_helper.rb +12 -5
- data/lib/action_view/helpers/cache_helper.rb +29 -0
- data/lib/action_view/helpers/capture_helper.rb +97 -63
- data/lib/action_view/helpers/date_helper.rb +295 -35
- data/lib/action_view/helpers/debug_helper.rb +6 -2
- data/lib/action_view/helpers/form_helper.rb +354 -111
- data/lib/action_view/helpers/form_options_helper.rb +171 -109
- data/lib/action_view/helpers/form_tag_helper.rb +332 -76
- data/lib/action_view/helpers/javascript_helper.rb +35 -11
- data/lib/action_view/helpers/javascripts/controls.js +484 -354
- data/lib/action_view/helpers/javascripts/dragdrop.js +88 -58
- data/lib/action_view/helpers/javascripts/effects.js +396 -364
- data/lib/action_view/helpers/javascripts/prototype.js +2817 -1107
- data/lib/action_view/helpers/number_helper.rb +84 -60
- data/lib/action_view/helpers/prototype_helper.rb +419 -43
- data/lib/action_view/helpers/record_identification_helper.rb +20 -0
- data/lib/action_view/helpers/record_tag_helper.rb +59 -0
- data/lib/action_view/helpers/sanitize_helper.rb +223 -0
- data/lib/action_view/helpers/scriptaculous_helper.rb +63 -4
- data/lib/action_view/helpers/tag_helper.rb +69 -39
- data/lib/action_view/helpers/text_helper.rb +221 -148
- data/lib/action_view/helpers/url_helper.rb +283 -165
- data/lib/action_view/partials.rb +134 -62
- data/lib/action_view/template_error.rb +4 -12
- data/lib/actionpack.rb +1 -0
- data/test/abstract_unit.rb +21 -1
- data/test/action_view_test.rb +26 -0
- data/test/active_record_unit.rb +12 -20
- data/test/activerecord/active_record_store_test.rb +2 -2
- data/test/activerecord/render_partial_with_record_identification_test.rb +74 -0
- data/test/controller/action_pack_assertions_test.rb +21 -152
- data/test/controller/addresses_render_test.rb +2 -7
- data/test/controller/assert_select_test.rb +120 -14
- data/test/controller/base_test.rb +11 -13
- data/test/controller/caching_test.rb +125 -5
- data/test/controller/capture_test.rb +23 -16
- data/test/controller/cgi_test.rb +66 -391
- data/test/controller/components_test.rb +31 -42
- data/test/controller/content_type_test.rb +1 -1
- data/test/controller/cookie_test.rb +42 -14
- data/test/controller/deprecation/deprecated_base_methods_test.rb +1 -42
- data/test/controller/dispatcher_test.rb +123 -0
- data/test/controller/fake_models.rb +5 -0
- data/test/controller/filters_test.rb +44 -7
- data/test/controller/flash_test.rb +46 -2
- data/test/controller/fragment_store_setting_test.rb +10 -8
- data/test/controller/helper_test.rb +19 -2
- data/test/controller/html-scanner/document_test.rb +124 -0
- data/test/controller/html-scanner/node_test.rb +69 -0
- data/test/controller/html-scanner/sanitizer_test.rb +250 -0
- data/test/controller/html-scanner/tag_node_test.rb +239 -0
- data/test/controller/html-scanner/text_node_test.rb +51 -0
- data/test/controller/html-scanner/tokenizer_test.rb +125 -0
- data/test/controller/http_authentication_test.rb +54 -0
- data/test/controller/integration_test.rb +12 -26
- data/test/controller/layout_test.rb +64 -12
- data/test/controller/mime_responds_test.rb +193 -38
- data/test/controller/mime_type_test.rb +30 -8
- data/test/controller/new_render_test.rb +104 -22
- data/test/controller/polymorphic_routes_test.rb +98 -0
- data/test/controller/record_identifier_test.rb +103 -0
- data/test/controller/redirect_test.rb +120 -18
- data/test/controller/render_test.rb +195 -45
- data/test/controller/request_forgery_protection_test.rb +217 -0
- data/test/controller/request_test.rb +545 -27
- data/test/controller/rescue_test.rb +501 -0
- data/test/controller/resources_test.rb +258 -132
- data/test/controller/routing_test.rb +502 -106
- data/test/controller/selector_test.rb +5 -5
- data/test/controller/send_file_test.rb +17 -7
- data/test/controller/session/cookie_store_test.rb +246 -0
- data/test/controller/session/mem_cache_store_test.rb +182 -0
- data/test/controller/session_fixation_test.rb +8 -11
- data/test/controller/session_management_test.rb +7 -7
- data/test/controller/test_test.rb +150 -38
- data/test/controller/url_rewriter_test.rb +87 -12
- data/test/controller/verification_test.rb +11 -0
- data/test/controller/view_paths_test.rb +137 -0
- data/test/controller/webservice_test.rb +11 -75
- data/test/fixtures/addresses/{list.rhtml → list.erb} +0 -0
- data/test/fixtures/db_definitions/sqlite.sql +2 -1
- data/test/fixtures/developer.rb +2 -0
- data/test/fixtures/fun/games/{hello_world.rhtml → hello_world.erb} +0 -0
- data/test/fixtures/helpers/fun/pdf_helper.rb +1 -1
- data/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/test/fixtures/layouts/{builder.rxml → builder.builder} +0 -0
- data/test/fixtures/layouts/{standard.rhtml → standard.erb} +0 -0
- data/test/fixtures/layouts/{talk_from_action.rhtml → talk_from_action.erb} +0 -0
- data/test/fixtures/layouts/{yield.rhtml → yield.erb} +0 -0
- data/test/fixtures/multipart/binary_file +0 -0
- data/test/fixtures/multipart/bracketed_param +5 -0
- data/test/fixtures/override/test/hello_world.erb +1 -0
- data/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/test/fixtures/post_test/post/index.html.erb +1 -0
- data/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/test/fixtures/public/404.html +1 -0
- data/test/fixtures/public/500.html +1 -0
- data/test/fixtures/public/javascripts/application.js +0 -1
- data/test/fixtures/public/javascripts/bank.js +1 -0
- data/test/fixtures/public/javascripts/robber.js +1 -0
- data/test/fixtures/public/stylesheets/bank.css +1 -0
- data/test/fixtures/public/stylesheets/robber.css +1 -0
- data/test/fixtures/replies.yml +2 -0
- data/test/fixtures/reply.rb +2 -1
- data/test/fixtures/respond_to/{all_types_with_layout.rhtml → all_types_with_layout.html.erb} +0 -0
- data/test/fixtures/respond_to/{all_types_with_layout.rjs → all_types_with_layout.js.rjs} +0 -0
- data/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/test/fixtures/respond_to/{using_defaults.rhtml → using_defaults.html.erb} +0 -0
- data/test/fixtures/respond_to/{using_defaults.rjs → using_defaults.js.rjs} +0 -0
- data/test/fixtures/respond_to/{using_defaults.rxml → using_defaults.xml.builder} +0 -0
- data/test/fixtures/respond_to/{using_defaults_with_type_list.rhtml → using_defaults_with_type_list.html.erb} +0 -0
- data/test/fixtures/respond_to/{using_defaults_with_type_list.rjs → using_defaults_with_type_list.js.rjs} +0 -0
- data/test/fixtures/respond_to/{using_defaults_with_type_list.rxml → using_defaults_with_type_list.xml.builder} +0 -0
- data/test/fixtures/scope/test/{modgreet.rhtml → modgreet.erb} +0 -0
- data/test/fixtures/test/{_customer.rhtml → _customer.erb} +0 -0
- data/test/fixtures/test/{_customer_greeting.rhtml → _customer_greeting.erb} +0 -0
- data/test/fixtures/test/_hash_greeting.erb +1 -0
- data/test/fixtures/test/_hash_object.erb +2 -0
- data/test/fixtures/test/{_hello.rxml → _hello.builder} +0 -0
- data/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/test/fixtures/test/_partial.erb +1 -0
- data/test/fixtures/test/_partial.html.erb +1 -0
- data/test/fixtures/test/_partial.js.erb +1 -0
- data/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/test/fixtures/test/{_partial_only.rhtml → _partial_only.erb} +0 -0
- data/test/fixtures/test/{_person.rhtml → _person.erb} +0 -0
- data/test/fixtures/test/{action_talk_to_layout.rhtml → action_talk_to_layout.erb} +0 -0
- data/test/fixtures/test/{block_content_for.rhtml → block_content_for.erb} +0 -0
- data/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/test/fixtures/test/{capturing.rhtml → capturing.erb} +0 -0
- data/test/fixtures/test/{content_for.rhtml → content_for.erb} +0 -0
- data/test/fixtures/test/content_for_concatenated.erb +3 -0
- data/test/fixtures/test/content_for_with_parameter.erb +2 -0
- data/test/fixtures/test/dot.directory/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
- data/test/fixtures/test/{erb_content_for.rhtml → erb_content_for.erb} +0 -0
- data/test/fixtures/test/formatted_html_erb.html.erb +1 -0
- data/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/test/fixtures/test/{greeting.rhtml → greeting.erb} +0 -0
- data/test/fixtures/test/{hello.rxml → hello.builder} +0 -0
- data/test/fixtures/test/{hello_world.rxml → hello_world.builder} +0 -0
- data/test/fixtures/test/{hello_world.rhtml → hello_world.erb} +0 -0
- data/test/fixtures/test/{hello_world_container.rxml → hello_world_container.builder} +0 -0
- data/test/fixtures/test/{hello_world_with_layout_false.rhtml → hello_world_with_layout_false.erb} +0 -0
- data/test/fixtures/test/{hello_xml_world.rxml → hello_xml_world.builder} +0 -0
- data/test/fixtures/test/list.erb +1 -0
- data/test/fixtures/test/{non_erb_block_content_for.rxml → non_erb_block_content_for.builder} +0 -0
- data/test/fixtures/test/{potential_conflicts.rhtml → potential_conflicts.erb} +0 -0
- data/test/fixtures/test/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
- data/test/fixtures/test/{render_file_with_locals.rhtml → render_file_with_locals.erb} +0 -0
- data/test/fixtures/test/{render_to_string_test.rhtml → render_to_string_test.erb} +0 -0
- data/test/fixtures/test/{update_element_with_capture.rhtml → update_element_with_capture.erb} +0 -0
- data/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/test/fixtures/topic.rb +1 -1
- data/test/template/active_record_helper_test.rb +67 -20
- data/test/template/asset_tag_helper_test.rb +222 -54
- data/test/template/atom_feed_helper_test.rb +101 -0
- data/test/template/benchmark_helper_test.rb +2 -2
- data/test/template/compiled_templates_test.rb +76 -32
- data/test/template/date_helper_test.rb +125 -9
- data/test/template/form_helper_test.rb +326 -33
- data/test/template/form_options_helper_test.rb +822 -15
- data/test/template/form_tag_helper_test.rb +96 -30
- data/test/template/javascript_helper_test.rb +61 -13
- data/test/template/number_helper_test.rb +12 -11
- data/test/template/prototype_helper_test.rb +185 -24
- data/test/template/sanitize_helper_test.rb +49 -0
- data/test/template/scriptaculous_helper_test.rb +9 -3
- data/test/template/tag_helper_test.rb +13 -2
- data/test/template/text_helper_test.rb +38 -52
- data/test/template/url_helper_test.rb +216 -46
- metadata +144 -116
- data/examples/.htaccess +0 -24
- data/examples/address_book/index.rhtml +0 -33
- data/examples/address_book/layout.rhtml +0 -8
- data/examples/address_book_controller.cgi +0 -9
- data/examples/address_book_controller.fcgi +0 -6
- data/examples/address_book_controller.rb +0 -52
- data/examples/address_book_controller.rbx +0 -4
- data/examples/benchmark.rb +0 -52
- data/examples/benchmark_with_ar.fcgi +0 -89
- data/examples/blog_controller.cgi +0 -53
- data/examples/debate/index.rhtml +0 -14
- data/examples/debate/new_topic.rhtml +0 -22
- data/examples/debate/topic.rhtml +0 -32
- data/examples/debate_controller.cgi +0 -57
- data/lib/action_controller/assertions/deprecated_assertions.rb +0 -228
- data/lib/action_controller/cgi_ext/cgi_ext.rb +0 -36
- data/lib/action_controller/cgi_ext/cgi_methods.rb +0 -211
- data/lib/action_controller/cgi_ext/pstore_performance_fix.rb +0 -30
- data/lib/action_controller/cgi_ext/raw_post_data_fix.rb +0 -95
- data/lib/action_controller/cgi_ext/session_performance_fix.rb +0 -30
- data/lib/action_controller/deprecated_dependencies.rb +0 -65
- data/lib/action_controller/deprecated_redirects.rb +0 -17
- data/lib/action_controller/deprecated_request_methods.rb +0 -34
- data/lib/action_controller/macros/auto_complete.rb +0 -53
- data/lib/action_controller/macros/in_place_editing.rb +0 -33
- data/lib/action_controller/pagination.rb +0 -408
- data/lib/action_controller/scaffolding.rb +0 -189
- data/lib/action_controller/templates/rescues/_request_and_response.rhtml +0 -44
- data/lib/action_controller/templates/scaffolds/edit.rhtml +0 -7
- data/lib/action_controller/templates/scaffolds/layout.rhtml +0 -69
- data/lib/action_controller/templates/scaffolds/list.rhtml +0 -27
- data/lib/action_controller/templates/scaffolds/new.rhtml +0 -6
- data/lib/action_controller/templates/scaffolds/show.rhtml +0 -9
- data/lib/action_controller/vendor/xml_node.rb +0 -97
- data/lib/action_view/helpers/deprecated_helper.rb +0 -37
- data/lib/action_view/helpers/java_script_macros_helper.rb +0 -233
- data/lib/action_view/helpers/pagination_helper.rb +0 -86
- data/test/activerecord/active_record_assertions_test.rb +0 -92
- data/test/activerecord/pagination_test.rb +0 -165
- data/test/controller/deprecated_instance_variables_test.rb +0 -48
- data/test/controller/raw_post_test.rb +0 -68
- data/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_flash_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_flash_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_headers_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_headers_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_params_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_params_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_request_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_response_method.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_session_ivar.rhtml +0 -1
- data/test/fixtures/deprecated_instance_variables/_session_method.rhtml +0 -1
- data/test/fixtures/respond_to/layouts/standard.rhtml +0 -1
- data/test/fixtures/test/_hash_object.rhtml +0 -1
- data/test/fixtures/test/list.rhtml +0 -1
- data/test/template/deprecated_helper_test.rb +0 -36
- data/test/template/deprecated_instance_variables_test.rb +0 -43
- 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:
|
7
|
-
date: 2007-
|
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/
|
54
|
-
- lib/action_controller/cgi_ext/
|
55
|
-
- lib/action_controller/cgi_ext/
|
56
|
-
- lib/action_controller/cgi_ext/
|
57
|
-
- lib/action_controller/cgi_ext
|
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/
|
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/
|
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/
|
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.
|
93
|
-
- lib/action_controller/templates/rescues/_trace.
|
94
|
-
- lib/action_controller/templates/rescues/diagnostics.
|
95
|
-
- lib/action_controller/templates/rescues/layout.
|
96
|
-
- lib/action_controller/templates/rescues/missing_template.
|
97
|
-
- lib/action_controller/templates/rescues/routing_error.
|
98
|
-
- lib/action_controller/templates/rescues/template_error.
|
99
|
-
- lib/action_controller/templates/rescues/unknown_action.
|
100
|
-
- lib/action_controller/
|
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/
|
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/
|
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.
|
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.
|
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.
|
261
|
-
- test/fixtures/layouts/standard.
|
262
|
-
- test/fixtures/layouts/talk_from_action.
|
263
|
-
- test/fixtures/layouts/yield.
|
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.
|
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/
|
285
|
-
- test/fixtures/respond_to/
|
286
|
-
- test/fixtures/respond_to/
|
287
|
-
- test/fixtures/respond_to/using_defaults.
|
288
|
-
- test/fixtures/respond_to/
|
289
|
-
- test/fixtures/respond_to/
|
290
|
-
- test/fixtures/respond_to/using_defaults_with_type_list.
|
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.
|
323
|
+
- test/fixtures/scope/test/modgreet.erb
|
294
324
|
- test/fixtures/test
|
295
|
-
- test/fixtures/test/_customer.
|
296
|
-
- test/fixtures/test/_customer_greeting.
|
297
|
-
- test/fixtures/test/
|
298
|
-
- test/fixtures/test/
|
299
|
-
- test/fixtures/test/
|
300
|
-
- test/fixtures/test/
|
301
|
-
- test/fixtures/test/
|
302
|
-
- test/fixtures/test/
|
303
|
-
- test/fixtures/test/
|
304
|
-
- test/fixtures/test/
|
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.
|
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.
|
310
|
-
- test/fixtures/test/
|
311
|
-
- test/fixtures/test/
|
312
|
-
- test/fixtures/test/
|
313
|
-
- test/fixtures/test/
|
314
|
-
- test/fixtures/test/
|
315
|
-
- test/fixtures/test/
|
316
|
-
- test/fixtures/test/
|
317
|
-
- test/fixtures/test/
|
318
|
-
- test/fixtures/test/
|
319
|
-
- test/fixtures/test/
|
320
|
-
- test/fixtures/test/
|
321
|
-
- test/fixtures/test/
|
322
|
-
- test/fixtures/test/
|
323
|
-
- test/fixtures/test/
|
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:
|
409
|
+
version: 2.0.0
|
382
410
|
version:
|