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.
- data/CHANGELOG +38 -0
- data/Rakefile +57 -228
- data/bin/merb +11 -2
- data/lib/merb-core/bootloader.rb +112 -72
- data/lib/merb-core/config.rb +4 -1
- data/lib/merb-core/controller/abstract_controller.rb +7 -1
- data/lib/merb-core/controller/merb_controller.rb +34 -1
- data/lib/merb-core/controller/mixins/controller.rb +50 -4
- data/lib/merb-core/controller/mixins/responder.rb +1 -1
- data/lib/merb-core/controller/template.rb +2 -2
- data/lib/merb-core/core_ext/kernel.rb +19 -234
- data/lib/merb-core/core_ext/time.rb +7 -0
- data/lib/merb-core/core_ext.rb +2 -1
- data/lib/merb-core/dispatch/cookies.rb +4 -1
- data/lib/merb-core/dispatch/default_exception/default_exception.rb +3 -3
- data/lib/merb-core/dispatch/dispatcher.rb +19 -23
- data/lib/merb-core/dispatch/request.rb +25 -4
- data/lib/merb-core/dispatch/request_parsers.rb +18 -5
- data/lib/merb-core/dispatch/router/behavior.rb +5 -2
- data/lib/merb-core/dispatch/router/resources.rb +21 -21
- data/lib/merb-core/dispatch/router/route.rb +2 -4
- data/lib/merb-core/dispatch/router.rb +1 -1
- data/lib/merb-core/dispatch/session.rb +9 -2
- data/lib/merb-core/dispatch/worker.rb +24 -1
- data/lib/merb-core/gem_ext/gem_dependency.rb +13 -0
- data/lib/merb-core/logger.rb +2 -2
- data/lib/merb-core/rack/adapter/abstract.rb +6 -4
- data/lib/merb-core/rack/adapter/irb.rb +43 -1
- data/lib/merb-core/rack/adapter/runner.rb +16 -3
- data/lib/merb-core/rack/handler/mongrel.rb +1 -1
- data/lib/merb-core/rack/stream_wrapper.rb +2 -0
- data/lib/merb-core/tasks/merb.rb +1 -4
- data/lib/merb-core/tasks/stats.rake +9 -3
- data/lib/merb-core/test/helpers/cookie_jar.rb +5 -2
- data/lib/merb-core/test/helpers/mock_request_helper.rb +5 -0
- data/lib/merb-core/test/helpers/multipart_request_helper.rb +4 -4
- data/lib/merb-core/test/helpers/request_helper.rb +13 -2
- data/lib/merb-core/test/matchers.rb +2 -2
- data/lib/merb-core/test/run_spec.rb +7 -8
- data/lib/merb-core/test/run_specs.rb +8 -5
- data/lib/merb-core/test/test_ext/rspec.rb +3 -1
- data/lib/merb-core/version.rb +1 -3
- data/lib/merb-core.rb +11 -12
- data/spec/Gemfile +0 -0
- data/spec/private/core_ext/kernel_spec.rb +35 -0
- data/spec/private/dispatch/bootloader_spec.rb +29 -0
- data/spec/private/dispatch/fixture/app/controllers/application.rb +4 -0
- data/spec/private/dispatch/fixture/app/controllers/exceptions.rb +25 -0
- data/spec/private/dispatch/fixture/app/controllers/foo.rb +19 -0
- data/spec/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
- data/spec/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
- data/spec/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
- data/spec/private/dispatch/fixture/config/black_hole.rb +12 -0
- data/spec/private/dispatch/fixture/config/environments/development.rb +6 -0
- data/spec/private/dispatch/fixture/config/environments/production.rb +5 -0
- data/spec/private/dispatch/fixture/config/environments/test.rb +6 -0
- data/spec/private/dispatch/fixture/config/init.rb +45 -0
- data/spec/private/dispatch/fixture/config/rack.rb +11 -0
- data/spec/private/dispatch/fixture/config/router.rb +35 -0
- data/spec/private/dispatch/fixture/public/images/merb.jpg +0 -0
- data/spec/private/dispatch/fixture/public/merb.fcgi +4 -0
- data/spec/private/dispatch/fixture/public/stylesheets/master.css +119 -0
- data/spec/private/dispatch/spec_helper.rb +1 -0
- data/spec/public/DEFINITIONS +11 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/cousins.rb +60 -0
- data/spec/public/abstract_controller/controllers/display.rb +60 -0
- data/spec/public/abstract_controller/controllers/filters.rb +277 -0
- data/spec/public/abstract_controller/controllers/helpers.rb +47 -0
- data/spec/public/abstract_controller/controllers/partial.rb +161 -0
- data/spec/public/abstract_controller/controllers/render.rb +113 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture_eq/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture_non_string_return_value/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture_return_value/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/capture_with_args/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_two_append_contents/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial/_partial2.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/_collection.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/_ab.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/_variable.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_multiple_locals/_foo.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_absolute_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
- data/spec/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
- data/spec/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
- data/spec/public/abstract_controller/display_spec.rb +38 -0
- data/spec/public/abstract_controller/filter_spec.rb +151 -0
- data/spec/public/abstract_controller/helper_spec.rb +30 -0
- data/spec/public/abstract_controller/partial_spec.rb +85 -0
- data/spec/public/abstract_controller/render_spec.rb +91 -0
- data/spec/public/abstract_controller/spec_helper.rb +29 -0
- data/spec/public/boot_loader/boot_loader_spec.rb +41 -0
- data/spec/public/boot_loader/spec_helper.rb +1 -0
- data/spec/public/controller/authentication_spec.rb +174 -0
- data/spec/public/controller/base_spec.rb +96 -0
- data/spec/public/controller/conditional_get_spec.rb +101 -0
- data/spec/public/controller/config/init.rb +6 -0
- data/spec/public/controller/controllers/authentication.rb +74 -0
- data/spec/public/controller/controllers/base.rb +71 -0
- data/spec/public/controller/controllers/conditional_get.rb +35 -0
- data/spec/public/controller/controllers/cookies.rb +37 -0
- data/spec/public/controller/controllers/dispatcher.rb +35 -0
- data/spec/public/controller/controllers/display.rb +118 -0
- data/spec/public/controller/controllers/redirect.rb +60 -0
- data/spec/public/controller/controllers/responder.rb +93 -0
- data/spec/public/controller/controllers/streaming.rb +18 -0
- data/spec/public/controller/controllers/url.rb +42 -0
- data/spec/public/controller/controllers/views/layout/custom.html.erb +1 -0
- data/spec/public/controller/controllers/views/layout/custom_arg.html.erb +1 -0
- data/spec/public/controller/controllers/views/layout/custom_arg.json.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.xml.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/no_layout.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template_argument/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
- data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
- data/spec/public/controller/cookies_spec.rb +101 -0
- data/spec/public/controller/dispatcher_spec.rb +587 -0
- data/spec/public/controller/display_spec.rb +84 -0
- data/spec/public/controller/override_spec.rb +27 -0
- data/spec/public/controller/redirect_spec.rb +68 -0
- data/spec/public/controller/resource_spec.rb +364 -0
- data/spec/public/controller/responder_spec.rb +179 -0
- data/spec/public/controller/spec_helper.rb +15 -0
- data/spec/public/controller/streaming_spec.rb +40 -0
- data/spec/public/controller/url_spec.rb +365 -0
- data/spec/public/core/merb_core_spec.rb +62 -0
- data/spec/public/core_ext/kernel_spec.rb +40 -0
- data/spec/public/core_ext/spec_helper.rb +1 -0
- data/spec/public/directory_structure/directory/app/controllers/application.rb +3 -0
- data/spec/public/directory_structure/directory/app/controllers/base.rb +13 -0
- data/spec/public/directory_structure/directory/app/controllers/custom.rb +19 -0
- data/spec/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
- data/spec/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
- data/spec/public/directory_structure/directory/config/router.rb +3 -0
- data/spec/public/directory_structure/directory_spec.rb +43 -0
- data/spec/public/logger/logger_spec.rb +283 -0
- data/spec/public/logger/spec_helper.rb +1 -0
- data/spec/public/rack/conditinal_get_middleware_spec.rb +128 -0
- data/spec/public/rack/rack_middleware_spec.rb +101 -0
- data/spec/public/rack/shared_example_groups.rb +35 -0
- data/spec/public/request/multipart_spec.rb +72 -0
- data/spec/public/request/request_spec.rb +267 -0
- data/spec/public/router/behavior_spec.rb +74 -0
- data/spec/public/router/generation/conditions_spec.rb +143 -0
- data/spec/public/router/generation/default_route_spec.rb +32 -0
- data/spec/public/router/generation/defaults_spec.rb +20 -0
- data/spec/public/router/generation/identify_spec.rb +163 -0
- data/spec/public/router/generation/namespace_spec.rb +110 -0
- data/spec/public/router/generation/optional_segments_spec.rb +163 -0
- data/spec/public/router/generation/other_spec.rb +17 -0
- data/spec/public/router/generation/params_spec.rb +72 -0
- data/spec/public/router/generation/resources_spec.rb +320 -0
- data/spec/public/router/generation/string_spec.rb +125 -0
- data/spec/public/router/generation/using_request_params_spec.rb +130 -0
- data/spec/public/router/recognition/conditions_spec.rb +395 -0
- data/spec/public/router/recognition/default_routes_spec.rb +35 -0
- data/spec/public/router/recognition/defaults_spec.rb +122 -0
- data/spec/public/router/recognition/deferred_spec.rb +209 -0
- data/spec/public/router/recognition/fixation_spec.rb +27 -0
- data/spec/public/router/recognition/identify_spec.rb +53 -0
- data/spec/public/router/recognition/namespace_spec.rb +353 -0
- data/spec/public/router/recognition/nested_resources_spec.rb +105 -0
- data/spec/public/router/recognition/optional_segments_spec.rb +113 -0
- data/spec/public/router/recognition/params_spec.rb +228 -0
- data/spec/public/router/recognition/redirect_spec.rb +49 -0
- data/spec/public/router/recognition/regexp_paths_spec.rb +61 -0
- data/spec/public/router/recognition/resource_spec.rb +157 -0
- data/spec/public/router/recognition/resources_spec.rb +346 -0
- data/spec/public/router/recognition/variables_spec.rb +87 -0
- data/spec/public/router/router_spec.rb +169 -0
- data/spec/public/router/spec_helper.rb +287 -0
- data/spec/public/router/spec_helper_spec.rb +33 -0
- data/spec/public/session/controllers/sessions.rb +61 -0
- data/spec/public/session/cookie_session_spec.rb +80 -0
- data/spec/public/session/memcached_session_spec.rb +36 -0
- data/spec/public/session/memory_session_spec.rb +26 -0
- data/spec/public/session/multiple_sessions_spec.rb +81 -0
- data/spec/public/session/no_session_spec.rb +14 -0
- data/spec/public/session/session_shared.rb +108 -0
- data/spec/public/session/spec_helper.rb +2 -0
- data/spec/public/template/template_spec.rb +105 -0
- data/spec/public/template/templates/error.html.erb +2 -0
- data/spec/public/template/templates/template.html.erb +1 -0
- data/spec/public/template/templates/template.html.myt +1 -0
- data/spec/public/test/20_multipart_request_helper_spec.rb +152 -0
- data/spec/public/test/controller_matchers_spec.rb +422 -0
- data/spec/public/test/controllers/controller_assertion_mock.rb +7 -0
- data/spec/public/test/controllers/dispatch_controller.rb +11 -0
- data/spec/public/test/controllers/request_controller.rb +70 -0
- data/spec/public/test/controllers/spec_helper_controller.rb +41 -0
- data/spec/public/test/cookie_jar_spec.rb +23 -0
- data/spec/public/test/mock_request_helper_spec.rb +269 -0
- data/spec/public/test/multipart_request_helper_spec.rb +159 -0
- data/spec/public/test/multipart_upload_text_file.txt +1 -0
- data/spec/public/test/request_helper_spec.rb +152 -0
- data/spec/public/test/route_helper_spec.rb +75 -0
- data/spec/public/test/route_matchers_spec.rb +168 -0
- data/spec/public/test/rspec_ext_spec.rb +31 -0
- data/spec/public/test/spec_helper.rb +1 -0
- data/spec/public/webrat/spec_helper.rb +1 -0
- data/spec/public/webrat/test_app/Gemfile +0 -0
- data/spec/public/webrat/test_app/Rakefile +35 -0
- data/spec/public/webrat/test_app/app/controllers/application.rb +2 -0
- data/spec/public/webrat/test_app/app/controllers/exceptions.rb +13 -0
- data/spec/public/webrat/test_app/app/controllers/testing.rb +23 -0
- data/spec/public/webrat/test_app/app/helpers/global_helpers.rb +5 -0
- data/spec/public/webrat/test_app/app/helpers/testing_helper.rb +5 -0
- data/spec/public/webrat/test_app/app/models/user.rb +17 -0
- data/spec/public/webrat/test_app/app/views/exceptions/not_acceptable.html.erb +63 -0
- data/spec/public/webrat/test_app/app/views/exceptions/not_found.html.erb +47 -0
- data/spec/public/webrat/test_app/app/views/layout/application.html.erb +12 -0
- data/spec/public/webrat/test_app/app/views/testing/index.html.erb +3 -0
- data/spec/public/webrat/test_app/app/views/testing/show_form.html.erb +6 -0
- data/spec/public/webrat/test_app/config/database.yml +33 -0
- data/spec/public/webrat/test_app/config/environments/development.rb +15 -0
- data/spec/public/webrat/test_app/config/environments/production.rb +10 -0
- data/spec/public/webrat/test_app/config/environments/rake.rb +11 -0
- data/spec/public/webrat/test_app/config/environments/staging.rb +10 -0
- data/spec/public/webrat/test_app/config/environments/test.rb +12 -0
- data/spec/public/webrat/test_app/config/init.rb +27 -0
- data/spec/public/webrat/test_app/config/rack.rb +29 -0
- data/spec/public/webrat/test_app/config/router.rb +44 -0
- data/spec/public/webrat/test_app/merb/merb-auth/setup.rb +44 -0
- data/spec/public/webrat/test_app/merb/merb-auth/strategies.rb +11 -0
- data/spec/public/webrat/test_app/merb/session/session.rb +9 -0
- data/spec/public/webrat/test_app/public/favicon.ico +0 -0
- data/spec/public/webrat/test_app/public/images/merb.jpg +0 -0
- data/spec/public/webrat/test_app/public/javascripts/application.js +1 -0
- data/spec/public/webrat/test_app/public/javascripts/jquery.js +32 -0
- data/spec/public/webrat/test_app/public/merb.fcgi +22 -0
- data/spec/public/webrat/test_app/public/robots.txt +5 -0
- data/spec/public/webrat/test_app/public/stylesheets/master.css +119 -0
- data/spec/public/webrat/webrat_spec.rb +76 -0
- data/spec/spec_helper.rb +138 -0
- data/spec10/private/core_ext/kernel_spec.rb +34 -0
- data/spec10/private/dispatch/bootloader_spec.rb +27 -0
- data/spec10/private/dispatch/fixture/app/controllers/application.rb +4 -0
- data/spec10/private/dispatch/fixture/app/controllers/exceptions.rb +25 -0
- data/spec10/private/dispatch/fixture/app/controllers/foo.rb +19 -0
- data/spec10/private/dispatch/fixture/app/helpers/global_helpers.rb +8 -0
- data/spec10/private/dispatch/fixture/app/views/foo/bar.html.erb +0 -0
- data/spec10/private/dispatch/fixture/app/views/layout/application.html.erb +11 -0
- data/spec10/private/dispatch/fixture/config/black_hole.rb +12 -0
- data/spec10/private/dispatch/fixture/config/environments/development.rb +6 -0
- data/spec10/private/dispatch/fixture/config/environments/production.rb +5 -0
- data/spec10/private/dispatch/fixture/config/environments/test.rb +6 -0
- data/spec10/private/dispatch/fixture/config/init.rb +45 -0
- data/spec10/private/dispatch/fixture/config/rack.rb +11 -0
- data/spec10/private/dispatch/fixture/config/router.rb +35 -0
- data/spec10/private/dispatch/fixture/public/images/merb.jpg +0 -0
- data/spec10/private/dispatch/fixture/public/merb.fcgi +4 -0
- data/spec10/private/dispatch/fixture/public/stylesheets/master.css +119 -0
- data/spec10/private/dispatch/spec_helper.rb +1 -0
- data/spec10/public/DEFINITIONS +11 -0
- data/spec10/public/abstract_controller/controllers/alt_views/layout/application.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_string_controller_layout.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/layout/merb/test/fixtures/abstract/render_template_controller_layout.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/display_object_with_multiple_roots/show.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/partial/basic_partial_with_multiple_roots/_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_and_custom_location/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/alt_views/render_template_multiple_roots_inherited/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/cousins.rb +60 -0
- data/spec10/public/abstract_controller/controllers/display.rb +60 -0
- data/spec10/public/abstract_controller/controllers/filters.rb +260 -0
- data/spec10/public/abstract_controller/controllers/helpers.rb +47 -0
- data/spec10/public/abstract_controller/controllers/partial.rb +140 -0
- data/spec10/public/abstract_controller/controllers/render.rb +113 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/capture/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/capture_eq/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/capture_non_string_return_value/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/capture_return_value/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/capture_with_args/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/helpers/concat/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/layout/alt.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/layout/custom.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/display_object_with_action/new.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_app_layout/index.erb +0 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_custom_layout/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_template_multiple_roots/show.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/merb/test/fixtures/abstract/render_two_append_contents/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/another_directory/_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/basic_partial/_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/basic_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/basic_partial_with_multiple_roots/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/_first.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/_second.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/nested_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_in_another_directory/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_both/_collection.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_both/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections/_collection.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/_collection.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_as/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/_collection.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_collections_and_counter/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/_ab.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_different_sets_of_locals/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals/_variables.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/_variable.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_locals_overriding_helpers/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/_both.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/partial_with_with_and_locals/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_absolute_partial/_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_absolute_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_as_partial/_with_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_as_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_nil_partial/_with_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_nil_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_partial/_with_partial.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/partial/with_partial/index.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/test_display/foo.html.erb +1 -0
- data/spec10/public/abstract_controller/controllers/views/test_render/foo.html.erb +0 -0
- data/spec10/public/abstract_controller/controllers/views/wonderful/index.erb +1 -0
- data/spec10/public/abstract_controller/display_spec.rb +38 -0
- data/spec10/public/abstract_controller/filter_spec.rb +143 -0
- data/spec10/public/abstract_controller/helper_spec.rb +30 -0
- data/spec10/public/abstract_controller/partial_spec.rb +70 -0
- data/spec10/public/abstract_controller/render_spec.rb +91 -0
- data/spec10/public/abstract_controller/spec_helper.rb +31 -0
- data/spec10/public/boot_loader/boot_loader_spec.rb +34 -0
- data/spec10/public/boot_loader/spec_helper.rb +1 -0
- data/spec10/public/controller/authentication_spec.rb +174 -0
- data/spec10/public/controller/base_spec.rb +96 -0
- data/spec10/public/controller/conditional_get_spec.rb +101 -0
- data/spec10/public/controller/config/init.rb +6 -0
- data/spec10/public/controller/controllers/authentication.rb +74 -0
- data/spec10/public/controller/controllers/base.rb +71 -0
- data/spec10/public/controller/controllers/conditional_get.rb +35 -0
- data/spec10/public/controller/controllers/cookies.rb +36 -0
- data/spec10/public/controller/controllers/dispatcher.rb +35 -0
- data/spec10/public/controller/controllers/display.rb +118 -0
- data/spec10/public/controller/controllers/redirect.rb +36 -0
- data/spec10/public/controller/controllers/responder.rb +93 -0
- data/spec10/public/controller/controllers/streaming.rb +18 -0
- data/spec10/public/controller/controllers/url.rb +42 -0
- data/spec10/public/controller/controllers/views/layout/custom.html.erb +1 -0
- data/spec10/public/controller/controllers/views/layout/custom_arg.html.erb +1 -0
- data/spec10/public/controller/controllers/views/layout/custom_arg.json.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_and_local_provides/index.xml.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.xml.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template/no_layout.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/display_with_template_argument/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/html_default/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/layout/custom.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/local_provides/index.xml.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.html.erb +1 -0
- data/spec10/public/controller/controllers/views/merb/test/fixtures/controllers/multi_provides/index.js.erb +1 -0
- data/spec10/public/controller/cookies_spec.rb +95 -0
- data/spec10/public/controller/dispatcher_spec.rb +556 -0
- data/spec10/public/controller/display_spec.rb +84 -0
- data/spec10/public/controller/redirect_spec.rb +41 -0
- data/spec10/public/controller/resource_spec.rb +364 -0
- data/spec10/public/controller/responder_spec.rb +169 -0
- data/spec10/public/controller/spec_helper.rb +15 -0
- data/spec10/public/controller/streaming_spec.rb +40 -0
- data/spec10/public/controller/url_spec.rb +361 -0
- data/spec10/public/core/merb_core_spec.rb +46 -0
- data/spec10/public/core_ext/dependency_after_load_spec.rb +13 -0
- data/spec10/public/core_ext/fixtures/bad_require_gem/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/bad_require_gem/lib/BadRequireGem.rb +6 -0
- data/spec10/public/core_ext/fixtures/core_ext_dependency.rb +2 -0
- data/spec10/public/core_ext/fixtures/gems/bin/edit_json.rb +19 -0
- data/spec10/public/core_ext/fixtures/gems/gems/bad_require_gem-0.0.1/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/gems/gems/bad_require_gem-0.0.1/lib/BadRequireGem.rb +6 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/CHANGES +93 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/GPL +340 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/README +78 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/RUBY +58 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/Rakefile +309 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/TODO +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/VERSION +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark.txt +133 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_generator.rb +48 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_parser.rb +26 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/benchmarks/benchmark_rails.rb +26 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/bin/edit_json.rb +10 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/bin/prettify_json.rb +76 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/example.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/index.html +38 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/data/prototype.js +4184 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/generator.c +875 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.c +182 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.h +53 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.c +1758 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.rl +638 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.c +154 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.h +58 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/install.rb +26 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Array.xpm +21 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/FalseClass.xpm +21 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Hash.xpm +21 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Key.xpm +73 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/NilClass.xpm +21 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/Numeric.xpm +28 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/String.xpm +96 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/TrueClass.xpm +21 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/add/core.rb +135 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/add/rails.rb +58 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/common.rb +354 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/editor.rb +1362 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/ext.rb +13 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/json.xpm +1499 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure/generator.rb +394 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure/parser.rb +259 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/pure.rb +75 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json/version.rb +9 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/lib/json.rb +235 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail1.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail10.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail11.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail12.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail13.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail14.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail18.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail19.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail2.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail20.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail21.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail22.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail23.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail24.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail25.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail27.json +2 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail28.json +2 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail3.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail4.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail5.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail6.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail7.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail8.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/fail9.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass1.json +56 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass15.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass16.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass17.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass2.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass26.json +1 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/fixtures/pass3.json +6 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/runner.rb +25 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json.rb +293 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_addition.rb +161 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_fixtures.rb +30 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_generate.rb +100 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_rails.rb +118 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tests/test_json_unicode.rb +61 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tools/fuzz.rb +140 -0
- data/spec10/public/core_ext/fixtures/gems/gems/json_pure-1.1.3/tools/server.rb +62 -0
- data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.1/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.1/lib/simple_gem.rb +6 -0
- data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.2/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/gems/gems/simple_gem-0.0.2/lib/simple_gem.rb +6 -0
- data/spec10/public/core_ext/fixtures/gems/specifications/bad_require_gem-0.0.1.gemspec +28 -0
- data/spec10/public/core_ext/fixtures/gems/specifications/json_pure-1.1.3.gemspec +33 -0
- data/spec10/public/core_ext/fixtures/gems/specifications/simple_gem-0.0.1.gemspec +28 -0
- data/spec10/public/core_ext/fixtures/gems/specifications/simple_gem-0.0.2.gemspec +28 -0
- data/spec10/public/core_ext/fixtures/simple_gem/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/simple_gem/lib/simple_gem.rb +6 -0
- data/spec10/public/core_ext/fixtures/simple_gem_2/Rakefile +42 -0
- data/spec10/public/core_ext/fixtures/simple_gem_2/lib/simple_gem.rb +6 -0
- data/spec10/public/core_ext/immediate_spec.rb +17 -0
- data/spec10/public/core_ext/kernel_spec.rb +44 -0
- data/spec10/public/core_ext/multi_versions_spec.rb +14 -0
- data/spec10/public/core_ext/require_as_fail_spec.rb +11 -0
- data/spec10/public/core_ext/require_as_immediate_spec.rb +17 -0
- data/spec10/public/core_ext/require_as_version_spec.rb +17 -0
- data/spec10/public/core_ext/require_as_working_spec.rb +17 -0
- data/spec10/public/core_ext/simple_dependency_spec.rb +17 -0
- data/spec10/public/core_ext/spec_helper.rb +1 -0
- data/spec10/public/core_ext/version_dependency_spec.rb +20 -0
- data/spec10/public/directory_structure/directory/app/controllers/application.rb +3 -0
- data/spec10/public/directory_structure/directory/app/controllers/base.rb +13 -0
- data/spec10/public/directory_structure/directory/app/controllers/custom.rb +19 -0
- data/spec10/public/directory_structure/directory/app/views/base/template.html.erb +1 -0
- data/spec10/public/directory_structure/directory/app/views/wonderful/template.erb +1 -0
- data/spec10/public/directory_structure/directory/config/router.rb +3 -0
- data/spec10/public/directory_structure/directory_spec.rb +43 -0
- data/spec10/public/logger/logger_spec.rb +283 -0
- data/spec10/public/logger/spec_helper.rb +1 -0
- data/spec10/public/rack/conditinal_get_middleware_spec.rb +128 -0
- data/spec10/public/rack/rack_middleware_spec.rb +101 -0
- data/spec10/public/rack/shared_example_groups.rb +35 -0
- data/spec10/public/request/multipart_spec.rb +43 -0
- data/spec10/public/request/request_spec.rb +252 -0
- data/spec10/public/router/behavior_spec.rb +74 -0
- data/spec10/public/router/generation/conditions_spec.rb +134 -0
- data/spec10/public/router/generation/default_route_spec.rb +32 -0
- data/spec10/public/router/generation/defaults_spec.rb +20 -0
- data/spec10/public/router/generation/identify_spec.rb +163 -0
- data/spec10/public/router/generation/namespace_spec.rb +110 -0
- data/spec10/public/router/generation/optional_segments_spec.rb +163 -0
- data/spec10/public/router/generation/other_spec.rb +17 -0
- data/spec10/public/router/generation/params_spec.rb +72 -0
- data/spec10/public/router/generation/resources_spec.rb +320 -0
- data/spec10/public/router/generation/string_spec.rb +125 -0
- data/spec10/public/router/generation/using_request_params_spec.rb +130 -0
- data/spec10/public/router/recognition/conditions_spec.rb +395 -0
- data/spec10/public/router/recognition/default_routes_spec.rb +35 -0
- data/spec10/public/router/recognition/defaults_spec.rb +122 -0
- data/spec10/public/router/recognition/deferred_spec.rb +209 -0
- data/spec10/public/router/recognition/fixation_spec.rb +27 -0
- data/spec10/public/router/recognition/identify_spec.rb +53 -0
- data/spec10/public/router/recognition/namespace_spec.rb +353 -0
- data/spec10/public/router/recognition/nested_resources_spec.rb +105 -0
- data/spec10/public/router/recognition/optional_segments_spec.rb +113 -0
- data/spec10/public/router/recognition/params_spec.rb +228 -0
- data/spec10/public/router/recognition/redirect_spec.rb +49 -0
- data/spec10/public/router/recognition/regexp_paths_spec.rb +61 -0
- data/spec10/public/router/recognition/resource_spec.rb +157 -0
- data/spec10/public/router/recognition/resources_spec.rb +346 -0
- data/spec10/public/router/recognition/variables_spec.rb +87 -0
- data/spec10/public/router/router_spec.rb +134 -0
- data/spec10/public/router/spec_helper.rb +287 -0
- data/spec10/public/router/spec_helper_spec.rb +33 -0
- data/spec10/public/session/controllers/sessions.rb +61 -0
- data/spec10/public/session/cookie_session_spec.rb +71 -0
- data/spec10/public/session/memcached_session_spec.rb +36 -0
- data/spec10/public/session/memory_session_spec.rb +26 -0
- data/spec10/public/session/multiple_sessions_spec.rb +81 -0
- data/spec10/public/session/no_session_spec.rb +14 -0
- data/spec10/public/session/session_shared.rb +108 -0
- data/spec10/public/session/spec_helper.rb +2 -0
- data/spec10/public/template/template_spec.rb +105 -0
- data/spec10/public/template/templates/error.html.erb +2 -0
- data/spec10/public/template/templates/template.html.erb +1 -0
- data/spec10/public/template/templates/template.html.myt +1 -0
- data/spec10/public/test/controller_matchers_spec.rb +422 -0
- data/spec10/public/test/controllers/controller_assertion_mock.rb +7 -0
- data/spec10/public/test/controllers/dispatch_controller.rb +11 -0
- data/spec10/public/test/controllers/request_controller.rb +64 -0
- data/spec10/public/test/controllers/spec_helper_controller.rb +39 -0
- data/spec10/public/test/mock_request_helper_spec.rb +269 -0
- data/spec10/public/test/multipart_request_helper_spec.rb +159 -0
- data/spec10/public/test/multipart_upload_text_file.txt +1 -0
- data/spec10/public/test/request_helper_spec.rb +124 -0
- data/spec10/public/test/route_helper_spec.rb +75 -0
- data/spec10/public/test/route_matchers_spec.rb +168 -0
- data/spec10/public/test/rspec_ext_spec.rb +17 -0
- data/spec10/public/test/spec_helper.rb +1 -0
- data/spec10/public/webrat/spec_helper.rb +1 -0
- data/spec10/public/webrat/test_app/Rakefile +35 -0
- data/spec10/public/webrat/test_app/app/controllers/application.rb +2 -0
- data/spec10/public/webrat/test_app/app/controllers/exceptions.rb +13 -0
- data/spec10/public/webrat/test_app/app/controllers/testing.rb +23 -0
- data/spec10/public/webrat/test_app/app/helpers/global_helpers.rb +5 -0
- data/spec10/public/webrat/test_app/app/helpers/testing_helper.rb +5 -0
- data/spec10/public/webrat/test_app/app/models/user.rb +17 -0
- data/spec10/public/webrat/test_app/app/views/exceptions/not_acceptable.html.erb +63 -0
- data/spec10/public/webrat/test_app/app/views/exceptions/not_found.html.erb +47 -0
- data/spec10/public/webrat/test_app/app/views/layout/application.html.erb +12 -0
- data/spec10/public/webrat/test_app/app/views/testing/index.html.erb +3 -0
- data/spec10/public/webrat/test_app/app/views/testing/show_form.html.erb +6 -0
- data/spec10/public/webrat/test_app/autotest/discover.rb +1 -0
- data/spec10/public/webrat/test_app/autotest/merb.rb +149 -0
- data/spec10/public/webrat/test_app/autotest/merb_rspec.rb +165 -0
- data/spec10/public/webrat/test_app/bin/autospec +31 -0
- data/spec10/public/webrat/test_app/bin/edit_json.rb +31 -0
- data/spec10/public/webrat/test_app/bin/erubis +31 -0
- data/spec10/public/webrat/test_app/bin/gpgen +31 -0
- data/spec10/public/webrat/test_app/bin/merb +31 -0
- data/spec10/public/webrat/test_app/bin/mongrel_rails +31 -0
- data/spec10/public/webrat/test_app/bin/rackup +31 -0
- data/spec10/public/webrat/test_app/bin/rake +31 -0
- data/spec10/public/webrat/test_app/bin/rake2thor +31 -0
- data/spec10/public/webrat/test_app/bin/spec +31 -0
- data/spec10/public/webrat/test_app/bin/thor +31 -0
- data/spec10/public/webrat/test_app/config/database.yml +33 -0
- data/spec10/public/webrat/test_app/config/dependencies.rb +23 -0
- data/spec10/public/webrat/test_app/config/environments/development.rb +15 -0
- data/spec10/public/webrat/test_app/config/environments/production.rb +10 -0
- data/spec10/public/webrat/test_app/config/environments/rake.rb +11 -0
- data/spec10/public/webrat/test_app/config/environments/staging.rb +10 -0
- data/spec10/public/webrat/test_app/config/environments/test.rb +12 -0
- data/spec10/public/webrat/test_app/config/init.rb +25 -0
- data/spec10/public/webrat/test_app/config/rack.rb +11 -0
- data/spec10/public/webrat/test_app/config/router.rb +44 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/merb_generator.rb +1362 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/api_grease.js +640 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/index.html.erb +37 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb.css +252 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb.rb +351 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
- data/spec10/public/webrat/test_app/doc/rdoc/generators/template/merb/prototype.js +2515 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/ChangeLog +3 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/README.txt +57 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/abstract.gemspec +48 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/lib/abstract.rb +75 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/setup.rb +1331 -0
- data/spec10/public/webrat/test_app/gems/gems/abstract-1.0.0/test/test.rb +91 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/CHANGELOG +14 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/LICENSE +55 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/Manifest +6 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/README +40 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/cgi_multipart_eof_fix.gemspec +44 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/lib/cgi_multipart_eof_fix.rb +127 -0
- data/spec10/public/webrat/test_app/gems/gems/cgi_multipart_eof_fix-2.5.0/test/test_cgi_multipart_eof_fix.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/LICENSE +29 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/README +223 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/Rakefile +84 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/Releases +126 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/TODO +6 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/call/call.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/call/call_monitor.rb +55 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/daemonize/daemonize.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_crash.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_exec.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_exit.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_keep_pid_files.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_monitor.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_multiple.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_normal.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_ontop.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_optionparser.rb +43 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc.rb.output +101 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb.output +2 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/ctrl_proc_simple.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_crashing.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_crashing.rb.output +30 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/examples/run/myserver_exiting.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/application.rb +372 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/application_group.rb +152 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/cmdline.rb +117 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/controller.rb +134 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/daemonize.rb +263 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/exceptions.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/monitor.rb +127 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pid.rb +101 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pidfile.rb +111 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons/pidmem.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/lib/daemons.rb +283 -0
- data/spec10/public/webrat/test_app/gems/gems/daemons-1.0.10/setup.rb +1360 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/CHANGES.txt +717 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/MIT-LICENSE +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/README.txt +102 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/Makefile +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/bench.rb +314 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/bench_context.yaml +141 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/_footer.html +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/_header.html +52 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_erb.rhtml +29 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_erubis.rhtml +29 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/benchmark/templates/bench_eruby.rhtml +29 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis-run.rb +132 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/inline-require +153 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc/docstyle.css +188 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc/users-guide.html +3285 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +181 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ActionView.html +105 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/ERB.html +101 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ArrayEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic/Converter.html +327 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic/Engine.html +130 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Basic.html +112 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/CGenerator.html +386 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/CommandOptionError.html +113 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Context.html +344 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Converter.html +283 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ec.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ejava.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ejavascript.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Engine.html +305 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Eperl.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Ephp.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErboutEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/ErubisError.html +117 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Eruby.html +132 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEc.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEjava.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEperl.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEphp.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEruby.html +127 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Escheme.html +126 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Evaluator.html +212 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/FastEruby.html +131 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Generator.html +416 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +164 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Helpers.html +116 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/InterpolationEnhancer.html +306 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/JavaGenerator.html +359 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/Main.html +340 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NoTextEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/NotSupportedError.html +119 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Converter.html +266 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ec.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ejava.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Engine.html +122 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Eperl.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Ephp.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Eruby.html +155 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/Escheme.html +166 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PI.html +124 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PercentLineEnhancer.html +179 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PerlGenerator.html +344 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PhpGenerator.html +350 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/RubyGenerator.html +327 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/StringIOEruby.html +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/TinyEruby.html +299 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/XmlEruby.html +130 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis/XmlHelper.html +255 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/classes/Erubis.html +353 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/created.rid +1 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/README_txt.html +247 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/context_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/converter_rb.html +114 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ec_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ejava_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/eperl_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/ephp_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/eruby_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/escheme_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine/optimized_rb.html +114 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/engine_rb.html +117 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/enhancer_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/error_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/evaluator_rb.html +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/generator_rb.html +114 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helper_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/local-setting_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/main_rb.html +127 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/preprocessing_rb.html +114 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis/tiny_rb.html +107 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/files/erubis_rb.html +118 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_class_index.html +122 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_file_index.html +51 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/fr_method_index.html +248 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/index.html +24 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/doc-api/rdoc-style.css +208 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/Makefile +53 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ec +42 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ejava +45 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ejs +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.eperl +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.ephp +17 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.eruby +15 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/basic/example.escheme +26 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/Makefile +54 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ec +42 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ejava +45 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ejs +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.eperl +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.ephp +17 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.eruby +15 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/examples/pi/example.escheme +26 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/context.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/converter.rb +358 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ec.rb +118 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ejava.rb +111 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ejavascript.rb +120 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/enhanced.rb +122 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/eperl.rb +96 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/ephp.rb +100 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/eruby.rb +125 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/escheme.rb +115 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine/optimized.rb +128 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/engine.rb +121 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/enhancer.rb +681 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/error.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/evaluator.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/generator.rb +86 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helper.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helpers/rails_form_helper.rb +198 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/helpers/rails_helper.rb +325 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/local-setting.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/main.rb +491 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/preprocessing.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis/tiny.rb +146 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/lib/erubis.rb +73 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/setup.rb +1331 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/assert-text-equal.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/Example.ejava +55 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/array_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/arraybuffer_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/bipattern-example.rhtml +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/bipattern_example.result +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/context.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/context.yaml +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/def_method.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/def_method.result +3 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/escape_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ec +27 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ejs +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.eperl +18 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.ephp +18 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.eruby +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example.escheme +28 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.eruby +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1.result +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.rb +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.result +17 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10.xhtml +14 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example10_x.result +17 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.php +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.result +23 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11.rhtml +21 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_C.result +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_N.result +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_U.result +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example11_php.result +15 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example1_x.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.eruby +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2.result +27 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2_trim.result +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example2_x.result +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3.eruby +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example31.result +22 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example32.result +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example3_e.result +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.eruby +3 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4.result +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example4_x.result +5 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.eruby +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example5.result +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example6.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example6.result +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example7.eruby +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example71.result +13 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example72.result +13 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8.eruby +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8_ruby.result +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example8_yaml.result +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.eruby +3 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example9.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example91.result +5 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example92.result +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_c.result +29 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_java.result +56 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_js.result +22 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_perl.result +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_php.result +19 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_scheme.result +30 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/example_scheme_display.result +29 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.result +38 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/fasteruby.rhtml +15 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example.eruby +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example2.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter-example2.rhtml +10 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter_example.result +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/headerfooter_example2.result +13 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/interpolation_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program1.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program1.result +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program2.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/main_program2.result +6 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode-example.eruby +14 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode-php.result +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/nocode_example.result +15 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/normal-eruby-test.eruby +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/normal_eruby_test.result +11 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-example.eruby +14 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-example.php +19 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext-php.result +20 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/notext_example.result +16 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/percentline-example.rhtml +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/percentline_example.result +7 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenable_example.result +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenabled-example.eruby +3 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printenabled-example.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/printstatement_example.result +8 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/simplify_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/stdout_exmple.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/stringbuffer_example.result +9 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/tail_260.result +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/tailnewline.rhtml +3 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/template1.rhtml +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/data/users-guide/template2.rhtml +4 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/hoge.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-engines.rb +370 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-enhancers.rb +571 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-erubis.rb +884 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-main.rb +674 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test-users-guide.rb +58 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/test.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/test/testutil.rb +101 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/LICENSE +20 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/README.txt +3 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/Rakefile +177 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/assertions.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/blank.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/boolean.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/class.rb +175 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/datetime.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/dictionary.rb +433 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/hash.rb +419 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/hook.rb +366 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/inflection.rb +435 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/lazy_array.rb +106 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/logger.rb +202 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/mash.rb +148 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/module.rb +41 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/nil.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/numeric.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/object.rb +175 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/object_space.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/pathname.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/pooling.rb +239 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/rubygems.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/simple_set.rb +39 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/string.rb +132 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/struct.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/symbol.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/tasks/release.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/time.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/version.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib/virtual_file.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/extlib-0.9.8/lib/extlib.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/CHANGELOG +3 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/Manifest +9 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/Makefile +153 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/extconf.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.bundle +0 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.c +1186 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/ext/fastthread/fastthread.o +0 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/fastthread.gemspec +52 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/lib/fastthread.bundle +0 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/setup.rb +1585 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_all.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_condvar.rb +34 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_mutex.rb +74 -0
- data/spec10/public/webrat/test_app/gems/gems/fastthread-1.0.1/test/test_queue.rb +79 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/CHANGELOG +2 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/COPYING +504 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/LICENSE +55 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/Manifest +15 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/README +115 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/bin/gpgen +60 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/gem_plugin.gemspec +53 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/lib/gem_plugin.rb +291 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/COPYING +1 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/LICENSE +1 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/README +5 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/Rakefile +61 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/lib/project/init.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/resources/resources/defaults.yaml +2 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/setup.rb +1360 -0
- data/spec10/public/webrat/test_app/gems/gems/gem_plugin-0.2.3/test/test_plugins.rb +72 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/CHANGES +93 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/GPL +340 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/README +78 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/RUBY +58 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/Rakefile +309 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/TODO +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/VERSION +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark.txt +133 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_generator.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_parser.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/benchmarks/benchmark_rails.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/bin/edit_json.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/bin/prettify_json.rb +76 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/example.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/index.html +38 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/data/prototype.js +4184 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/generator.c +875 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.c +182 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/generator/unicode.h +53 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.c +1758 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/parser.rl +638 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.c +154 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/ext/json/ext/parser/unicode.h +58 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/install.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Array.xpm +21 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/FalseClass.xpm +21 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Hash.xpm +21 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Key.xpm +73 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/NilClass.xpm +21 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/Numeric.xpm +28 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/String.xpm +96 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/TrueClass.xpm +21 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/add/core.rb +135 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/add/rails.rb +58 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/common.rb +354 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/editor.rb +1362 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/ext.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/json.xpm +1499 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure/generator.rb +394 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure/parser.rb +259 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/pure.rb +75 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json/version.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/lib/json.rb +235 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail1.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail10.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail11.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail12.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail13.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail14.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail18.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail19.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail2.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail20.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail21.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail22.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail23.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail24.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail25.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail27.json +2 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail28.json +2 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail3.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail4.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail5.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail6.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail7.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail8.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/fail9.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass1.json +56 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass15.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass16.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass17.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass2.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass26.json +1 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/fixtures/pass3.json +6 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/runner.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json.rb +293 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_addition.rb +161 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_fixtures.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_generate.rb +100 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_rails.rb +118 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tests/test_json_unicode.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tools/fuzz.rb +140 -0
- data/spec10/public/webrat/test_app/gems/gems/json_pure-1.1.3/tools/server.rb +62 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/CHANGELOG +1126 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/CONTRIBUTORS +133 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/LICENSE +20 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/PUBLIC_CHANGELOG +157 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/README +53 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/Rakefile +461 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/TODO +0 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/bin/merb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/bin/merb-specs +5 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/autoload.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/bootloader.rb +1346 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/config.rb +470 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/constants.rb +97 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/abstract_controller.rb +713 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/exceptions.rb +346 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/merb_controller.rb +390 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mime.rb +135 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/authentication.rb +168 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/conditional_get.rb +97 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/controller.rb +348 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/render.rb +532 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/mixins/responder.rb +492 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/controller/template.rb +299 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext/hash.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext/kernel.rb +406 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/core_ext.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/cookies.rb +130 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/default_exception/default_exception.rb +93 -0
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/dispatcher.rb +156 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/request.rb +608 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/request_parsers.rb +236 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/behavior.rb +785 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/cached_proc.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/resources.rb +329 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router/route.rb +632 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/router.rb +355 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/container.rb +90 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/cookie.rb +202 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/memcached.rb +72 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/memory.rb +111 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session/store_container.rb +162 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/session.rb +266 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/dispatch/worker.rb +42 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/gem_ext/erubis.rb +81 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/logger.rb +193 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/plugins.rb +80 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/abstract.rb +268 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/ebb.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/evented_mongrel.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/fcgi.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/irb.rb +164 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/mongrel.rb +41 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/runner.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/swiftiplied_mongrel.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/thin.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/thin_turbo.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter/webrick.rb +72 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/adapter.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/application.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/handler/mongrel.rb +96 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/helpers.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/conditional_get.rb +29 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/content_length.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/path_prefix.rb +31 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/profiler.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/static.rb +49 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware/tracer.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/middleware.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack/stream_wrapper.rb +41 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/rack.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/server.rb +386 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/audit.rake +68 -0
- data/{lib → spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib}/merb-core/tasks/gem_management.rb +1 -1
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/merb.rb +4 -0
- data/{lib → spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib}/merb-core/tasks/merb_rake_helper.rb +1 -1
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/tasks/stats.rake +71 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/controller_helper.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/cookie_jar.rb +106 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/mock_request_helper.rb +400 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/multipart_request_helper.rb +176 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/request_helper.rb +81 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers/route_helper.rb +93 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/helpers.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/controller_matchers.rb +108 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/request_matchers.rb +126 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/route_matchers.rb +137 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers/view_matchers.rb +248 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/matchers.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/run_spec.rb +40 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/run_specs.rb +133 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/tasks/spectasks.rb +78 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/hpricot.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/nokogiri.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/object.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/rspec.rb +165 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/test_ext/string.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test/webrat.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/test.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/generated_parser.rb +653 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/generated_tokenizer.rb +159 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/node.rb +95 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/parser.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/parser.y +198 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/tokenizer.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/tokenizer.rex +63 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css/xpath_visitor.rb +159 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/vendor/nokogiri/css.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core/version.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-core-0.9.14/lib/merb-core.rb +750 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/LICENSE +20 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/README +180 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/Rakefile +73 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/TODO +5 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/core_ext/numeric.rb +388 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/core_ext.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/date_time_formatting.rb +127 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/date_time_helpers.rb +190 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form/builder.rb +413 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form/helpers.rb +449 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/form_helpers.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/tag_helpers.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/text_helpers.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers/time_dsl.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/lib/merb-helpers.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/core_ext_spec.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/application.rb +4 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_check_box.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_file_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_hidden_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_option_tag.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_password_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_radio_button.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_radio_group.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_select.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_text_area.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/bound_text_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/button.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/check_box.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/custom_builder.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/delete_button.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/exceptions.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/field_set.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/fields_for.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/file_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/foo.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/form.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/form_for.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/hidden_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/label.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/numeric_ext.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/option_tag.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/password_field.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/radio_button.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/radio_group.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/relative_date.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/relative_date_span.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/select.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/specs_controller.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/submit.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/tag_helper.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/text_area.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/controllers/text_field.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/helpers/global_helpers.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/fake_dm_model.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/first_generic_fake_model.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/second_generic_fake_model.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/models/third_generic_fake_model.rb +3 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/client_error.html.erb +37 -0
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/exeptions/not_found.html.erb +40 -0
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/fieldset_specs/legend.html.erb +3 -0
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/foo/bar.html.erb +0 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/label_specs/basic.html.erb +1 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/layout/application.html.erb +11 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/select_specs/blank.html.erb +1 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/app/views/select_specs/multiple.html.erb +1 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/development.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/production.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/environments/test.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/init.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/rack.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/config/router.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/images/merb.jpg +0 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/merb.fcgi +4 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/fixture/public/stylesheets/master.css +119 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_config_spec.rb +82 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_date_time_spec.rb +268 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_form_spec.rb +1237 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_tag_helper_spec.rb +40 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/merb_helpers_text_spec.rb +67 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/numeric_extlib_spec.rb +135 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/ordinalize_spec.rb +51 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/spec_helper.rb +156 -0
- data/spec10/public/webrat/test_app/gems/gems/merb-helpers-0.9.14/spec/time_dsl_spec.rb +43 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/ChangeLog +101 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/Install +16 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/LICENCE +18 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/README +30 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/Rakefile +208 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/lib/mime/types.rb +1558 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/pre-setup.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/setup.rb +1366 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/tc_mime_type.rb +275 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/tc_mime_types.rb +77 -0
- data/spec10/public/webrat/test_app/gems/gems/mime-types-1.15/tests/testall.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/CHANGELOG +18 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/COPYING +55 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/LICENSE +55 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/Manifest +69 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/README +74 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/TODO +5 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/bin/mongrel_rails +283 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/builder.rb +29 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/README +3 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/blog.rb +294 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/camping/tepee.rb +149 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/httpd.conf +474 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mime.yaml +3 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel.conf +9 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel_simple_ctrl.rb +92 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/mongrel_simple_service.rb +116 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/monitrc +57 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/random_thrash.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/simpletest.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/examples/webrick_compare.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/Makefile +153 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/ext_help.h +14 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/extconf.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.bundle +0 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.c +402 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11.o +0 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.c +1221 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.h +49 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.java.rl +170 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.o +0 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser.rl +152 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11/http11_parser_common.rl +54 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/Http11Service.java +13 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/org/jruby/mongrel/Http11.java +266 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/ext/http11_java/org/jruby/mongrel/Http11Parser.java +572 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/http11.bundle +0 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/camping.rb +107 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/cgi.rb +181 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/command.rb +222 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/configurator.rb +388 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/const.rb +110 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/debug.rb +203 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/gems.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/handlers.rb +468 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/header_out.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/http_request.rb +155 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/http_response.rb +163 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/init.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/mime_types.yml +616 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/rails.rb +185 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/stats.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/tcphack.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel/uri_classifier.rb +76 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/lib/mongrel.rb +355 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/mongrel-public_cert.pem +20 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/mongrel.gemspec +235 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/setup.rb +1585 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/mime.yaml +3 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/mongrel.conf +1 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_cgi_wrapper.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_command.rb +86 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_conditional.rb +107 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_configurator.rb +87 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_debug.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_handlers.rb +123 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_http11.rb +156 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_redirect_handler.rb +44 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_request_progress.rb +99 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_response.rb +127 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_stats.rb +35 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_uriclassifier.rb +261 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/test_ws.rb +115 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/test/testhelp.rb +66 -0
- data/spec10/public/webrat/test_app/gems/gems/mongrel-1.1.5/tools/trickletest.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/AUTHORS +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/COPYING +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/KNOWN-ISSUES +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/RDOX +265 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/README +287 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/Rakefile +179 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/SPEC +126 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/bin/rackup +172 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/contrib/rack_logo.svg +111 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/lobster.ru +4 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/protectedlobster.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/example/protectedlobster.ru +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/adapter/camping.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/abstract/handler.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/abstract/request.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/basic.rb +58 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/md5.rb +124 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/nonce.rb +51 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/params.rb +55 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/digest/request.rb +40 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/auth/openid.rb +437 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/builder.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/cascade.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/commonlogger.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/deflater.rb +63 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/directory.rb +158 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/file.rb +116 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/cgi.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/evented_mongrel.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/fastcgi.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/lsws.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/mongrel.rb +78 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/scgi.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler/webrick.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/handler.rb +44 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/lint.rb +401 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/lobster.rb +65 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/mock.rb +160 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/recursive.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/reloader.rb +64 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/request.rb +209 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/response.rb +166 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/abstract/id.rb +140 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/cookie.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/memcache.rb +97 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/session/pool.rb +73 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/showexceptions.rb +344 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/showstatus.rb +105 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/static.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/urlmap.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack/utils.rb +318 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/lib/rack.rb +81 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/lighttpd.conf +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test.fcgi +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/cgi/test.ru +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_basic.rb +69 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_digest.rb +169 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_auth_openid.rb +137 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_builder.rb +50 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_camping.rb +51 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_cascade.rb +50 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_cgi.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_commonlogger.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_deflater.rb +70 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_directory.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_fastcgi.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_file.rb +50 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_handler.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_lint.rb +303 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_lobster.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_mock.rb +152 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_mongrel.rb +170 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_recursive.rb +77 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_request.rb +401 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_response.rb +167 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_cookie.rb +49 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_memcache.rb +132 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_session_pool.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_showexceptions.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_showstatus.rb +72 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_static.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_urlmap.rb +175 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_utils.rb +174 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/spec_rack_webrick.rb +106 -0
- data/spec10/public/webrat/test_app/gems/gems/rack-0.4.0/test/testrequest.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/CHANGES +400 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/MIT-LICENSE +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/README +285 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/Rakefile +418 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/TODO +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/bin/rake +31 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/Rakefile1 +38 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/Rakefile2 +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/a.c +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/b.c +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/example/main.c +11 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/glossary.rdoc +51 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/jamis.rb +591 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/proto_rake.rdoc +127 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rake.1.gz +0 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rakefile.rdoc +534 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/rational.rdoc +151 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.4.14.rdoc +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.4.15.rdoc +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.0.rdoc +53 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.3.rdoc +78 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.5.4.rdoc +46 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.6.0.rdoc +141 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.0.rdoc +119 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.1.rdoc +59 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.2.rdoc +121 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.7.3.rdoc +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.0.rdoc +114 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.2.rdoc +165 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/doc/release_notes/rake-0.8.3.rdoc +112 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/install.rb +88 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/classic_namespace.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/clean.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/compositepublisher.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/ftptools.rb +153 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/publisher.rb +75 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/sshpublisher.rb +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/contrib/sys.rb +209 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/gempackagetask.rb +103 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/loaders/makefile.rb +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/packagetask.rb +185 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/rake_test_loader.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/rdoctask.rb +147 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/ruby182_test_unit_fix.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/runtest.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/tasklib.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/testtask.rb +161 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake/win32.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/lib/rake.rb +2468 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/capture_stdout.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/check_expansion.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/contrib/test_sys.rb +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/chains/Rakefile +15 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/default/Rakefile +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/dryrun/Rakefile +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/file_creation_task/Rakefile +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/imports/Rakefile +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/imports/deps.mf +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/multidesc/Rakefile +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/namespace/Rakefile +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/rakelib/test1.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/rbext/rakefile.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/sample.mf +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/statusreturn/Rakefile +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/data/unittest/Rakefile +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/filecreation.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/functional.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/in_environment.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/rake_test_setup.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/reqfile.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/reqfile2.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/session_functional.rb +337 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/shellcommand.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_application.rb +694 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_clean.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_definitions.rb +82 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_earlytime.rb +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_extension.rb +63 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_file_creation_task.rb +62 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_file_task.rb +139 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_filelist.rb +618 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_fileutils.rb +250 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_ftp.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_invocation_chain.rb +75 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_makefile_loader.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_multitask.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_namespace.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_package_task.rb +116 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_pathmap.rb +209 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_rake.rb +41 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_require.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_rules.rb +347 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_task_arguments.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_task_manager.rb +170 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_tasklib.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_tasks.rb +371 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_test_task.rb +75 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_top_level_functions.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rake-0.8.3/test/test_win32.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/History.txt +1198 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/License.txt +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/Manifest.txt +403 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/README.txt +39 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/Rakefile +89 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/TODO.txt +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/bin/autospec +4 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/bin/spec +4 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/autogenerated_docstrings_example.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/before_and_after_example.rb +40 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/behave_as_example.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/custom_expectation_matchers.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/custom_formatter.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/dynamic_spec.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/file_accessor.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/file_accessor_spec.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/greeter_spec.rb +31 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/helper_method_example.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/io_processor.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/io_processor_spec.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/legacy_spec.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/mocking_example.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/nested_classes_example.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/partial_mock_example.rb +29 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/pending_example.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/predicate_example.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/priority.txt +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/shared_example_group_example.rb +81 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/shared_stack_examples.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/spec_helper.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack_spec.rb +63 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/stubbing_example.rb +69 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/pure/yielding_example.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/adder.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/addition +34 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/addition.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/calculator.rb +65 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/README.txt +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/everything.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life/game.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life/grid.rb +43 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/game-of-life/life.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/helper.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/examples/stories/steps/addition_steps.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/README.txt +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/diffing_spec.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failure_in_setup.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/failure_in_teardown.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_example.rb +40 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_flexmock.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_mocha.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/mocking_with_rr.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/partial_mock_example.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/predicate_example.rb +29 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/raising_example.rb +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/spec_helper.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/syntax_error_example.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/team_spec.rb +44 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/failing_examples/timeout_behaviour.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/init.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/autotest/discover.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/autotest/rspec.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine/mri.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine/rubinius.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters/ruby_engine.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/adapters.rb +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/before_and_after_hooks.rb +93 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/configuration.rb +167 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/errors.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb +81 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb +368 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_matcher.rb +44 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/example_methods.rb +105 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/module_reopening_fix.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/pending.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example/shared_example_group.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/example.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/differs/default.rb +66 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/errors.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions/object.rb +63 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/extensions.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations/handler.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/expectations.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/class.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/main.rb +87 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/metaclass.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions/object.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/extensions.rb +4 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/autorunner.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testcase.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testresult.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/interop/test.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/be.rb +221 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/be_close.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/change.rb +148 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/eql.rb +43 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/equal.rb +43 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/exist.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/has.rb +34 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/have.rb +150 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/include.rb +77 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/match.rb +41 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/operator_matcher.rb +79 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/raise_error.rb +132 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/respond_to.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/satisfy.rb +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/simple_matcher.rb +132 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers/throw_symbol.rb +74 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/matchers.rb +162 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/argument_constraints.rb +165 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/argument_expectation.rb +49 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/error_generator.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/errors.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/extensions/object.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/extensions.rb +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/framework.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/message_expectation.rb +331 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/methods.rb +51 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/order_group.rb +29 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/proxy.rb +224 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/space.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/spec_methods.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks.rb +200 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/rake/spectask.rb +227 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/rake/verify_rcov.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/backtrace_tweaker.rb +56 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/class_and_arguments_parser.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/command_line.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/drb_command_line.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/base_formatter.rb +79 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/base_text_formatter.rb +126 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/failing_example_groups_formatter.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/html_formatter.rb +337 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/profile_formatter.rb +51 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/progress_bar_formatter.rb +34 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/html_formatter.rb +174 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/plain_text_formatter.rb +194 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/story/progress_bar_formatter.rb +42 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/heckle_runner.rb +72 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/option_parser.rb +205 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/options.rb +320 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/reporter.rb +167 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner/spec_parser.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/runner.rb +213 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/main.rb +86 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/regexp.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions/string.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/extensions.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/given_scenario.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/scenario_collector.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/scenario_runner.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_mediator.rb +137 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_parser.rb +247 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner/story_runner.rb +70 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/runner.rb +59 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/scenario.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step.rb +70 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step_group.rb +89 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/step_mother.rb +38 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/story.rb +39 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story/world.rb +128 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/story.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/version.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/flexmock.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/mocha.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/rr.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/plugins/mock_frameworks/rspec.rb +20 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/examples.rake +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/examples_with_rcov.rake +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/failing_examples_with_html.rake +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rake_tasks/verify_rcov.rake +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/rspec.gemspec +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/README.jruby +15 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/autotest_helper.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/autotest_matchers.rb +47 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/discover_spec.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/autotest/rspec_spec.rb +150 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/rspec_suite.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/ruby_forker.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/adapters/ruby_engine_spec.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/configuration_spec.rb +296 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_class_definition_spec.rb +48 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_factory_spec.rb +165 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_methods_spec.rb +584 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_group_spec.rb +683 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_matcher_spec.rb +96 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_methods_spec.rb +169 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/example_runner_spec.rb +194 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/nested_example_group_spec.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/pending_module_spec.rb +145 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/predicate_matcher_spec.rb +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/shared_example_group_spec.rb +281 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/example/subclassing_example_group_spec.rb +25 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/differs/default_spec.rb +127 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/extensions/object_spec.rb +95 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/expectations/fail_with_spec.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/extensions/main_spec.rb +71 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
- 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
- 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
- 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
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/spec_spec.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/testcase_spec.rb +49 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/be_close_spec.rb +39 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/be_spec.rb +248 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/change_spec.rb +329 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/description_generation_spec.rb +153 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/eql_spec.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/equal_spec.rb +28 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/exist_spec.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/handler_spec.rb +150 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/has_spec.rb +63 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/have_spec.rb +394 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/include_spec.rb +64 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/match_spec.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/matcher_methods_spec.rb +78 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/operator_matcher_spec.rb +191 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/raise_error_spec.rb +315 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/respond_to_spec.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/satisfy_spec.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/simple_matcher_spec.rb +93 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/matchers/throw_symbol_spec.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/argument_expectation_spec.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/at_least_spec.rb +97 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/at_most_spec.rb +93 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_11545_spec.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_496.rb +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +95 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/hash_including_matcher_spec.rb +53 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_ordering_spec.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_space_spec.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/mock_spec.rb +555 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/nil_expectation_warning_spec.rb +53 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/null_object_mock_spec.rb +54 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/once_counts_spec.rb +53 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/options_hash_spec.rb +35 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/partial_mock_spec.rb +149 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +130 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/precise_counts_spec.rb +52 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/record_messages_spec.rb +26 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/stub_spec.rb +188 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/mocks/twice_counts_spec.rb +67 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/package/bin_spec_spec.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/command_line_spec.rb +141 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/drb_command_line_spec.rb +97 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/empty_file.txt +0 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/examples.txt +2 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/failed.txt +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/base_formatter_spec.rb +112 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatted-1.8.6.html +370 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/html_formatter_spec.rb +61 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/nested_text_formatter_spec.rb +318 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +155 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +103 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/specdoc_formatter_spec.rb +159 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/html_formatter_spec.rb +135 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +600 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/formatter/story/progress_bar_formatter_spec.rb +82 -0
- 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
- 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
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/heckle_runner_spec.rb +78 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/heckler_spec.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/option_parser_spec.rb +421 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/options_spec.rb +450 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_fixture.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/output_one_time_spec.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +62 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/reporter_spec.rb +238 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_bar.rb +0 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_foo.rb +0 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/resources/a_spec.rb +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec.opts +2 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_drb.opts +1 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_parser_spec.rb +85 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner/spec_spaced.opts +2 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/runner_spec.rb +11 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/spec_classes.rb +133 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/builders.rb +46 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/extensions/main_spec.rb +161 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/extensions_spec.rb +14 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/given_scenario_spec.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/plain_text_story_runner_spec.rb +90 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/scenario_runner_spec.rb +214 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_mediator_spec.rb +143 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_parser_spec.rb +401 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner/story_runner_spec.rb +294 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/runner_spec.rb +93 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/scenario_spec.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_group_spec.rb +157 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_mother_spec.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/step_spec.rb +272 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/story_helper.rb +2 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/story_spec.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec/story/world_spec.rb +423 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec.opts +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/spec/spec_helper.rb +77 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/all.rb +5 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/configuration/before_blocks.story +21 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/configuration/stories.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/autogenerated_docstrings +45 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/example_group_with_should_methods +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/nested_groups +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/output +25 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/example_groups/stories.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/helper.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/examples_and_tests_together +30 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/stories.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/interop/test_case_with_should_methods +17 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/mock_framework_integration/stories.rb +7 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/mock_framework_integration/use_flexmock.story +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/pending_stories/README +3 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/helpers/cmdline.rb +9 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/helpers/story_helper.rb +16 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/matchers/smart_match.rb +37 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/before_blocks_example.rb +32 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/example_group_with_should_methods.rb +12 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/simple_spec.rb +8 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/spec/spec_with_flexmock.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/steps/running_rspec.rb +50 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/stories/failing_story.rb +15 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/test/spec_and_test_together.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/resources/test/test_case_with_should_methods.rb +30 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/multiline_steps.story +23 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/steps/multiline_steps.rb +13 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/stories/stories/stories.rb +6 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/builder.js +136 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/controls.js +972 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/dragdrop.js +976 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/effects.js +1117 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/prototype.js +4140 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/rspec.js +149 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/scriptaculous.js +58 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/slider.js +276 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/sound.js +55 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/javascripts/unittest.js +568 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/lib/server.rb +24 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stories.html +176 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stylesheets/rspec.css +136 -0
- data/spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/story_server/prototype/stylesheets/test.css +90 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/CHANGELOG.rdoc +52 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/LICENSE +20 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/README.markdown +76 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/Rakefile +6 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/bin/rake2thor +83 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/bin/thor +7 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/error.rb +3 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/options.rb +242 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/ordered_hash.rb +64 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/runner.rb +286 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/task.rb +84 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/task_hash.rb +22 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/tasks/package.rb +18 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/tasks.rb +77 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor/util.rb +57 -0
- data/spec10/public/webrat/test_app/gems/gems/thor-0.9.8/lib/thor.rb +146 -0
- data/spec10/public/webrat/test_app/gems/specifications/abstract-1.0.0.gemspec +29 -0
- data/spec10/public/webrat/test_app/gems/specifications/cgi_multipart_eof_fix-2.5.0.gemspec +31 -0
- data/spec10/public/webrat/test_app/gems/specifications/daemons-1.0.10.gemspec +31 -0
- data/spec10/public/webrat/test_app/gems/specifications/erubis-2.6.2.gemspec +34 -0
- data/spec10/public/webrat/test_app/gems/specifications/extlib-0.9.8.gemspec +28 -0
- data/spec10/public/webrat/test_app/gems/specifications/fastthread-1.0.1.gemspec +32 -0
- data/spec10/public/webrat/test_app/gems/specifications/gem_plugin-0.2.3.gemspec +33 -0
- data/spec10/public/webrat/test_app/gems/specifications/json_pure-1.1.3.gemspec +33 -0
- data/spec10/public/webrat/test_app/gems/specifications/merb-core-0.9.14.gemspec +57 -0
- data/spec10/public/webrat/test_app/gems/specifications/merb-helpers-0.9.14.gemspec +33 -0
- data/spec10/public/webrat/test_app/gems/specifications/mime-types-1.15.gemspec +34 -0
- data/spec10/public/webrat/test_app/gems/specifications/mongrel-1.1.5.gemspec +49 -0
- data/spec10/public/webrat/test_app/gems/specifications/rack-0.4.0.gemspec +33 -0
- data/spec10/public/webrat/test_app/gems/specifications/rake-0.8.3.gemspec +33 -0
- data/spec10/public/webrat/test_app/gems/specifications/rspec-1.1.11.gemspec +35 -0
- data/spec10/public/webrat/test_app/gems/specifications/thor-0.9.8.gemspec +31 -0
- data/spec10/public/webrat/test_app/merb/merb-auth/setup.rb +44 -0
- data/spec10/public/webrat/test_app/merb/merb-auth/strategies.rb +11 -0
- data/spec10/public/webrat/test_app/merb/session/session.rb +9 -0
- data/spec10/public/webrat/test_app/public/favicon.ico +0 -0
- data/spec10/public/webrat/test_app/public/images/merb.jpg +0 -0
- data/spec10/public/webrat/test_app/public/javascripts/application.js +1 -0
- data/spec10/public/webrat/test_app/public/javascripts/jquery.js +32 -0
- data/spec10/public/webrat/test_app/public/merb.fcgi +22 -0
- data/spec10/public/webrat/test_app/public/robots.txt +5 -0
- data/spec10/public/webrat/test_app/public/stylesheets/master.css +119 -0
- data/spec10/public/webrat/test_app/tasks/doc.thor +149 -0
- data/spec10/public/webrat/test_app/tasks/merb.thor +2012 -0
- data/spec10/public/webrat/webrat_spec.rb +75 -0
- data/spec10/spec_helper.rb +134 -0
- metadata +2172 -41
- data/lib/merb-core/core_ext/json_pure_fix.rb +0 -14
@@ -0,0 +1,1126 @@
|
|
1
|
+
== 0.9.8 "Time Machine" 2008-06-10
|
2
|
+
|
3
|
+
* Pre-release contributors file update.
|
4
|
+
* Nillify Merb.logger first.
|
5
|
+
* Legacy Merb apps log again. And Merb tells you where it logs on boot unless you are testing.
|
6
|
+
* Fixes up RSpec matcher for request helper
|
7
|
+
* remove vestigal @_template_stack variable.
|
8
|
+
* remove rogure require no longer needed
|
9
|
+
* compile templates with preambles to assign locals, support recompiling partial templates if previously unseen locals are provided
|
10
|
+
* Add a note on Dictionary and inflection code to public changelog.
|
11
|
+
* Nuke files that are already part of Extlib.
|
12
|
+
* Update public changelog.
|
13
|
+
* Fixed Merb::BootLoader::Router issue
|
14
|
+
* -core now depends on most recent Extlib
|
15
|
+
* Revert "Added MinimalPrivilege to merb.thor. Thanks namelessjon."
|
16
|
+
* Fixed stats.rake to check if directory exists
|
17
|
+
* Move inflection code and Dictionary to extlib.
|
18
|
+
* Rakefiles should be empty by default (so RSpec is not pushed down test unit users' throat).
|
19
|
+
* Added MinimalPrivilege to merb.thor. Thanks namelessjon.
|
20
|
+
* Added Merb::BootLoader::Router
|
21
|
+
* Improve public specs for logger. Use Mash for log levels.
|
22
|
+
* Untabify logger.rb.
|
23
|
+
* Allow Merb.disable(:signals) to keep Merb from installing any signal handlers.
|
24
|
+
* Added the ability to specify resource actions in the block
|
25
|
+
* Fixed bug where subgems (of meta-gems) weren't reinstalled each time
|
26
|
+
* Added process title reporting as per: LH #517
|
27
|
+
* Making the :key a synonym to :keys for Behavior#resource
|
28
|
+
* Fixing the rspec error when running rake tasks
|
29
|
+
* Cleaned up the specs. Removed any stray pending specs.
|
30
|
+
* Added stacking and redirecting deferred routing blocks.
|
31
|
+
* Removed private/dispatch/route_params_spec.rb
|
32
|
+
* New spec helpers ported over. Old #request helper becomes #mock_request, which uses some mocking and stubbing to set up the request. The new #request API uses no mocking, and has the following API changes:
|
33
|
+
* Removed spec/private/config
|
34
|
+
* Added dependency 'foo', :immediate => true for loading dependencies immediately
|
35
|
+
* call to_s in the csrf middlewre
|
36
|
+
* make StreamWrapper more duck typed to the old body string.
|
37
|
+
* If --log-level or --log is explicitly given, never log to STDOUT, alsways to file
|
38
|
+
* If Merb.env?(:test) we don't need ugly = true spread all over the place
|
39
|
+
* use Proc === @body instead
|
40
|
+
* Bring the console adapter's #url back into action
|
41
|
+
* update specs for new rack stream_wrapper
|
42
|
+
* Updating streaming methods to work on *all* rack adapters.
|
43
|
+
* Make Merb::Config[]= work without calling setup 1st
|
44
|
+
* Default to = 'UTF8' - you can just set this in init.rb if needed
|
45
|
+
* Colorful GemManagement
|
46
|
+
* Removed unused directory under spec.
|
47
|
+
* Reorganized URL generation methods across Controller classes
|
48
|
+
* Added a :singular option to resource route building
|
49
|
+
* merb -k works right
|
50
|
+
* Fixes stupid issue in spec loader
|
51
|
+
* Route matching handles slashes according to the RFC
|
52
|
+
* Added the #resource controller helper for URL generation.
|
53
|
+
* Fixes #503; raise InternalServerError works now.
|
54
|
+
* We shouldn't use minigems explicitly in our code (yet)
|
55
|
+
* Add missing pieces of forking awesomeness.
|
56
|
+
* Executable wrappers use /usr/bin/env again - run them with /path/to/ruby -S if you need a specific Ruby version
|
57
|
+
* Merge in forking branch.
|
58
|
+
* Use trenary operator here.
|
59
|
+
* capture returns return value of passed in block if it is not a template block
|
60
|
+
* Updated PUBLIC_CHANGELOG regarding Merb::RakeHelper
|
61
|
+
* reverts URI generation on requests
|
62
|
+
* Updates full_uri for the changes to the Request#protocol
|
63
|
+
* Reorganized merb-core/tasks/merb to require merb-core/tasks/merb_rake_helper (see merb-gen too)
|
64
|
+
* Cleanup of tasks/merb_rake_helper.rb
|
65
|
+
* Added :gemspec task to Rakefile
|
66
|
+
* Fixed executable wrapper code (for loading local gems)
|
67
|
+
* Added Merb::RakeHelper.install_package method to install packages directly
|
68
|
+
* Merb::RakeHelper now handles local ./bin and GEM_DIR installs correctly
|
69
|
+
* Rakefile now uses Merb::RakeHelper.install
|
70
|
+
* Added GemManagement module - working towards new install/uninstall rake tasks
|
71
|
+
* Removed Merb::BootLoader::ReloadTemplates; Merb::Config[:reload_templates] needs to be set explicitly
|
72
|
+
* Marked Kernel#track_dependency as @api private - updated specs to reflect this
|
73
|
+
* Added warning when specs are run without memcached being available
|
74
|
+
* Refactored Kernel#dependency and #load_dependency to work with Gem::Dependency
|
75
|
+
* Include request uri in routing exception raised by request helpers.
|
76
|
+
* Added require 'thread' explicitly for Mutex to be available
|
77
|
+
* Revert "Initial support for fast redeploys and code reloading via forks."
|
78
|
+
* Revert "Split out the code transaction into a method and do some experimentation with cluster forking."
|
79
|
+
* Revert "Better exit message"
|
80
|
+
* Revert "Initial experiments are a success. TODO: Move the logic out of mongrel and make a proper clustering instead of hardcoding to 4"
|
81
|
+
* Fixes issue people were having
|
82
|
+
* Initial experiments are a success. TODO: Move the logic out of mongrel and make a proper clustering instead of hardcoding to 4
|
83
|
+
* Split out the code transaction into a method and do some experimentation with cluster forking.
|
84
|
+
* Better exit message
|
85
|
+
* Initial support for fast redeploys and code reloading via forks.
|
86
|
+
* Fixed that YAML plugin configuratator wasn't requiring YAML.
|
87
|
+
* Reindent core_ext/kernel.rb.
|
88
|
+
* Register dependencies even after the BootLoader has finished
|
89
|
+
* Fixes Merb::Request#protocol to remove the ://. May Break things in apps if you're checking protocol directly.
|
90
|
+
* Moves actual url generation methods onto the request object from the controller.
|
91
|
+
Also updates the Merb::Request#redirect method to be usable just like the controller version.
|
92
|
+
* Throw the correct error when generating a non existent route.
|
93
|
+
* Modify throw_content to not append. Add append_content for that purpose.
|
94
|
+
* Significant router refactoring and feature development
|
95
|
+
* Run specs in groups
|
96
|
+
* Added more discriptive message when a class fails to load
|
97
|
+
* Optimized Merb::Request.query_parse - fixed silly spec
|
98
|
+
* Update Rack application spec to reflect current affairs.
|
99
|
+
* Document template_for.
|
100
|
+
* Make merb fast again. Also make rake install work from any Ruby via -S
|
101
|
+
* ControllerMixin#html_escape => #escape_html (bring it in line with #escape_xml).
|
102
|
+
* Protected makes no sense for class methods.
|
103
|
+
* Remove dead code from responder.
|
104
|
+
* Adds abstract! and abstract? for controller classes for your inheritance pleasure
|
105
|
+
* Server#add_irb_trap should play nice with ruby-debugger.
|
106
|
+
* Reworked the Server#add_irb_trap to suppress the warnings.
|
107
|
+
* added flag for an IRB trap
|
108
|
+
* Add links to nginx_send_file examples: gist and app at GitHub.
|
109
|
+
* Untabify fixture controller for streaming.
|
110
|
+
* Make Merb::Controller#nginx_send_file more user friendly.
|
111
|
+
* More fine-grained check to see if a local ./bin executable should have been used
|
112
|
+
* Ignore products RDoc generates.
|
113
|
+
* Include RDoc in the gem.
|
114
|
+
* Ignore RDoc template cache.
|
115
|
+
* Remove RDoc template cache from version control.
|
116
|
+
* Session cookies now expire at the end of a browser session again (instead of 2 weeks)
|
117
|
+
* Second attempt: fixed load_dependency (hopefully)
|
118
|
+
* Fixed failing spec regarding 'dependency' change
|
119
|
+
* Make flat! more useful
|
120
|
+
* This rescue is obsolete and is obscuring useful failing information, as well as loading
|
121
|
+
from the system even when you require a specific version that isn't available in the bundled gems.
|
122
|
+
* Clean before installation. Remove *.so and *.log under spec.
|
123
|
+
* Make gem 3 times lighter.
|
124
|
+
* Merb::Release is gone.
|
125
|
+
* Bump up version
|
126
|
+
* Set @_content_type before running transform blocks
|
127
|
+
* sneaky merge failure piece that shouldn't be here
|
128
|
+
* Revert "Add specs for action-level only_provides"
|
129
|
+
* Revert "add specs for does_not_provide"
|
130
|
+
* add specs for does_not_provide
|
131
|
+
* Add specs for action-level only_provides
|
132
|
+
* Make controller.route work
|
133
|
+
|
134
|
+
|
135
|
+
== 0.9.7 "Universe In A Bundle" 2008-13-09
|
136
|
+
|
137
|
+
* Made the post body available to the routing when testing a request.
|
138
|
+
* Better local gems dir detection and end-user feedback
|
139
|
+
* Updated PUBLIC_CHANGELOG regarding gem management and merb.thor
|
140
|
+
* Fixed compatibility with the *new* bundle logic
|
141
|
+
* Made request('/path', {}, {:post_body => 'some XML'}) not setting the post body to nil.
|
142
|
+
* Added two specs for setting request.raw_post. Passes for #dispatch_to, fails for #request.
|
143
|
+
* You can now use request_to with a post body:
|
144
|
+
* It's official: Thor is now a dependency
|
145
|
+
* Removed MerbScriptHelper - simplified loading bundled gems - see merb.thor
|
146
|
+
* Bug Fix: Cookie headers not being formatted correctly
|
147
|
+
* Added request.session.clear! method to clear and destroy the session (including the _session_id cookie itself)
|
148
|
+
* Both memcache-client and memcached gems are supported by the session store
|
149
|
+
* Added better query param parsing (naive but adequate) for nested params
|
150
|
+
* Added specs to make sure blank cookie options aren't used for Set-Cookie
|
151
|
+
* Fixed cookie issues in WebKit/Safari browsers
|
152
|
+
* Log ControllerExceptions with error level and only ServerErrors with info.
|
153
|
+
* Modified absolute_url to handle an object as well as a Hash
|
154
|
+
* Touches to new sessions: doc and minor code improvements.
|
155
|
+
* More meaningful exception message when no session container is configured.
|
156
|
+
* Make it clear how session mixin makes it's way into controller.
|
157
|
+
* Leave a note where new sessions doc needs to be improved.
|
158
|
+
* Fix smart formatting.
|
159
|
+
* Give smart people proper credit when you use their work.
|
160
|
+
* Loosen extlib dependency a bit.
|
161
|
+
* Meaningful message when Memcached session store can't be loaded because of load error.
|
162
|
+
* Remove libxml-ruby and memcache-client dev dependencies.
|
163
|
+
* Require memcached gem where memcached session store is defined (it's lazy loaded).
|
164
|
+
* Meaninful message when have_xpath matcher is used but libxml-ruby fails to load.
|
165
|
+
* Don't blow up when there are no system paths.
|
166
|
+
|
167
|
+
== 0.9.6 "Therapy session" 2008-08-09
|
168
|
+
|
169
|
+
* Merge in simple conditional get support at controller level.
|
170
|
+
* Merged in new bundling (aka freezer) branch
|
171
|
+
* Merged in new-sessions branch
|
172
|
+
* Simplify one more clever line.
|
173
|
+
* Trenary operator is always hard to read.
|
174
|
+
* Added PUBLIC_CHANGELOG note on Language::English::Inflector => English::Inflect
|
175
|
+
* Filters with procs created via class methods have identical signatures regardless if they handle content differently or not. So modified add_filter to just append procs to the filter list.
|
176
|
+
* Consolidating raw Rakefile commands to merb-core/tasks/merb_rake_helper.rb
|
177
|
+
* Update contributors list.
|
178
|
+
* Ticket #461 - This simply adds output for what host and port the adapter has started on.
|
179
|
+
* More Language::English::Inflect to English::Inflect changes - getting ready for Extlib move soon
|
180
|
+
* Language::English::Inflect => English::Inflect name changes
|
181
|
+
* Use frozen strings where possible.
|
182
|
+
* First pass at adding in CSRF protection in to Rack middleware.
|
183
|
+
* Query string of the format "foo=bar&foo=baz" should return params {"foo" => "baz"}
|
184
|
+
* Fixed multiple select not honored in params bug
|
185
|
+
* Public specs for 'fragment' changes in url.
|
186
|
+
* AbstractController now uniformly uses instance_eval for Procs where previously
|
187
|
+
* Renamed anchor to fragment along with some minor tweeks to follow rfc2396 better.
|
188
|
+
* Add support for :anchor when generating url's. Ex. url(:root, :anchor => :lower_half).
|
189
|
+
* Revert "Make Merb::Request#protocol return valid protocol names (http, not http://)."
|
190
|
+
* Adds specs for previous commit
|
191
|
+
* Fixes display @object, :template => "path/to/foo"
|
192
|
+
* Clean up Rakefile.
|
193
|
+
* Remove a line of extra code
|
194
|
+
* Set cookie expires to nil when session_expiry is set to 0.
|
195
|
+
* ConditionalGet refactoring.
|
196
|
+
* Fix: ConditionalGet should not return the message body when the status code is 304.
|
197
|
+
* Rescue Exception subclasses, not only StandardError subclasses.
|
198
|
+
* Make Merb::Request#protocol return valid protocol names (http, not http://).
|
199
|
+
* Add :protocol and :host options to absolute_url
|
200
|
+
* extends basic authentication a bit to allow usage outside of before filters
|
201
|
+
|
202
|
+
== 0.9.5 "Knife and Spoons" 2008-26-08
|
203
|
+
* Add Hpricot to dependencies: provided RSpec matchers depend on it.
|
204
|
+
* Documentation fixes
|
205
|
+
* Make Rack application set Date header as required by RFC2616.
|
206
|
+
* Port Django's conditional GET middleware to Rack.
|
207
|
+
* Fix passenger issue
|
208
|
+
* Make Autotest consume less CPU by adding excludes.
|
209
|
+
* Add extract! experimentally
|
210
|
+
* Adds dev deps on rake install
|
211
|
+
* Add necessary dev dependencies
|
212
|
+
* Make route_to(...).with matcher work properly with empty hashes
|
213
|
+
* Make Merb::Request#query_parse a bit faster.
|
214
|
+
* Speed up dispatcher specs by using libxml
|
215
|
+
* throw :halt, nil spec
|
216
|
+
* More rigid specs
|
217
|
+
* merb-core really cannot use >= with extlib 0.9.3 at this point, so update gemspec
|
218
|
+
* Use Logger from Extlib
|
219
|
+
* Fix issue with Safari having weird ordering by fixing the issue in general.
|
220
|
+
* Fixes up a bunch of specs
|
221
|
+
* Add ContentLength middleware.
|
222
|
+
* Rename Rack middleware spec file
|
223
|
+
* Add Tracer middleware.
|
224
|
+
* Improve the documentation of AbstractController.
|
225
|
+
* Move Merb::Rack::Middleware#deferred\? to Merb::Rack::Application.
|
226
|
+
* No longer use Pathname for Merb.root and friends.
|
227
|
+
* fixed merb_erb bug
|
228
|
+
* readded _generator_scope methods with deprecation warnings
|
229
|
+
* added use_template_engine method and removed generator_scope code that is no longer needed
|
230
|
+
* Add clear_content to renderer
|
231
|
+
|
232
|
+
== 0.9.4 "Leave No Broken Windows" 2008-12-08
|
233
|
+
* Update required Ruby version to 1.8.6.
|
234
|
+
* Make dispatch_to set params[:controller] and params[:action].
|
235
|
+
* Update RedirectTo matcher documentation.
|
236
|
+
* redirect_to matcher now has :message option
|
237
|
+
* Adds some detail to the public changelog
|
238
|
+
* Fix rakefile
|
239
|
+
* Make history Rake tasks work again.
|
240
|
+
* Add contributors file.
|
241
|
+
* Add Rake tasks that list and update contributors file.
|
242
|
+
* A bit more readable spec example titles. Follow one assertion per test rule.
|
243
|
+
* Make Merb::Controller#send_file set header with respect to Rack specification.
|
244
|
+
* Removed TODO in Dispatcher#handle.
|
245
|
+
* More updates to Merb::Request methods documentation.
|
246
|
+
* Document Router#route_for(request).
|
247
|
+
* Document some new Request methods.
|
248
|
+
* Doc correction: Request#params returns instance of Mash.
|
249
|
+
* Doc correction: Request#body_and_query_params returns instance of Mash.
|
250
|
+
* ! for methods that change the receiver
|
251
|
+
* Remove old code
|
252
|
+
* Moves session fixation into request
|
253
|
+
* re-add permanent redirects
|
254
|
+
* Don't need this spec anymore.
|
255
|
+
* More work on the dispatcher.
|
256
|
+
* Documentation improvement + improvement in division of responsibilities.
|
257
|
+
* Before moving stuff into the Rack adapter.
|
258
|
+
* Additional refactor of the default Exceptions to use an actual Merb controller. Almost ready for a merge. Yeehaw!
|
259
|
+
* Even more awesome dispatcher improvements.
|
260
|
+
* Fixes an issue with status symbols
|
261
|
+
* Class extensions spec moved to Extlib.
|
262
|
+
* Move all accessors in AbstractController to the top so one can see them easily.
|
263
|
+
* We don't need this anymore
|
264
|
+
* Continues dispatch refactor. Exceptions now maintain a stack that is reported in the case of exceptions that, themselves, throw exceptions.
|
265
|
+
* Document :with option of filters.
|
266
|
+
* Fixed a typo in AbstractController documentation.
|
267
|
+
* Extra specs and love to Merb::Controller._session_*
|
268
|
+
* Added fixture config/init.rb
|
269
|
+
* Resolved conflict after cherry-pick of 9d1a11ff.
|
270
|
+
* Fixtures and pending specs for controller/cookie store integration.
|
271
|
+
* Re-set session cookie expiry and friends once init file/configuration is loaded.
|
272
|
+
* Two more specs for class_inheritable_accessor.
|
273
|
+
* Make spec for #342 do correct assertions.
|
274
|
+
* Fixed a bug where changes to inherited controller filters would bleed acrosss siblings
|
275
|
+
* the dispatcher specs
|
276
|
+
* Add more edge-case specs to Dispatcher and make sure they pass.
|
277
|
+
* Make Cookie#set_cookie handle more options. Improve spec coverage.
|
278
|
+
* Refactor Dispatcher.handle to reduce complexity
|
279
|
+
* Fix some ruby warnings
|
280
|
+
* Added flog tasks to rake
|
281
|
+
* add in stats task
|
282
|
+
* Forgotten changes to Rakefile.
|
283
|
+
* resource urls with additional params
|
284
|
+
* Remove double-start in Thin adapter.
|
285
|
+
* Merb::SimpleSet => Extlib::SimpleSet
|
286
|
+
* merb-extlib => extlib
|
287
|
+
* add spec for empty raw_post on xml content type
|
288
|
+
* make sure to resuce JSON parse errors and return {}
|
289
|
+
* Use Pathname in some more places, fix breakages.
|
290
|
+
* Added more documentation for some of the extra options available to #partial
|
291
|
+
* Temp commit.
|
292
|
+
* Relative :template paths can be extensionless again.
|
293
|
+
* Oops - forgot some files...
|
294
|
+
* Fixed nasty bugs in controller/mixins/responder and its specs.
|
295
|
+
* Reworded the documentation for #partial a little bit
|
296
|
+
* Added some documentation for the new partial collection counter
|
297
|
+
* Slight refactoring of the partial method
|
298
|
+
* Adding views for the new partial collection counter specs
|
299
|
+
* Adding the current index and collection size for partials rendered with a collection
|
300
|
+
* Use gem release task that's in Extlib now.
|
301
|
+
* If someone can figure out why this is already defined, please let me know
|
302
|
+
* Yeah... not a good idea
|
303
|
+
* ADd push_paths to the load path.
|
304
|
+
* another tiny tweak
|
305
|
+
* Fixes open IO issue
|
306
|
+
* Switch to merged extlib.
|
307
|
+
* Use Pathname in some more places, fix breakages.
|
308
|
+
* Move to merb-extlib is almost there.
|
309
|
+
* Output a warning about merb-extlib if it can't be loaded.
|
310
|
+
* Applying patch to allow use of thin_turbo adapter. Thanks dkubb!
|
311
|
+
* Did I really commit that?
|
312
|
+
* Use :info as default log level for now: people wonder "where the output is gone".
|
313
|
+
* Make sure default config has log level of error so template inlining bootloader won't dump everything to the tty.
|
314
|
+
* Do not reference to old merb.yml in doc.
|
315
|
+
* whoops... dup
|
316
|
+
* Add support for argument capture and fix $DEBUG bootloader stuff [#390 state:resolved]
|
317
|
+
* Ignore temp Emacs files.
|
318
|
+
* Generate tags only for lib.
|
319
|
+
* Adds Rake tasks to generate Emacs tags.
|
320
|
+
* Touch RDoc of LoadClasses bootloder.
|
321
|
+
* LoadClasses#remove_file => LoadClasses#remove_classes_in_file.
|
322
|
+
* Output extra information on boot when verbose config option is given from
|
323
|
+
* Make Logger bootloader print meaningful warning when RubyGems is outdated.
|
324
|
+
* capture_erb correctly passes arguments to the block again
|
325
|
+
* Let world know what this delete vs. destroy thing is all about.
|
326
|
+
* Add support for OPTIONS
|
327
|
+
* display doesn't throw an error if a layout is not found, even if one is specified (because of class-wide layout options)
|
328
|
+
* throw_content now concatenates, not replaces, content
|
329
|
+
* Added view for throw_content spec
|
330
|
+
* Clean up resource regexps after ; separator is gone.
|
331
|
+
* @@parent_resources, not @@parent_resource
|
332
|
+
* Semicolon as action separator for resources is no longer supported: breaks basic http auth in Safari.
|
333
|
+
* Small doc update. Thanx jackdempsey
|
334
|
+
* Adds message support (like flash in Rails but with somewhat different semantics)
|
335
|
+
* Add .tmproj to the list of ignores
|
336
|
+
* Fix bug with :status
|
337
|
+
* Spec for :status in display
|
338
|
+
* display handles :status and :location
|
339
|
+
* Improved RDoc of Merb#load_dependencies.
|
340
|
+
* script/frozen-merb => merb-freezer in RDoc
|
341
|
+
* Adjusted logging message for thin sockets vs ports.
|
342
|
+
* Added socket option to thin.rb and to the command line options.
|
343
|
+
* send_file opens files in 'rb' binary mode so windows doesn't shit itself
|
344
|
+
* added add_generators, which allows plugins to load their own generator in the same way as rakefiles
|
345
|
+
* fix nginx_send_file
|
346
|
+
* Spec for previously applied patch to Behavior#defer_to.
|
347
|
+
* use Route#register in defer_to so that deferred routes get an index
|
348
|
+
* Make Autotest ignore doc/ as well.
|
349
|
+
* Ensure Autotest ignores changes in log directory.
|
350
|
+
* Add helpers directory to load path
|
351
|
+
* Modules don't get duped right.
|
352
|
+
* Redo Merb's inheritable_accessors so that they have correct semantics, then redo everything that uses inheritable_accessors so they don't have to hack around the bad semantics.
|
353
|
+
* Added spec for the route matcher testing regexp routes. [#386]
|
354
|
+
* Add Merb.started? alias for Merb.started reader.
|
355
|
+
* Add reader for @started flag which shows when Merb environment is started.
|
356
|
+
* Update memory session storage documentation.
|
357
|
+
* Use warn logger level instead of debug, if session persisting fails.
|
358
|
+
* FileUtils#touch only added mtime option in ruby 1.8.6. let's use File#utime instead
|
359
|
+
* better log message
|
360
|
+
* rescue excpetions in Worker thread, log them and then restart the work queue
|
361
|
+
* Router now can do r.match("/this/old/url").redirect("/where/this/resides/now").
|
362
|
+
* Refactor Merb::Test::RequestHelper and introduce build_request helper.
|
363
|
+
* spoke too soon.
|
364
|
+
* we actually don't need to log this at all as its logged latert in the _benchmarks
|
365
|
+
* Update link to wiki page on Rack in exception.
|
366
|
+
* Add link to Rack page at wiki to Controller not found exception. This confuses people a lot.
|
367
|
+
* Log namespaced controller name when it's class is not found.
|
368
|
+
* I will test first next time, I promise.
|
369
|
+
* Tell what's actually started when Dispatcher begins to handle request.
|
370
|
+
* Fixed typo in yet another exception message.
|
371
|
+
* Log an info message when route fixation actually happens. Those heavily using Flash will find it helpful.
|
372
|
+
* Log a warning if controller class cannot be found.
|
373
|
+
* A bit more verbose exception message when route does not specify a controller.
|
374
|
+
* Documentation: add deprecation warning to AbstractController. Manually applied patch from dstar.
|
375
|
+
* Increase header level on sub-headers of Filters in AbstractController
|
376
|
+
* Fixes request helper bug [#378: resolved]
|
377
|
+
* Fixes case of :format being ignored.
|
378
|
+
* If the spec.opts file exists, use it.
|
379
|
+
* use Thread.pass to avoid running newly queued item before the action's thread finishes
|
380
|
+
* Added Merb::Worker. You can now add a block to be run in a separate thread
|
381
|
+
* Let's try again, this time with <% end =%>
|
382
|
+
* Try #concat to resolve some issues.
|
383
|
+
* One more time.
|
384
|
+
* Should handle denormalized multiline blocks now.
|
385
|
+
* wycats needs to learn to escape pipes.
|
386
|
+
* Make Merb::Plugins.config[:foo] default to {}
|
387
|
+
* Long lines make wycats' eyes' bleed. Plus, why do all those .joins twice?
|
388
|
+
* jackdempsey's inflector improvements (backported from wycats' patch to Rails)
|
389
|
+
* Fixes typo.
|
390
|
+
* <%= now takes a block in Erubis. Erubis buffer now an ivar (@_erb_buf) so eval is no longer required for capture. Helpers that take a block should now return a string.
|
391
|
+
* Fixes the after filters
|
392
|
+
* Reorganize experimental stuff.
|
393
|
+
* Additional slight efficiency and readability improvement.
|
394
|
+
* Improve speed of content-type=. 5% speed on hello world requests.
|
395
|
+
* Improve the speed of _perform_content_negotiation (and got 10% better speed on requests)
|
396
|
+
* Old stuff that should be committed.
|
397
|
+
* Speed up synonym lookup by order of magnitude :(
|
398
|
+
* add Merb::Rack::Profiler middleware. to use add the following to your config/rack.rb file:
|
399
|
+
* update license
|
400
|
+
* Missing require
|
401
|
+
* require 'stringio'
|
402
|
+
* Add support for non-standard template reloading. Plugin authors need to override load_template_io to handle special reloading logic.
|
403
|
+
* Add support for IO templates instead of just paths. See PLUGIN_API_CHANGELOG for details.
|
404
|
+
* add swiftiplied mongrel rack adapter.
|
405
|
+
* Swapped the order of helper and controller in the default_framework
|
406
|
+
* Why should capture be private?
|
407
|
+
* Merb::Config[:framework] now needs absolute paths to work (breaks BC)
|
408
|
+
* Merb::Config[:framework] paths now pickup files using glob **/*.rb unless specified otherwise
|
409
|
+
* Don't automatically use Facebook signature
|
410
|
+
* Fixes failing spec.
|
411
|
+
* make the default rake task 'specs' so running rake in merb-core just runs the specs
|
412
|
+
* Rename @status to @_status
|
413
|
+
* Avoid adding nil values in place of missing keys for Hash#only
|
414
|
+
* Fix issue with null segments
|
415
|
+
* Fixed session cookie expires value [#366 state:resolved]
|
416
|
+
* Made HTTP method override proc-based and pluggable. [#364]
|
417
|
+
* siiiiiigh.
|
418
|
+
* Revert partial counter and yielding.
|
419
|
+
* Remove some duplication
|
420
|
+
* For crying out loud.
|
421
|
+
* Refactor display. WARNING: This commit might not be stable. I need to add a bunch more specs for display before I feel confident.
|
422
|
+
* Make the TemplateNotFound error read better. Slight refactor of _get_layout.
|
423
|
+
* Fix _template_for so it's actually readable
|
424
|
+
* uhhhhhhhh...
|
425
|
+
* Added Merb::Router.reset! and Merb::Router.capture
|
426
|
+
* Speedup Route URL generation
|
427
|
+
* Start work on fixing contaminated cousins bug.
|
428
|
+
* Changed controller inheritance of _template_root
|
429
|
+
* Added the ability to use full/absolute template paths for render, display and partial views
|
430
|
+
* This cannot be tested this way. It needs to be tested as a public spec (testing it privately here was a cop-out and fails when I fixed up the way dependency works).
|
431
|
+
* Allows passage of query string via env["QUERY_STRING"] in tests. [#358 state:resolved]
|
432
|
+
* Handles use of dependency after BootLoading. [#360 state:resolved]
|
433
|
+
* properly set the session_id_key
|
434
|
+
* added 2 specs for multipart formdata: (1) for checking request with IO, (2) for testing GET with content_type not erroring on multipart/form-data absence; fixed error with multipart/form-data absence.
|
435
|
+
* Made Class a lot more sane.
|
436
|
+
* Fix README for merb-gen app foo
|
437
|
+
* Do not duplicate work Merb::Template.template_extensions does in Templates bootloader.
|
438
|
+
* Make exception message when Merb cannot find template explain what it was
|
439
|
+
* Fixed 2 problems with multipart form upload after application is deployed to Tomcat via warble: (1) The @body object in this environment is an IO object, not a StringIO, so doesn't have a size method, and (2) 'tempfile' needs to be explicitly required.
|
440
|
+
* made only and except uglier and faster
|
441
|
+
* Preserve order parse query, respect query string override in test request
|
442
|
+
* Added partial counter and yielding for collections
|
443
|
+
* Remove occasionly committed *.rbc files.
|
444
|
+
* Ignore *.rbc created by Rubinius compiler.
|
445
|
+
* Send the route into the controller
|
446
|
+
* Add Merb::Request.browser_method_workarounds
|
447
|
+
* Revert ca92bdfc89afda04cbb4fd3d3e5848648cc0b326
|
448
|
+
* Refactored Merb::BootLoader::LoadClasses.reload into an additional remove_file method for other usage
|
449
|
+
* Fixed some failing specs
|
450
|
+
* Added rake :audit namespace to list routes, controllers and actions
|
451
|
+
* Remove occasionly committed *.rbc files.
|
452
|
+
* Ignore *.rbc created by Rubinius compiler.
|
453
|
+
* Make obj.full_const_get more robust
|
454
|
+
* forgot to comment out the text
|
455
|
+
* added DHH copyright notice to conre_ext/class.rb
|
456
|
+
* Better usage of merb_rake_helper.rb
|
457
|
+
* Added tasks/merb_rake_helper.rb - removed it from merb-more
|
458
|
+
* Refactored Merb::Controller.callable_actions
|
459
|
+
* Fixing bug in the rspec route matcher.
|
460
|
+
* More useful error for display errors
|
461
|
+
* Make load_paths a dictionary so models load first.
|
462
|
+
* Added Merb::Template.template_extensions as a semi-public method for getting known template extensions
|
463
|
+
* Prevent anonymous controller classes from making a Helper module
|
464
|
+
* We've Been Dup'd! - fixed nasty bug concerning class inheritable attrs
|
465
|
+
* Added Object.full_const_set
|
466
|
+
* Add helper for full_uri
|
467
|
+
* Adds a timestamp to a requests output
|
468
|
+
* Fixed documentation examples for dispatch spec helpers
|
469
|
+
* Added public method Merb::BootLoader::LoadClasses.load_classes(*paths)
|
470
|
+
* Only do the rubygems hack if it's needed and deal with cases where people are using the Gem cache library without using the commands.
|
471
|
+
* Updated docs on Merb#merge_env
|
472
|
+
* Merb Personalized Environments; Completed Merb#merge_env method, now accepts boolean parameter to optionally use the merged environments database connection
|
473
|
+
* fix typo in spec
|
474
|
+
* Check to see if the session responds to :data
|
475
|
+
* make nice for windows - remove app level loading (is handled in rakefile in merb-more now
|
476
|
+
* Typos
|
477
|
+
* YARD conversion of set.rb and time.rb
|
478
|
+
* YARD conversion of rubygems.rb
|
479
|
+
* YARD conversion of object_space.rb
|
480
|
+
* YARD conversion of object.rb
|
481
|
+
* YARD conversion of mash.rb
|
482
|
+
* YARD conversion of kernel.rb
|
483
|
+
* YARD conversion for hash.rb
|
484
|
+
* Convert class.rb over to YARD.
|
485
|
+
* Convert string.rb over to YARD format.
|
486
|
+
* Patch for missing inner_content method bug in HasTag
|
487
|
+
* Correct lable and line number in Router#compile
|
488
|
+
* Make merb.show_routes show named routes a bit more verbose.
|
489
|
+
* Make merb.show_routes a bit more verbose.
|
490
|
+
* Use single symbol instead of Array for ORM/test framework generator scopes.
|
491
|
+
* Add links to source at GitHub to boot diagram
|
492
|
+
* Merb core boot diagram is done and prettified
|
493
|
+
* Add support for a :session_cookie_domain config option to allow for setting the session cookie's domain.
|
494
|
+
* Add more advanced nested routes examples to Merb::Router::Behavior#match documentation.
|
495
|
+
* Add a bunch of pretty advanced spec examples for nested matches in routes.
|
496
|
+
* Code clean-up behavior.rb
|
497
|
+
* Created Documentation for new #match functionality
|
498
|
+
* Changes to behavior.rb to allow for :controller, :actions and :params options to be passed in
|
499
|
+
* Implemented Merb::Router::Behavior#match! that is a shortcut for match(...).to({}).
|
500
|
+
* Improve Merb boot diagram.
|
501
|
+
* Make each subsequent call to use_orm just replace effect of previos.
|
502
|
+
* Remove WIP spec for Merb::Router::Behavior#redirect.
|
503
|
+
* fix typo in request_spec.rb
|
504
|
+
* Needs to raise here since if the generator scope has more than one ORM the geneartors will not work.
|
505
|
+
* Log instead of raising when dependencies mechanism this ORM required twice.
|
506
|
+
* Get rid of Kernel#registered_orm?, it is no longer in use.
|
507
|
+
* Make Kernel#registred_orm? use simple include lookup.
|
508
|
+
* Fix spec and Kernel#registred_orm? conditions bug.
|
509
|
+
* Fix a typo.
|
510
|
+
* Fixed erronous documentation in Merb::Router::Behavior
|
511
|
+
* Working on Behaviour#redirect feature: stashing changes.
|
512
|
+
* update callable_actions to exclude any methods beggining with an _underscope
|
513
|
+
* Adds template-checking code to branch where :with option is specified in partials.
|
514
|
+
* Add two notes on layout method versus :layout option of render method.
|
515
|
+
* Forget to add template for added spec example.
|
516
|
+
* Add spec example for render :layout => false that overrides layout.
|
517
|
+
* More sweet empty lines management in controller fixtures.
|
518
|
+
* Clean up empty lines in fixture controller.
|
519
|
+
* Fix _template_for documentation: content type does not default to nil.
|
520
|
+
* Update render method documentation, we support :layout => false.
|
521
|
+
* JSON objects that do not inflate to hashes should populate params[:inflated_object] (Ticket #316)
|
522
|
+
* update new rack middleware machinery to be more merb style in the bootloader
|
523
|
+
* Changed MerbDispatch to MerbApplication. Fixed error in deferred? call chain.
|
524
|
+
* More flexible composition of merb application
|
525
|
+
* Start implementing Merb::Router::Behavior#redirect.
|
526
|
+
* A note on condition block and deferred routes.
|
527
|
+
* Note on thread safety of routes compilation.
|
528
|
+
* Explain what Merb::Router does and what routes compilation is.
|
529
|
+
* Explain how "form used by Merb::Router" is often referred.
|
530
|
+
* Be explicit on what Merb::Router::Route#if_condition actually does and how it is used.
|
531
|
+
* Add a note that Merb::Router::Route#generate uses #to_param on parameters.
|
532
|
+
* Be explicit on what Merb::Router::Route#generate actually does.
|
533
|
+
* Add a note to Merb::Router::Route#name documentation.
|
534
|
+
* Add note on string representation of routes.
|
535
|
+
* More explicit documentation for Merb::Router::Router#register.
|
536
|
+
* Add section on fixation of routes.
|
537
|
+
* Another take on better Merb::Router::Route documentation.
|
538
|
+
* New Merb::Router::Route documentation probably got a bit better.
|
539
|
+
* Something that looks like detailed Merb::Router::Route but needs a lot of work.
|
540
|
+
* Add first naive spec examples for Merb::Router::Route#compile.
|
541
|
+
* Use .prepare when we do not really need .prepend
|
542
|
+
* Made sure default format response_header can set explicit Content-Type header
|
543
|
+
* Default format response_headers cannot overwrite runtime-set (controller) headers
|
544
|
+
* Mirror plural spec from singular. Fix a couple of revealed failures.
|
545
|
+
* Actually implemented Merb.add_mime_type's new_response_headers
|
546
|
+
* Add cases that were failing in pluralization specs to singularization spec.
|
547
|
+
* Fix failures in pluralization specs. Add more cases.
|
548
|
+
* spec/private/vendor/inflector => spec/private/vendor/facets
|
549
|
+
* Pluralization spec examples.
|
550
|
+
* Move singularization specs to separate file.
|
551
|
+
* More spec examples for inflector.
|
552
|
+
* Improve spec coverage of inflector.
|
553
|
+
* Improve inflector spec coverage: separate cases into groups.
|
554
|
+
* Fix a typo exposed by spec suite.
|
555
|
+
* Initial set of spec examples for inflector.
|
556
|
+
* Changed vague :request_headers term into :accepts (meaning HTTP Accept header)
|
557
|
+
* Sweet empty lines management in spec helper.
|
558
|
+
* Increase sleep time reloader spec.
|
559
|
+
* Unwanted change to autotest slipped in, must get better at git
|
560
|
+
* More reliable reloader test with fewer sleeps
|
561
|
+
* remove :nodoc: from merb-core DO NOT USE :nodoc: EVAR!!
|
562
|
+
* More lower-level spec examples for Merb::Router::Route.
|
563
|
+
* More lower-level specs for Merb::Routing::Route.
|
564
|
+
* Initial set of lower-level specs for Merb::Router::Route methods.
|
565
|
+
* Rename file with extra unit specs for Merb::Router
|
566
|
+
* Removed extra comment.
|
567
|
+
* Finished Merb::Router unit-ish spec.
|
568
|
+
* Initial lower-level specs for router.
|
569
|
+
* Fix for users with spaces in gem path
|
570
|
+
* Add missing specs for route fixation.
|
571
|
+
* Add matched_route_for spec helper to get raw Route instance.
|
572
|
+
* Exclude unwanted files from rcov analysis.
|
573
|
+
* Make Rakefile respect GEM_HOME. Thanks Corey Jewett.
|
574
|
+
* Add extra output lines to Merb::Server methods if verbose mode is on.
|
575
|
+
* Add -V/--verbose options.
|
576
|
+
* Improve documentation of session persist/finalize exception callbacks.
|
577
|
+
* Initial specs for Merb::SessionMixin
|
578
|
+
* Tiny documentation touchups
|
579
|
+
* Require RubyGems first before spec to satisfy Autotest.
|
580
|
+
* Exception handler callbacks for finalize_session and persist
|
581
|
+
* Update Merb core boot diagram a bit.
|
582
|
+
* Documentation for Merb::BootLoader::DropPid bootloader.
|
583
|
+
* add in string so that @element.contains? will work when @element is a string and not just Hpricot::Elem
|
584
|
+
* remove hpricot as a merb-core dependency since it is never loaded at runtime.
|
585
|
+
* Merb::BootLoader::Templates now uses _template_roots not just _template_root
|
586
|
+
* add in support for core tasks, and first core task -- routes
|
587
|
+
* Fix Webrick support by preferring REQUEST_PATH over REQUEST_URI
|
588
|
+
* Changed Merb::BootLoader::BeforeAppRuns into Merb::BootLoader::BeforeAppLoads which matches Merb::BootLoader::AfterAppLoads
|
589
|
+
* Added option to Controller#redirect(url, permanent) so 301 responses can be returned as well
|
590
|
+
* Bump version in core to 0.9.4.
|
591
|
+
* Pump version to 0.9.4.
|
592
|
+
* throw argument error when filter receives an invalid option
|
593
|
+
* spec for ticket 307
|
594
|
+
* Update GitHub gemspec.
|
595
|
+
* fixed description of daemonize spec in Merb::Config
|
596
|
+
* Trick Git: change SHA1 of tree to push recent binary files changes.
|
597
|
+
* Add PNG version of call stack diagram
|
598
|
+
* Add call stack diagram source file, in Mind Manager format.
|
599
|
+
* Add expanded call stack diagram: probably Git does not work perfectly with binary diffs.
|
600
|
+
* Temporarily wipe out call stack diagram
|
601
|
+
* Expand all nodes on call stack diagram.
|
602
|
+
* Add Merb core call stack (yet to be finished).
|
603
|
+
* Fixed cruddy doc comments.
|
604
|
+
* Remove nil items from params when generating routes
|
605
|
+
* Fixed typo in resource rdoc
|
606
|
+
* cleaned up a bit. removed dependency on to_params value in controller test.
|
607
|
+
* added ability to set the Location header with display and render
|
608
|
+
* remove useless complexity from the logger.
|
609
|
+
* 0.9.3 changelog
|
610
|
+
* Remove special case for dm-core in use_orm
|
611
|
+
* removing __app_file_trace__ since it doesn't work.
|
612
|
+
* Add Emacs TAGS to ignore
|
613
|
+
* Explain Merb application layouts in documentation.
|
614
|
+
* Benchmarks
|
615
|
+
* Allow http status to be a symbol - refactored String snake_case method
|
616
|
+
* Explain how to set up /lib autoload in documentation.
|
617
|
+
* Make change_priveledge actually work
|
618
|
+
* bump merb-core version to 0.9.3 in prep for release.
|
619
|
+
* Add new -R/--rackup option to the full(-ish) list of options.
|
620
|
+
* Provide opts for alternate rackup config path. This is consistent with --rackup option for thin and gives a little more freedom to specify the rackup config (instead of being forced to rack.rb).
|
621
|
+
* Testing Merb::Test::RequestHelper#request method to properly handle namespaced routes
|
622
|
+
* test request helpers support namespaced routes
|
623
|
+
* Added parentheses to be_kind_of to get rid of warnings when running application_spec.rb
|
624
|
+
* Fixing pidfiles glob on cluster and pidfile argument
|
625
|
+
* replaced nested 'if' with an 'elseif'
|
626
|
+
* params array serialization
|
627
|
+
* Added handling of INT signal for Merb server in foreground mode
|
628
|
+
* Remove redundant unescape for cookie string
|
629
|
+
* Ensure that Merb::Logger doesn't try to close terminal streams.
|
630
|
+
* Ensure that Merb::Logger doesn't try to close terminal streams.
|
631
|
+
* Added support for multiple keys to designate a resource. For use with Datamapper composite keys support http://www.datamapper.org/articles/spotlight_on_cpk.html
|
632
|
+
* Make Provide controller matcher doc conform to Merb standards.
|
633
|
+
* Whoops. Had target and expected backwards.
|
634
|
+
* Added Provide matcher class, so you can do "controller.should provide( :xml )" in your specs.
|
635
|
+
* completed spec to Merb::Logger#new
|
636
|
+
* Adding missing info about ebb adapter.
|
637
|
+
* Show merb usage if first argument is not a switch
|
638
|
+
* Fix a spelling error and properly RDoc'ify a method name
|
639
|
+
* Fix bug in --very-flat (allow direct inheritance from Merb::Controller)
|
640
|
+
* Changed copyright date in footer of HTML pages from 2007 to 2008
|
641
|
+
* Append the content_type to the given :template option for render()
|
642
|
+
* Replaced remaining ::STATUS constant references to .status method calls
|
643
|
+
* Refactored Exception status handling/inheritance (it actually works now!)
|
644
|
+
* Make Inflector#plural and Inflector#singular conform to Merb doc standard.
|
645
|
+
* Update inflector documentation.
|
646
|
+
* Tiny docs update to Merb::Server.
|
647
|
+
* Example (from merb_sequel) and corrections to the way Merb finds out plugins Rakefiles.
|
648
|
+
* Docs updates for lib/merb-core.rb.
|
649
|
+
* Reasonable doc examples for Merb.push_path and Merb.remove_paths.
|
650
|
+
* Fix for kill so that cli options are read and handled before kill is actually called. Need this to handle kill under custom pid file scenario.
|
651
|
+
* Updating pidfile cluster fix to handle any extension.
|
652
|
+
* Adding support for pidfile setting with cluster nodes setting. Moving pid file path lookup to separate method.
|
653
|
+
* Correction to Merb::GlobalHelper.log_path docs.
|
654
|
+
* Use Notes instead of Note in docs.
|
655
|
+
* Use Notes instead of Note everywhere in docs.
|
656
|
+
* Add reference to Merb configuration options list to #config method docs.
|
657
|
+
* Wording (Merb::GlobalHelpers.testing? docs).
|
658
|
+
* Better docs for configuration parameters.
|
659
|
+
* Document Merb configuration options in one place.
|
660
|
+
* Another note on framework freezing in docs.
|
661
|
+
* Add explaination of freezing to the documentation
|
662
|
+
* Add a note on supported session types.
|
663
|
+
* Insert line for viewing convenience.
|
664
|
+
* Make Merb::GlobalHelpers.deferrable_actions conform to Merb documentation standard.
|
665
|
+
* Missing documentation for Merb::GlobarHelpers.deferred_actions
|
666
|
+
* Update Kernel#__profile__ documentation.
|
667
|
+
* make in? splat args
|
668
|
+
* Add Object#in? for checking array inclusion
|
669
|
+
* Removed dependency on memcache-client 'memcache_util.rb' which was dependent on ActiveRecord::Base for logging exceptions.
|
670
|
+
* Update documentation to reflect changes in the way #display handles custom options.
|
671
|
+
* Make #display method pass all 'unknown' options to serialization method.
|
672
|
+
* Adds the github gemspec file
|
673
|
+
* Adds Code for generating a gemspec for github
|
674
|
+
* Adds a question method to determine environment. eg Merb.env?(:production)
|
675
|
+
* Give useful information when no template is found for a partial
|
676
|
+
* Really resolve merge conflicts.
|
677
|
+
* Provide hook for param filtering
|
678
|
+
* hopefully the last fix for session fixation, woot woot
|
679
|
+
* Be clear about what is the default init file Merb uses in RDoc.
|
680
|
+
* A bit clearer --init-file option description.
|
681
|
+
* Fix header shown in help: Merb is not longer 'Mongrel + Erb, a lightweight replacement for ActionPack' but a framework on it's own.
|
682
|
+
* Correct doc in Merb::Controller: it uses SimpleSet for callable actions at the moment.
|
683
|
+
* Document Merb::SimpleSet
|
684
|
+
* Remove InvalidPathConversion exception: it is used nowhere in the core.
|
685
|
+
* Update homepage in gem specification.
|
686
|
+
* Clean up String extensions spec.
|
687
|
+
* Remove it, hopefully no one seen it.
|
688
|
+
* Add a note on drawbacks of usage of ObjectSpace.
|
689
|
+
* Use a constant for reload spec instead of hardcoding time in 5 places or so.
|
690
|
+
* Revert "Refactor ToHashParser#from_xml a bit to be able to use parser faster than REXML. It is planned to support Hpricot and fall back to REXML."
|
691
|
+
* Use @ in publicity markers in RDoc.
|
692
|
+
* Use a constant for sleep time in reloading specs
|
693
|
+
* Refactor ToHashParser#from_xml a bit to be able to use parser faster than REXML. It is planned to support Hpricot and fall back to REXML.
|
694
|
+
* Empty lines management, how cool is that?
|
695
|
+
* Missing specs and improved documentation for Hash#to_mash.
|
696
|
+
* Tiny improvement to Object extensions documentation. More empty line management.
|
697
|
+
* One more example for Object#full_const_get; new spec group for Object#make_module.
|
698
|
+
* Missing specs for Object#full_const_path.
|
699
|
+
* Sweet empty lines management, what a wonderful way to apply yourself to.
|
700
|
+
* Kick off Class extensions spec-ing.
|
701
|
+
* Document inheritable attributes Class extension the Merb way, not ActiveSupport way with :nodoc:
|
702
|
+
* Remove Emacs-generated cruft from specs directory.
|
703
|
+
* Add missing specs for Class#reset_inheritable_attributes.
|
704
|
+
* Split Kernel#use_test into smaller methos. Document them. Add specs for them beforehand.
|
705
|
+
* Empty lines management, wonderful way to waste priceless time.
|
706
|
+
* Kernel#already_registred_orm? is a sucky name. Make it Kernel#registred_orm?. Yay.
|
707
|
+
* Split Kernel#use_orm guts into a bunch of smaller methods. Document those.
|
708
|
+
* Add missing specs for Kernel#dependencies and Kernel#load_dependencies.
|
709
|
+
* Pretty naive spec examples for Kernel#load_dependency.
|
710
|
+
* Add missing specs for Kernel#dependency
|
711
|
+
* Split 'misc' examples group in Kernel extensions spec: each method should have a separate group, ever.
|
712
|
+
* Clean up empty lines in Kernel extensions.
|
713
|
+
* Documentation for String#relative_path_from
|
714
|
+
* Add missing specs for String extensions.
|
715
|
+
* Remove helper that duplicated String#camel_case functionality, update the rest of spec suite.
|
716
|
+
* Fix a nasty String#camel_case bug revealed but new shiny spec for String extensions.
|
717
|
+
* Better formatting of spec suite run benchmark with good old sprintf.
|
718
|
+
* Use RSPEC_OPTS environment variable to override default spec run options.
|
719
|
+
* Report total spec suite run time.
|
720
|
+
* Add spec command run options to run_specs. Add tasks for profiled spec run.
|
721
|
+
* Unify &block documentation across Merb::Test::RequestHelper
|
722
|
+
* Fix example in Merb::Test::RequestHelper#request documentation.
|
723
|
+
* If deferred_actions are empty? we want a regex that will never match.
|
724
|
+
* More polish for deferred_actions support. Thin, Ebb and EMongrel adapters
|
725
|
+
* deferred?(env) now works with thin and ebb.
|
726
|
+
* Fixed some its vs. it's issues. (Learning git :)
|
727
|
+
* added delete action to docs
|
728
|
+
* Added error message for when a content_type is requested but not provided
|
729
|
+
* Syncronized code with rails branch. Delete call is required, because user cookie must be cleaned when TamperedWithCookie is raised.
|
730
|
+
* Specs using a method that called must_support_streaming! weren't recognizing the custom NotImplemented error. This change fixes this issue by specifying the entire object chain for its usage within the method.
|
731
|
+
* Fix number of examples in HTTP authentication spec.
|
732
|
+
* first step to adding deferred?(env) support for ebb and thin
|
733
|
+
* Use a dictionary instead of a Hash.
|
734
|
+
* Changed the display method to handle options properly, so that passing :layout => :false works. Added specs.
|
735
|
+
* Added \- to String.unescape_regexp
|
736
|
+
* added HasContent matcher
|
737
|
+
* Standardises the call to set_cookie to use the set_cookie method in cookies.rb by default
|
738
|
+
* Fix cookie sessions bug where you could not properly delete a cookie
|
739
|
+
* should not delete the key
|
740
|
+
* pass arguments to filters
|
741
|
+
* Added thrown_content? predicate method for use in templates.
|
742
|
+
* Added ability to specify :format in url() for named routes
|
743
|
+
* modified specs to test a route restriction based on the type of request (POST, GET, UPDATE, DELETE)
|
744
|
+
* Added 'use_orm :dm_core' option to use datamapper 0.9.0 with the dm-merb gem from dm-more
|
745
|
+
* fixed example for dispatch_with_basic_authentication_to
|
746
|
+
* Fixed typo
|
747
|
+
* reverted mistakenly introduced change in abstract controller
|
748
|
+
* added documentation
|
749
|
+
* slight fix to basic auth spec
|
750
|
+
* added support and specs for http basic authorization
|
751
|
+
* added dispatch helper for http basic authentication
|
752
|
+
* HTTP Basic authentication based on Rack
|
753
|
+
* Fixed lurking infinite loop with not so common formats and ExceptionController
|
754
|
+
* Refactored Merb::AbstractController.layout class method
|
755
|
+
* _dispatch returns @body
|
756
|
+
* really truly(?) fix stream_file ?
|
757
|
+
* really make sure stream_file works
|
758
|
+
* redo stream_file to (hopefully) work
|
759
|
+
* Added Time#to_json to Core Extensions, making the default JSON formatted output for Time objects ISO 8601 compatible.
|
760
|
+
* Added + unescape to String#unescape_regexp
|
761
|
+
* Added String#unescape_regexp for usage in Router::Route#generate
|
762
|
+
* BootLoader::LoadClasses now logs the actual exceptions
|
763
|
+
* add mutex around compiled statement generation in the router so reloading doesn't step
|
764
|
+
* Revert ExampleGroup changes as they were causing failing specs
|
765
|
+
* Added render(template_path) feature to view specs.
|
766
|
+
* RSpec ExampleGroups for Merb controllers, views, helpers, models and routes.
|
767
|
+
* Prep 0.9.2
|
768
|
+
* Resolves #209
|
769
|
+
* * removed Merb.logger calls due to the fact the bootloader did not ran by now and it is not initialized.
|
770
|
+
* use __send__ rather than send
|
771
|
+
* Fixed exception setting route when route_index is nil
|
772
|
+
* memoize the raw_post body after its called once
|
773
|
+
* fix Request#raw_post to respect bodies with no rewind method
|
774
|
+
* remove Kernel#requires it wasn't being used.
|
775
|
+
* Move fixation to post initialize
|
776
|
+
* typo
|
777
|
+
* add specs for does_not_provide
|
778
|
+
* Add specs for action-level only_provides
|
779
|
+
* Make controller.route work
|
780
|
+
* Update Ebb adapter to work with latest Ebb 0.1.0 [Ry Dahl]
|
781
|
+
* fix PATH_INFO bug for fcgi
|
782
|
+
* Rename url_with_host to absolute_url
|
783
|
+
* Add url_with_host() and allow params to be pushed into FCGI adapter
|
784
|
+
* More correct to_json of dictionary.
|
785
|
+
* Modify dispatcher to be sane to XHRs; add to_json to dictionaries.
|
786
|
+
* Added html_escape around the exception.message in the show details section.
|
787
|
+
* Fixed bug not allowing have_tag to be called without a attribute hash, even when one is not desired
|
788
|
+
* fix typo
|
789
|
+
* refactor and clean up Merb::BootLoader::Dependencies [James Herdman]
|
790
|
+
* ticket 202
|
791
|
+
* This keeps erroring out, i hope it didnt commit multiple times:
|
792
|
+
* Merb::BootLoader::LoadClasses should keep unique list of classes
|
793
|
+
* Logger now works as expected, fixed ReloadClasses bootloader
|
794
|
+
* Fixes cookie sessions when the session is blanked out.
|
795
|
+
* catch_content should default to :for_layout
|
796
|
+
* Added --sandbox (-S) option for IRB console
|
797
|
+
* Fixes the dispatch_to request helper to conver the action name to a string.
|
798
|
+
* Added Merb.testing? method
|
799
|
+
* Fixed critical bug in LoadClasses BootLoader concerning reloading
|
800
|
+
* Important changes to the BootLoader process
|
801
|
+
* Added Kernel.load_dependencies method; better docs/comments.
|
802
|
+
* Bugfixes concerning BootLoader and load order in general
|
803
|
+
* fully qualify fcgi rack handler
|
804
|
+
* Set mongrel as default adapter unless other alternative options are specified
|
805
|
+
* Fix configuring session_id_key so that it works
|
806
|
+
* url(:foo, 3) should notice 3 is a Fixnum, and use it instead of 3.id
|
807
|
+
|
808
|
+
== 0.9.3 "We Sold Our Soul for Rock 'n' Roll" 2008-05-03
|
809
|
+
* Added render(template_path) feature to view specs.
|
810
|
+
* add mutex around compiled statement generation in the router so reloading doesn't step
|
811
|
+
* BootLoader::LoadClasses now logs the actual exceptions
|
812
|
+
* Added String#unescape_regexp for usage in Router::Route#generate
|
813
|
+
* Added Time#to_json to Core Extensions so JSON formatted output for Time is ISO 8601 compatible
|
814
|
+
* redo stream_file to (hopefully) work
|
815
|
+
* _dispatch returns @body
|
816
|
+
* Refactored Merb::AbstractController.layout class method
|
817
|
+
* Fixed lurking infinite loop with not so common formats and ExceptionController
|
818
|
+
* HTTP Basic authentication based on Rack
|
819
|
+
* added dispatch helper for http basic authentication
|
820
|
+
* added support and specs for http basic authorization
|
821
|
+
* modified specs to test a route restriction based on the request method
|
822
|
+
* Added ability to specify :format in url() for named routes
|
823
|
+
* Added thrown_content? predicate method for use in templates.
|
824
|
+
* pass arguments to filters
|
825
|
+
* Fix cookie sessions bug where you could not properly delete a cookie
|
826
|
+
* Standardises the call to set_cookie to use the set_cookie method in cookies.rb by default
|
827
|
+
* added HasContent matcher
|
828
|
+
* Added \- to String.unescape_regexp
|
829
|
+
* Changed the display method to handle options properly, so that passing :layout => :false works.
|
830
|
+
* Added error message for when a content_type is requested but not provided
|
831
|
+
* added delete action to docs
|
832
|
+
* deferred?(env) now works with thin and ebb.
|
833
|
+
* If deferred_actions are empty? we want a regex that will never match.
|
834
|
+
* Fix example in Merb::Test::RequestHelper#request documentation.
|
835
|
+
* Unify &block documentation across Merb::Test::RequestHelper
|
836
|
+
* Add spec command run options to run_specs. Add tasks for profiled spec run.
|
837
|
+
* Report total spec suite run time.
|
838
|
+
* Use RSPEC_OPTS environment variable to override default spec run options.
|
839
|
+
* Better formatting of spec suite run benchmark with good old sprintf.
|
840
|
+
* Fix a nasty String#camel_case bug revealed but new shiny spec for String extensions.
|
841
|
+
* Remove helper that duplicated String#camel_case functionality, update the rest of spec suite.
|
842
|
+
* Split 'misc' examples group in Kernel extensions spec: each method should have a separate group
|
843
|
+
* Split Kernel#use_orm guts into a bunch of smaller methods. Document those.
|
844
|
+
* Kernel#already_registred_orm? is a sucky name. Make it Kernel#registred_orm?. Yay.
|
845
|
+
* Split Kernel#use_test into smaller methos. Document them. Add specs for them beforehand.
|
846
|
+
* Use a constant for sleep time in reloading specs
|
847
|
+
* Use @ in publicity markers in RDoc.
|
848
|
+
* Remove InvalidPathConversion exception: it is used nowhere in the core.
|
849
|
+
* A bit clearer --init-file option description.
|
850
|
+
* Be clear about what is the default init file Merb uses in RDoc.
|
851
|
+
* hopefully the last fix for session fixation, woot woot
|
852
|
+
* Provide hook for param filtering
|
853
|
+
* Give useful information when no template is found for a partial
|
854
|
+
* Adds a question method to determine environment. eg Merb.env?(:production)
|
855
|
+
* Make #display method pass all 'unknown' options to serialization method.
|
856
|
+
* Add Object#in? for checking array inclusion
|
857
|
+
* Update Kernel#__profile__ documentation.
|
858
|
+
* Adding support for pidfile setting with cluster nodes setting.
|
859
|
+
* Updating pidfile cluster fix to handle any extension.
|
860
|
+
* Fix for kill so that cli options are read and handled before kill is actually called.
|
861
|
+
* Refactored Exception status handling/inheritance (it actually works now!)
|
862
|
+
* Replaced remaining ::STATUS constant references to .status method calls
|
863
|
+
* Append the content_type to the given :template option for render()
|
864
|
+
* Fix bug in --very-flat (allow direct inheritance from Merb::Controller)
|
865
|
+
* Show merb usage if first argument is not a switch
|
866
|
+
* Adding missing info about ebb adapter.
|
867
|
+
* completed spec to Merb::Logger#new
|
868
|
+
* Added Provide matcher class, so you can do "controller.should provide( :xml )" in your specs.
|
869
|
+
* Added support for multiple keys to designate a resource. For use with Datamapper composite keys
|
870
|
+
* Ensure that Merb::Logger doesn't try to close terminal streams.
|
871
|
+
* Remove redundant unescape for cookie string
|
872
|
+
* Added handling of INT signal for Merb server in foreground mode
|
873
|
+
* params array serialization
|
874
|
+
* Fixing pidfiles glob on cluster and pidfile argument
|
875
|
+
* test request helpers support namespaced routes
|
876
|
+
* Testing Merb::Test::RequestHelper#request method to properly handle namespaced routes
|
877
|
+
* Provide opts for alternate rackup config path.
|
878
|
+
* Add new -R/--rackup option to the full(-ish) list of options.
|
879
|
+
* Make change_priveledge actually work
|
880
|
+
* Allow http status to be a symbol - refactored String snake_case method
|
881
|
+
* removing __app_file_trace__ since it doesn't work.
|
882
|
+
|
883
|
+
== 0.9.2 "appropriate response to reality" 2008-03-24
|
884
|
+
* removed Merb.logger calls due to the fact the bootloader did not ran by now and it is not initialized.
|
885
|
+
* use __send__ rather than send
|
886
|
+
* Fixed exception setting route when route_index is nil
|
887
|
+
* memoize the raw_post body after it's called once
|
888
|
+
* fix Request#raw_post to respect bodies with no rewind method
|
889
|
+
* remove Kernel#requires it wasn't being used.
|
890
|
+
* Move fixation to post initialize
|
891
|
+
* add specs for does_not_provide
|
892
|
+
* Add specs for action-level only_provides
|
893
|
+
* Make controller.route work
|
894
|
+
* Update Ebb adapter to work with latest Ebb 0.1.0 [Ry Dahl]
|
895
|
+
* fix PATH_INFO bug for fcgi
|
896
|
+
* Rename url_with_host to absolute_url
|
897
|
+
* Add url_with_host() and allow params to be pushed into FCGI adapter
|
898
|
+
* More correct to_json of dictionary.
|
899
|
+
* Modify dispatcher to be sane to XHRs; add to_json to dictionaries.
|
900
|
+
* Added html_escape around the exception.message in the show details section.
|
901
|
+
* Fixed bug not allowing have_tag to be called without a attribute hash, even when one is not desired
|
902
|
+
* refactor and clean up Merb::BootLoader::Dependencies [James Herdman]
|
903
|
+
* Merb::BootLoader::LoadClasses should keep unique list of classes
|
904
|
+
* Logger now works as expected, fixed ReloadClasses bootloader
|
905
|
+
* Fixes cookie sessions when the session is blanked out.
|
906
|
+
* catch_content should default to :for_layout
|
907
|
+
* Added --sandbox (-S) option for IRB console
|
908
|
+
* Added Merb.testing? method
|
909
|
+
* Fixes the dispatch_to request helper to conver the action name to a string.
|
910
|
+
* Added Merb.testing? method
|
911
|
+
* Fixed critical bug in LoadClasses BootLoader concerning reloading
|
912
|
+
* Important changes to the BootLoader process
|
913
|
+
* Added Kernel.load_dependencies method; better docs/comments.
|
914
|
+
* Bugfixes concerning BootLoader and load order in general
|
915
|
+
* fully qualify fcgi rack handler
|
916
|
+
* Set mongrel as default adapter unless other alternative options are specified
|
917
|
+
* Fix configuring session_id_key so that it works
|
918
|
+
* url(:foo, 3) should notice 3 is a Fixnum, and use it instead of 3.id
|
919
|
+
* make load order of core_ext explicit
|
920
|
+
* Modifies before/after in BootLoader to actually work.
|
921
|
+
* ix not-available vs. not-provided bug in content negotiation
|
922
|
+
* Fixed display bug which caused default error exception pages to improperly display drop-down twirly if the path name exceeded the line length.
|
923
|
+
* remove symbolize_keys! as we don't use it anywhere. by now..
|
924
|
+
* Rework bootloader to make more sense for flat apps (specifically framework load)
|
925
|
+
* More fixes to the flat autoloader
|
926
|
+
* remove custom_* resource route, use :member or :collection instead
|
927
|
+
* fix logger specs
|
928
|
+
* Fixes bug with framework not being defined.
|
929
|
+
* make sure logger bang! methods do not flush unless the proper log level is used.
|
930
|
+
* Updates the request spec to account for the new from_xml behaviour
|
931
|
+
* Adds specs and changes for compatibility with ActiveSupport. There is one caveat. It will not change YAML generated Hash keys to strings if they are defined as symbols as is currently the behaviour of ActiveSupport.
|
932
|
+
* update the logger. no longer accept an optional block to call.
|
933
|
+
* remove some vestigal config defaults
|
934
|
+
* Add rack adapter for Ebb, damn it's fast!
|
935
|
+
* coerce the port to an integer when starting mongrel (jruby compat)
|
936
|
+
* remove specs for dependency as they were broittle and not testing the right thing.
|
937
|
+
* Fixes #155 (_perform_content_negotiation doesn't find */* if it comes last in the accept header order, and nothing else matches)
|
938
|
+
* Changes use_test to wrap only the call to dependencies in the check for Merb.environment == "test"
|
939
|
+
|
940
|
+
== 0.9.1 "Some are half-wild, and some are just outlaws." 2008-02-29
|
941
|
+
|
942
|
+
* Put spec tasks into namespaces and method for specifying pnly a certain model/controller/view to run against
|
943
|
+
* As a last resort, look for */* in the formats before throwing NotAcceptable (TODO: Clean this up)
|
944
|
+
* Fix perform_content_negotiation to correctly handle :format in params. Fix render_* to correctly return the correct content_type.
|
945
|
+
* remove hooks.rb, they were premature and only used in one place
|
946
|
+
* fix evented mongrel to not go crazy
|
947
|
+
* Calling /foo.pdf should throw a 406 if :pdf is not a registered mime.
|
948
|
+
* touch up dispatcher a bit, remove some un-needed code from the hot path
|
949
|
+
* fix dispatcher to not parse the params twice, still supports request_params
|
950
|
+
* fix Exception in exception.html.erb
|
951
|
+
* moved rspec rake tasks into core. Added Merb.rakefiles, which is now used by Merb::Plugins.rakefiles. Changed Kernel#use_test to only load dependency arguments when Merb.env is nil or test.
|
952
|
+
* do not load test framework unless Merb.env == 'test'
|
953
|
+
* Use new Object.make_module to create the module instead of old hackish solution.
|
954
|
+
* Don't clear our mimes previously defined.
|
955
|
+
* Fixed clean task deleting everything in the lib folder
|
956
|
+
* Kernel#dependency requires gems/files in a before_app_loads block.
|
957
|
+
* Move dependency loading after framework and look for framework.rb
|
958
|
+
* Creates helper stub modules for controllers.
|
959
|
+
* fix blank path error.
|
960
|
+
* Cooler errors
|
961
|
+
* add named routes to error page
|
962
|
+
* updates to nested resources
|
963
|
+
* get autotest working for merb-core
|
964
|
+
* Symbolize params in route generation, to accomodate Mashes
|
965
|
+
* Fixes :status not working on strings.
|
966
|
+
* update thin adapter to newest way of silencing the log
|
967
|
+
* :format => :html possible in partials
|
968
|
+
* print request URI when "No routes match the request" error thrown
|
969
|
+
* fix merb -i
|
970
|
+
* Make Merb.start default to the runner adapter
|
971
|
+
* It's now possible to send binary data using the send_data method
|
972
|
+
and to specify the disposition, filename and type of the data being sent.
|
973
|
+
* Fix memcached session writes
|
974
|
+
* allow the setting of a custom session key
|
975
|
+
* Changed TemplateNotFound to stop so much confusion about incorrect
|
976
|
+
template locations because it doesn't include .*
|
977
|
+
* fix dropping of pid files in cluster and daemon mode
|
978
|
+
* Nested partials don't blow away locals.
|
979
|
+
* Better loading of classes
|
980
|
+
* Support concat and test capture/concat
|
981
|
+
* Added single key assignment to Merb.config
|
982
|
+
* Move url method from ControllerMixin to AbstractController for use in
|
983
|
+
Mailers and Parts etc.
|
984
|
+
* Merb.config now returns Merb::Config instead of the current
|
985
|
+
configuration hash.
|
986
|
+
* Added Merb.reload which reloads the framework classes.
|
987
|
+
* Adding Merb.env shorthand for Merb.environment
|
988
|
+
* Added a quaint Merb Configurator
|
989
|
+
* With bootloader order changes, environment was not getting loaded
|
990
|
+
* Fix cookie parsing from localhost, add spec
|
991
|
+
* Add support for multiple template roots
|
992
|
+
* Allow override of router.rb file in config
|
993
|
+
* Modify behavior of 'namespace' in the router
|
994
|
+
* Fix content negotiation for IE and its stupid accept header.
|
995
|
+
* Only serve static files when the HTTP method is GET or HEAD. Other
|
996
|
+
requests should still be handled by Merb.
|
997
|
+
* Add path_prefix support.
|
998
|
+
* Changes dispatch_to spec helper to yield the controller
|
999
|
+
* redo of load_dependency, after_app_loads callback, and Kernel changes
|
1000
|
+
* Added Merb.logger.auto_flush
|
1001
|
+
* Fix nested resource routing
|
1002
|
+
* Do not drop PID file is not running as daemon or cluster
|
1003
|
+
* Fixed problem with resources inside a namespace block
|
1004
|
+
* Added support for dynamic layouts.
|
1005
|
+
* adding conditional behaviour to filters :if and :unless
|
1006
|
+
* Use the escape_xml from Erubis rather than rolling our own
|
1007
|
+
* Add a merb.reload! command to the merb -i console.
|
1008
|
+
* Get rid of StringScanner dependency.
|
1009
|
+
* Fix render_then_call to support new streaming tech.
|
1010
|
+
* Fix filter specs to respect append order of filters.
|
1011
|
+
* check for empty string before calling to_sym on the format parameter
|
1012
|
+
* fake requests are incorrectly loading controller classes with namespaces
|
1013
|
+
* Fix the RubyGems monkeypatch by testing for Merb.root instead of looking in $"
|
1014
|
+
* fix core spec dependency on merb_rspec
|
1015
|
+
* Replace calls to puts with Merb.logger
|
1016
|
+
* Fix problem with static files, use Proc === body
|
1017
|
+
* Added file and line information for evals in router.rb.
|
1018
|
+
|
1019
|
+
== 0.9.0 "All you need, none you don't" 2008-02-13
|
1020
|
+
* Developer Only Release
|
1021
|
+
* Split merb into merb-core and merb-more
|
1022
|
+
|
1023
|
+
== 0.5.3 "Inexperienced With Girls" 2008-01-28
|
1024
|
+
* Improved handling of models/controllers with dependencies
|
1025
|
+
* Improved cluster starting/stopping
|
1026
|
+
* Frozen script/merb should really work now
|
1027
|
+
* Merb::Cookies is used for cookie jar purposes
|
1028
|
+
* test_helper no longer assumes rspec mocking framework
|
1029
|
+
* asset bundler handles strings and symbols
|
1030
|
+
* render() now has an option for explicitly rendering an object
|
1031
|
+
* Fixed annoying bug in exception rendering for 500 internal_server_error
|
1032
|
+
* testing request helper accepts an option hash
|
1033
|
+
|
1034
|
+
== 0.5.2 "Great White North" 2008-01-14
|
1035
|
+
* Make Merb.load_paths accessible for modification
|
1036
|
+
* Fix issues with running frozen apps
|
1037
|
+
|
1038
|
+
== 0.5.1 "Electic Boogaloo" 2008-01-10
|
1039
|
+
* Fix 0.5.0
|
1040
|
+
|
1041
|
+
== 0.5.0 "Thanks Zed" 2008-01-09
|
1042
|
+
* Added asset bundling for Javascript and stylesheet files
|
1043
|
+
|
1044
|
+
== 0.4.2 "Surf's up." 2007-12-14
|
1045
|
+
* Super-huge speed boost for rendering Erubis templates with partials
|
1046
|
+
* Windows-specific fixes to Merb's Rakefile
|
1047
|
+
* Blocking write is called when in development, test, Windows and jRuby environments and platforms.
|
1048
|
+
* merb_helpers: form field labels are now explicit, huge documentation update, added select, fieldset, more helpers
|
1049
|
+
* Fixed merb.show_routes within merb -i
|
1050
|
+
* Fixed image_tag, css_include_tag, and js_include_tag to work with path_prefix
|
1051
|
+
* Adds spec helper methods with_route and dispatch_to
|
1052
|
+
* fix rakefile cfor cygwin
|
1053
|
+
* add count with collection to partial()
|
1054
|
+
* Form control mixin is deprecated Use merb_helpers plugin.
|
1055
|
+
* add redirect matcher to rspec test helpers
|
1056
|
+
* allow r.resource(:foo, :myparam => 42) resource routes pass on params to underlying match() call
|
1057
|
+
* spit out error and help message if you call merb with no args
|
1058
|
+
* get rid of dependency on mongrel for escape and unescape
|
1059
|
+
* make sure not to use write_nonblock when logging to STDOUT
|
1060
|
+
* Fixed image_tag, css_include_tag, and js_include_tag to work with path_prefix
|
1061
|
+
* fix set_status to actually work, add docs,
|
1062
|
+
* config/merb.yml is now correctly loaded from Rake and test environment - using Merb::Server.load_config
|
1063
|
+
* added config option to disable loading of the JSON gem - still enabled by default
|
1064
|
+
* don't raise if names local on a partial is nil
|
1065
|
+
* Use svn export instead of checkout upon merb:freeze_from_svn
|
1066
|
+
* Extracted url and other general methods out of ControllerMixin into GeneralControllerMixin
|
1067
|
+
* fix caching of @_buffer in render, form_for
|
1068
|
+
* Seperates spec helpers into the Merb::Test namespace to prevent spec methods leaking into specs
|
1069
|
+
* Changes the spec url helper method to the same used in the controller
|
1070
|
+
* Made Request#parse_multipart return an empty hash instead of nil if the request is not multipart
|
1071
|
+
* Changes throw_content so that it can be called without a block
|
1072
|
+
* Added :namespace option to routes.
|
1073
|
+
|
1074
|
+
== 0.4.1 "Faster Partials or Partially Faster?" 2007-11-12
|
1075
|
+
* Fixed pluralization issues with generators
|
1076
|
+
* Resource generators are much improved
|
1077
|
+
* url() helper now supports nested resources
|
1078
|
+
* url(:post, @post) observers @post.new_record? and adjusts accordingly
|
1079
|
+
* Fixed bug with empty Accept headers
|
1080
|
+
* Added config/boot.rb to load framework from gems or framework/ dir
|
1081
|
+
* New partial() is much faster (and less buggy)
|
1082
|
+
* render :partial no longer supported
|
1083
|
+
* Add a buffered logger
|
1084
|
+
* Fixes bug with parameterized actions on some platforms
|
1085
|
+
* partial can now be called on collections:
|
1086
|
+
* partial("widget", :with => @new_widgets, :as => "widget")
|
1087
|
+
* SMTP mailer now supports non-AUTH setups
|
1088
|
+
* set_status() can take symbolic codes like :not_found
|
1089
|
+
* JRuby compat fixes
|
1090
|
+
* Speed boost, esp. with rendering
|
1091
|
+
* Fix spec_helper running against development database
|
1092
|
+
* Fix major bug with sessions not working
|
1093
|
+
|
1094
|
+
== 0.4.0 "This ain't yo mommas merb" 2007-11-06
|
1095
|
+
|
1096
|
+
== 0.3.7 "Out of the basement" 2007-08-05
|
1097
|
+
|
1098
|
+
== 0.3.4 "Route fixer" 2007-05-31
|
1099
|
+
|
1100
|
+
== 0.3.3 "Hey buddy can you spare a route generator?" 2007-05-31
|
1101
|
+
|
1102
|
+
== 0.3.1 "The Fixed and the Furious" 2007-04-30
|
1103
|
+
|
1104
|
+
== 0.3.0 "The Fast and the Furious" 2007-04-28
|
1105
|
+
|
1106
|
+
== 0.2.0 "Accept your fate and respond_to change" 2007-03-18
|
1107
|
+
|
1108
|
+
== 0.1.0 "Generation Herb" 2007-01-18
|
1109
|
+
|
1110
|
+
== 0.0.9 "merb is the new black" 2007-01-14
|
1111
|
+
|
1112
|
+
== 0.0.8 "Merbivore" 2006-12-17
|
1113
|
+
|
1114
|
+
== 0.0.7 "Lean and mean merbing machine" 2006-11-29
|
1115
|
+
|
1116
|
+
== 0.0.6 "The Black Belt Release" 2006-11-09
|
1117
|
+
|
1118
|
+
== 0.0.5 "The getting real release" 2006-11-01
|
1119
|
+
|
1120
|
+
== 0.0.4 "The toddler phase" 2006-10-26
|
1121
|
+
|
1122
|
+
== 0.0.3 "the switchblade suicide release" 2006-10-17
|
1123
|
+
|
1124
|
+
== 0.0.2 "the quicksliver release" 2006-10-16
|
1125
|
+
|
1126
|
+
== 0.0.1 "The pocket rocket release" 2006-10-15
|