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,1758 @@
|
|
1
|
+
#line 1 "parser.rl"
|
2
|
+
#include "ruby.h"
|
3
|
+
#include "re.h"
|
4
|
+
#include "st.h"
|
5
|
+
#include "unicode.h"
|
6
|
+
|
7
|
+
#define EVIL 0x666
|
8
|
+
|
9
|
+
static VALUE mJSON, mExt, cParser, eParserError, eNestingError;
|
10
|
+
static VALUE CNaN, CInfinity, CMinusInfinity;
|
11
|
+
|
12
|
+
static ID i_json_creatable_p, i_json_create, i_create_id, i_create_additions,
|
13
|
+
i_chr, i_max_nesting, i_allow_nan;
|
14
|
+
|
15
|
+
#define MinusInfinity "-Infinity"
|
16
|
+
|
17
|
+
typedef struct JSON_ParserStruct {
|
18
|
+
VALUE Vsource;
|
19
|
+
char *source;
|
20
|
+
long len;
|
21
|
+
char *memo;
|
22
|
+
VALUE create_id;
|
23
|
+
int max_nesting;
|
24
|
+
int current_nesting;
|
25
|
+
int allow_nan;
|
26
|
+
} JSON_Parser;
|
27
|
+
|
28
|
+
static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
29
|
+
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
30
|
+
static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
31
|
+
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
32
|
+
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
33
|
+
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
34
|
+
|
35
|
+
#define GET_STRUCT \
|
36
|
+
JSON_Parser *json; \
|
37
|
+
Data_Get_Struct(self, JSON_Parser, json);
|
38
|
+
|
39
|
+
#line 64 "parser.rl"
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
#line 44 "parser.c"
|
44
|
+
static const int JSON_object_start = 1;
|
45
|
+
static const int JSON_object_first_final = 27;
|
46
|
+
static const int JSON_object_error = 0;
|
47
|
+
|
48
|
+
static const int JSON_object_en_main = 1;
|
49
|
+
|
50
|
+
#line 97 "parser.rl"
|
51
|
+
|
52
|
+
|
53
|
+
static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
54
|
+
{
|
55
|
+
int cs = EVIL;
|
56
|
+
VALUE last_name = Qnil;
|
57
|
+
|
58
|
+
if (json->max_nesting && json->current_nesting > json->max_nesting) {
|
59
|
+
rb_raise(eNestingError, "nesting of %d is to deep", json->current_nesting);
|
60
|
+
}
|
61
|
+
|
62
|
+
*result = rb_hash_new();
|
63
|
+
|
64
|
+
|
65
|
+
#line 66 "parser.c"
|
66
|
+
{
|
67
|
+
cs = JSON_object_start;
|
68
|
+
}
|
69
|
+
#line 111 "parser.rl"
|
70
|
+
|
71
|
+
#line 72 "parser.c"
|
72
|
+
{
|
73
|
+
if ( p == pe )
|
74
|
+
goto _test_eof;
|
75
|
+
switch ( cs )
|
76
|
+
{
|
77
|
+
case 1:
|
78
|
+
if ( (*p) == 123 )
|
79
|
+
goto st2;
|
80
|
+
goto st0;
|
81
|
+
st0:
|
82
|
+
cs = 0;
|
83
|
+
goto _out;
|
84
|
+
st2:
|
85
|
+
if ( ++p == pe )
|
86
|
+
goto _test_eof2;
|
87
|
+
case 2:
|
88
|
+
switch( (*p) ) {
|
89
|
+
case 13: goto st2;
|
90
|
+
case 32: goto st2;
|
91
|
+
case 34: goto tr2;
|
92
|
+
case 47: goto st23;
|
93
|
+
case 125: goto tr4;
|
94
|
+
}
|
95
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
96
|
+
goto st2;
|
97
|
+
goto st0;
|
98
|
+
tr2:
|
99
|
+
#line 83 "parser.rl"
|
100
|
+
{
|
101
|
+
char *np = JSON_parse_string(json, p, pe, &last_name);
|
102
|
+
if (np == NULL) { p--; {p++; cs = 3; goto _out;} } else {p = (( np))-1;}
|
103
|
+
}
|
104
|
+
goto st3;
|
105
|
+
st3:
|
106
|
+
if ( ++p == pe )
|
107
|
+
goto _test_eof3;
|
108
|
+
case 3:
|
109
|
+
#line 110 "parser.c"
|
110
|
+
switch( (*p) ) {
|
111
|
+
case 13: goto st3;
|
112
|
+
case 32: goto st3;
|
113
|
+
case 47: goto st4;
|
114
|
+
case 58: goto st8;
|
115
|
+
}
|
116
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
117
|
+
goto st3;
|
118
|
+
goto st0;
|
119
|
+
st4:
|
120
|
+
if ( ++p == pe )
|
121
|
+
goto _test_eof4;
|
122
|
+
case 4:
|
123
|
+
switch( (*p) ) {
|
124
|
+
case 42: goto st5;
|
125
|
+
case 47: goto st7;
|
126
|
+
}
|
127
|
+
goto st0;
|
128
|
+
st5:
|
129
|
+
if ( ++p == pe )
|
130
|
+
goto _test_eof5;
|
131
|
+
case 5:
|
132
|
+
if ( (*p) == 42 )
|
133
|
+
goto st6;
|
134
|
+
goto st5;
|
135
|
+
st6:
|
136
|
+
if ( ++p == pe )
|
137
|
+
goto _test_eof6;
|
138
|
+
case 6:
|
139
|
+
switch( (*p) ) {
|
140
|
+
case 42: goto st6;
|
141
|
+
case 47: goto st3;
|
142
|
+
}
|
143
|
+
goto st5;
|
144
|
+
st7:
|
145
|
+
if ( ++p == pe )
|
146
|
+
goto _test_eof7;
|
147
|
+
case 7:
|
148
|
+
if ( (*p) == 10 )
|
149
|
+
goto st3;
|
150
|
+
goto st7;
|
151
|
+
st8:
|
152
|
+
if ( ++p == pe )
|
153
|
+
goto _test_eof8;
|
154
|
+
case 8:
|
155
|
+
switch( (*p) ) {
|
156
|
+
case 13: goto st8;
|
157
|
+
case 32: goto st8;
|
158
|
+
case 34: goto tr11;
|
159
|
+
case 45: goto tr11;
|
160
|
+
case 47: goto st19;
|
161
|
+
case 73: goto tr11;
|
162
|
+
case 78: goto tr11;
|
163
|
+
case 91: goto tr11;
|
164
|
+
case 102: goto tr11;
|
165
|
+
case 110: goto tr11;
|
166
|
+
case 116: goto tr11;
|
167
|
+
case 123: goto tr11;
|
168
|
+
}
|
169
|
+
if ( (*p) > 10 ) {
|
170
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
171
|
+
goto tr11;
|
172
|
+
} else if ( (*p) >= 9 )
|
173
|
+
goto st8;
|
174
|
+
goto st0;
|
175
|
+
tr11:
|
176
|
+
#line 72 "parser.rl"
|
177
|
+
{
|
178
|
+
VALUE v = Qnil;
|
179
|
+
char *np = JSON_parse_value(json, p, pe, &v);
|
180
|
+
if (np == NULL) {
|
181
|
+
p--; {p++; cs = 9; goto _out;}
|
182
|
+
} else {
|
183
|
+
rb_hash_aset(*result, last_name, v);
|
184
|
+
{p = (( np))-1;}
|
185
|
+
}
|
186
|
+
}
|
187
|
+
goto st9;
|
188
|
+
st9:
|
189
|
+
if ( ++p == pe )
|
190
|
+
goto _test_eof9;
|
191
|
+
case 9:
|
192
|
+
#line 193 "parser.c"
|
193
|
+
switch( (*p) ) {
|
194
|
+
case 13: goto st9;
|
195
|
+
case 32: goto st9;
|
196
|
+
case 44: goto st10;
|
197
|
+
case 47: goto st15;
|
198
|
+
case 125: goto tr4;
|
199
|
+
}
|
200
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
201
|
+
goto st9;
|
202
|
+
goto st0;
|
203
|
+
st10:
|
204
|
+
if ( ++p == pe )
|
205
|
+
goto _test_eof10;
|
206
|
+
case 10:
|
207
|
+
switch( (*p) ) {
|
208
|
+
case 13: goto st10;
|
209
|
+
case 32: goto st10;
|
210
|
+
case 34: goto tr2;
|
211
|
+
case 47: goto st11;
|
212
|
+
}
|
213
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
214
|
+
goto st10;
|
215
|
+
goto st0;
|
216
|
+
st11:
|
217
|
+
if ( ++p == pe )
|
218
|
+
goto _test_eof11;
|
219
|
+
case 11:
|
220
|
+
switch( (*p) ) {
|
221
|
+
case 42: goto st12;
|
222
|
+
case 47: goto st14;
|
223
|
+
}
|
224
|
+
goto st0;
|
225
|
+
st12:
|
226
|
+
if ( ++p == pe )
|
227
|
+
goto _test_eof12;
|
228
|
+
case 12:
|
229
|
+
if ( (*p) == 42 )
|
230
|
+
goto st13;
|
231
|
+
goto st12;
|
232
|
+
st13:
|
233
|
+
if ( ++p == pe )
|
234
|
+
goto _test_eof13;
|
235
|
+
case 13:
|
236
|
+
switch( (*p) ) {
|
237
|
+
case 42: goto st13;
|
238
|
+
case 47: goto st10;
|
239
|
+
}
|
240
|
+
goto st12;
|
241
|
+
st14:
|
242
|
+
if ( ++p == pe )
|
243
|
+
goto _test_eof14;
|
244
|
+
case 14:
|
245
|
+
if ( (*p) == 10 )
|
246
|
+
goto st10;
|
247
|
+
goto st14;
|
248
|
+
st15:
|
249
|
+
if ( ++p == pe )
|
250
|
+
goto _test_eof15;
|
251
|
+
case 15:
|
252
|
+
switch( (*p) ) {
|
253
|
+
case 42: goto st16;
|
254
|
+
case 47: goto st18;
|
255
|
+
}
|
256
|
+
goto st0;
|
257
|
+
st16:
|
258
|
+
if ( ++p == pe )
|
259
|
+
goto _test_eof16;
|
260
|
+
case 16:
|
261
|
+
if ( (*p) == 42 )
|
262
|
+
goto st17;
|
263
|
+
goto st16;
|
264
|
+
st17:
|
265
|
+
if ( ++p == pe )
|
266
|
+
goto _test_eof17;
|
267
|
+
case 17:
|
268
|
+
switch( (*p) ) {
|
269
|
+
case 42: goto st17;
|
270
|
+
case 47: goto st9;
|
271
|
+
}
|
272
|
+
goto st16;
|
273
|
+
st18:
|
274
|
+
if ( ++p == pe )
|
275
|
+
goto _test_eof18;
|
276
|
+
case 18:
|
277
|
+
if ( (*p) == 10 )
|
278
|
+
goto st9;
|
279
|
+
goto st18;
|
280
|
+
tr4:
|
281
|
+
#line 88 "parser.rl"
|
282
|
+
{ p--; {p++; cs = 27; goto _out;} }
|
283
|
+
goto st27;
|
284
|
+
st27:
|
285
|
+
if ( ++p == pe )
|
286
|
+
goto _test_eof27;
|
287
|
+
case 27:
|
288
|
+
#line 289 "parser.c"
|
289
|
+
goto st0;
|
290
|
+
st19:
|
291
|
+
if ( ++p == pe )
|
292
|
+
goto _test_eof19;
|
293
|
+
case 19:
|
294
|
+
switch( (*p) ) {
|
295
|
+
case 42: goto st20;
|
296
|
+
case 47: goto st22;
|
297
|
+
}
|
298
|
+
goto st0;
|
299
|
+
st20:
|
300
|
+
if ( ++p == pe )
|
301
|
+
goto _test_eof20;
|
302
|
+
case 20:
|
303
|
+
if ( (*p) == 42 )
|
304
|
+
goto st21;
|
305
|
+
goto st20;
|
306
|
+
st21:
|
307
|
+
if ( ++p == pe )
|
308
|
+
goto _test_eof21;
|
309
|
+
case 21:
|
310
|
+
switch( (*p) ) {
|
311
|
+
case 42: goto st21;
|
312
|
+
case 47: goto st8;
|
313
|
+
}
|
314
|
+
goto st20;
|
315
|
+
st22:
|
316
|
+
if ( ++p == pe )
|
317
|
+
goto _test_eof22;
|
318
|
+
case 22:
|
319
|
+
if ( (*p) == 10 )
|
320
|
+
goto st8;
|
321
|
+
goto st22;
|
322
|
+
st23:
|
323
|
+
if ( ++p == pe )
|
324
|
+
goto _test_eof23;
|
325
|
+
case 23:
|
326
|
+
switch( (*p) ) {
|
327
|
+
case 42: goto st24;
|
328
|
+
case 47: goto st26;
|
329
|
+
}
|
330
|
+
goto st0;
|
331
|
+
st24:
|
332
|
+
if ( ++p == pe )
|
333
|
+
goto _test_eof24;
|
334
|
+
case 24:
|
335
|
+
if ( (*p) == 42 )
|
336
|
+
goto st25;
|
337
|
+
goto st24;
|
338
|
+
st25:
|
339
|
+
if ( ++p == pe )
|
340
|
+
goto _test_eof25;
|
341
|
+
case 25:
|
342
|
+
switch( (*p) ) {
|
343
|
+
case 42: goto st25;
|
344
|
+
case 47: goto st2;
|
345
|
+
}
|
346
|
+
goto st24;
|
347
|
+
st26:
|
348
|
+
if ( ++p == pe )
|
349
|
+
goto _test_eof26;
|
350
|
+
case 26:
|
351
|
+
if ( (*p) == 10 )
|
352
|
+
goto st2;
|
353
|
+
goto st26;
|
354
|
+
}
|
355
|
+
_test_eof2: cs = 2; goto _test_eof;
|
356
|
+
_test_eof3: cs = 3; goto _test_eof;
|
357
|
+
_test_eof4: cs = 4; goto _test_eof;
|
358
|
+
_test_eof5: cs = 5; goto _test_eof;
|
359
|
+
_test_eof6: cs = 6; goto _test_eof;
|
360
|
+
_test_eof7: cs = 7; goto _test_eof;
|
361
|
+
_test_eof8: cs = 8; goto _test_eof;
|
362
|
+
_test_eof9: cs = 9; goto _test_eof;
|
363
|
+
_test_eof10: cs = 10; goto _test_eof;
|
364
|
+
_test_eof11: cs = 11; goto _test_eof;
|
365
|
+
_test_eof12: cs = 12; goto _test_eof;
|
366
|
+
_test_eof13: cs = 13; goto _test_eof;
|
367
|
+
_test_eof14: cs = 14; goto _test_eof;
|
368
|
+
_test_eof15: cs = 15; goto _test_eof;
|
369
|
+
_test_eof16: cs = 16; goto _test_eof;
|
370
|
+
_test_eof17: cs = 17; goto _test_eof;
|
371
|
+
_test_eof18: cs = 18; goto _test_eof;
|
372
|
+
_test_eof27: cs = 27; goto _test_eof;
|
373
|
+
_test_eof19: cs = 19; goto _test_eof;
|
374
|
+
_test_eof20: cs = 20; goto _test_eof;
|
375
|
+
_test_eof21: cs = 21; goto _test_eof;
|
376
|
+
_test_eof22: cs = 22; goto _test_eof;
|
377
|
+
_test_eof23: cs = 23; goto _test_eof;
|
378
|
+
_test_eof24: cs = 24; goto _test_eof;
|
379
|
+
_test_eof25: cs = 25; goto _test_eof;
|
380
|
+
_test_eof26: cs = 26; goto _test_eof;
|
381
|
+
|
382
|
+
_test_eof: {}
|
383
|
+
_out: {}
|
384
|
+
}
|
385
|
+
#line 112 "parser.rl"
|
386
|
+
|
387
|
+
if (cs >= JSON_object_first_final) {
|
388
|
+
if (RTEST(json->create_id)) {
|
389
|
+
VALUE klassname = rb_hash_aref(*result, json->create_id);
|
390
|
+
if (!NIL_P(klassname)) {
|
391
|
+
VALUE klass = rb_path2class(StringValueCStr(klassname));
|
392
|
+
if RTEST(rb_funcall(klass, i_json_creatable_p, 0)) {
|
393
|
+
*result = rb_funcall(klass, i_json_create, 1, *result);
|
394
|
+
}
|
395
|
+
}
|
396
|
+
}
|
397
|
+
return p + 1;
|
398
|
+
} else {
|
399
|
+
return NULL;
|
400
|
+
}
|
401
|
+
}
|
402
|
+
|
403
|
+
|
404
|
+
#line 405 "parser.c"
|
405
|
+
static const int JSON_value_start = 1;
|
406
|
+
static const int JSON_value_first_final = 21;
|
407
|
+
static const int JSON_value_error = 0;
|
408
|
+
|
409
|
+
static const int JSON_value_en_main = 1;
|
410
|
+
|
411
|
+
#line 210 "parser.rl"
|
412
|
+
|
413
|
+
|
414
|
+
static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
415
|
+
{
|
416
|
+
int cs = EVIL;
|
417
|
+
|
418
|
+
|
419
|
+
#line 420 "parser.c"
|
420
|
+
{
|
421
|
+
cs = JSON_value_start;
|
422
|
+
}
|
423
|
+
#line 217 "parser.rl"
|
424
|
+
|
425
|
+
#line 426 "parser.c"
|
426
|
+
{
|
427
|
+
if ( p == pe )
|
428
|
+
goto _test_eof;
|
429
|
+
switch ( cs )
|
430
|
+
{
|
431
|
+
case 1:
|
432
|
+
switch( (*p) ) {
|
433
|
+
case 34: goto tr0;
|
434
|
+
case 45: goto tr2;
|
435
|
+
case 73: goto st2;
|
436
|
+
case 78: goto st9;
|
437
|
+
case 91: goto tr5;
|
438
|
+
case 102: goto st11;
|
439
|
+
case 110: goto st15;
|
440
|
+
case 116: goto st18;
|
441
|
+
case 123: goto tr9;
|
442
|
+
}
|
443
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
444
|
+
goto tr2;
|
445
|
+
goto st0;
|
446
|
+
st0:
|
447
|
+
cs = 0;
|
448
|
+
goto _out;
|
449
|
+
tr0:
|
450
|
+
#line 158 "parser.rl"
|
451
|
+
{
|
452
|
+
char *np = JSON_parse_string(json, p, pe, result);
|
453
|
+
if (np == NULL) { p--; {p++; cs = 21; goto _out;} } else {p = (( np))-1;}
|
454
|
+
}
|
455
|
+
goto st21;
|
456
|
+
tr2:
|
457
|
+
#line 163 "parser.rl"
|
458
|
+
{
|
459
|
+
char *np;
|
460
|
+
if(pe > p + 9 && !strncmp(MinusInfinity, p, 9)) {
|
461
|
+
if (json->allow_nan) {
|
462
|
+
*result = CMinusInfinity;
|
463
|
+
{p = (( p + 10))-1;}
|
464
|
+
p--; {p++; cs = 21; goto _out;}
|
465
|
+
} else {
|
466
|
+
rb_raise(eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
467
|
+
}
|
468
|
+
}
|
469
|
+
np = JSON_parse_float(json, p, pe, result);
|
470
|
+
if (np != NULL) {p = (( np))-1;}
|
471
|
+
np = JSON_parse_integer(json, p, pe, result);
|
472
|
+
if (np != NULL) {p = (( np))-1;}
|
473
|
+
p--; {p++; cs = 21; goto _out;}
|
474
|
+
}
|
475
|
+
goto st21;
|
476
|
+
tr5:
|
477
|
+
#line 181 "parser.rl"
|
478
|
+
{
|
479
|
+
char *np;
|
480
|
+
json->current_nesting++;
|
481
|
+
np = JSON_parse_array(json, p, pe, result);
|
482
|
+
json->current_nesting--;
|
483
|
+
if (np == NULL) { p--; {p++; cs = 21; goto _out;} } else {p = (( np))-1;}
|
484
|
+
}
|
485
|
+
goto st21;
|
486
|
+
tr9:
|
487
|
+
#line 189 "parser.rl"
|
488
|
+
{
|
489
|
+
char *np;
|
490
|
+
json->current_nesting++;
|
491
|
+
np = JSON_parse_object(json, p, pe, result);
|
492
|
+
json->current_nesting--;
|
493
|
+
if (np == NULL) { p--; {p++; cs = 21; goto _out;} } else {p = (( np))-1;}
|
494
|
+
}
|
495
|
+
goto st21;
|
496
|
+
tr16:
|
497
|
+
#line 151 "parser.rl"
|
498
|
+
{
|
499
|
+
if (json->allow_nan) {
|
500
|
+
*result = CInfinity;
|
501
|
+
} else {
|
502
|
+
rb_raise(eParserError, "%u: unexpected token at '%s'", __LINE__, p - 8);
|
503
|
+
}
|
504
|
+
}
|
505
|
+
goto st21;
|
506
|
+
tr18:
|
507
|
+
#line 144 "parser.rl"
|
508
|
+
{
|
509
|
+
if (json->allow_nan) {
|
510
|
+
*result = CNaN;
|
511
|
+
} else {
|
512
|
+
rb_raise(eParserError, "%u: unexpected token at '%s'", __LINE__, p - 2);
|
513
|
+
}
|
514
|
+
}
|
515
|
+
goto st21;
|
516
|
+
tr22:
|
517
|
+
#line 138 "parser.rl"
|
518
|
+
{
|
519
|
+
*result = Qfalse;
|
520
|
+
}
|
521
|
+
goto st21;
|
522
|
+
tr25:
|
523
|
+
#line 135 "parser.rl"
|
524
|
+
{
|
525
|
+
*result = Qnil;
|
526
|
+
}
|
527
|
+
goto st21;
|
528
|
+
tr28:
|
529
|
+
#line 141 "parser.rl"
|
530
|
+
{
|
531
|
+
*result = Qtrue;
|
532
|
+
}
|
533
|
+
goto st21;
|
534
|
+
st21:
|
535
|
+
if ( ++p == pe )
|
536
|
+
goto _test_eof21;
|
537
|
+
case 21:
|
538
|
+
#line 197 "parser.rl"
|
539
|
+
{ p--; {p++; cs = 21; goto _out;} }
|
540
|
+
#line 541 "parser.c"
|
541
|
+
goto st0;
|
542
|
+
st2:
|
543
|
+
if ( ++p == pe )
|
544
|
+
goto _test_eof2;
|
545
|
+
case 2:
|
546
|
+
if ( (*p) == 110 )
|
547
|
+
goto st3;
|
548
|
+
goto st0;
|
549
|
+
st3:
|
550
|
+
if ( ++p == pe )
|
551
|
+
goto _test_eof3;
|
552
|
+
case 3:
|
553
|
+
if ( (*p) == 102 )
|
554
|
+
goto st4;
|
555
|
+
goto st0;
|
556
|
+
st4:
|
557
|
+
if ( ++p == pe )
|
558
|
+
goto _test_eof4;
|
559
|
+
case 4:
|
560
|
+
if ( (*p) == 105 )
|
561
|
+
goto st5;
|
562
|
+
goto st0;
|
563
|
+
st5:
|
564
|
+
if ( ++p == pe )
|
565
|
+
goto _test_eof5;
|
566
|
+
case 5:
|
567
|
+
if ( (*p) == 110 )
|
568
|
+
goto st6;
|
569
|
+
goto st0;
|
570
|
+
st6:
|
571
|
+
if ( ++p == pe )
|
572
|
+
goto _test_eof6;
|
573
|
+
case 6:
|
574
|
+
if ( (*p) == 105 )
|
575
|
+
goto st7;
|
576
|
+
goto st0;
|
577
|
+
st7:
|
578
|
+
if ( ++p == pe )
|
579
|
+
goto _test_eof7;
|
580
|
+
case 7:
|
581
|
+
if ( (*p) == 116 )
|
582
|
+
goto st8;
|
583
|
+
goto st0;
|
584
|
+
st8:
|
585
|
+
if ( ++p == pe )
|
586
|
+
goto _test_eof8;
|
587
|
+
case 8:
|
588
|
+
if ( (*p) == 121 )
|
589
|
+
goto tr16;
|
590
|
+
goto st0;
|
591
|
+
st9:
|
592
|
+
if ( ++p == pe )
|
593
|
+
goto _test_eof9;
|
594
|
+
case 9:
|
595
|
+
if ( (*p) == 97 )
|
596
|
+
goto st10;
|
597
|
+
goto st0;
|
598
|
+
st10:
|
599
|
+
if ( ++p == pe )
|
600
|
+
goto _test_eof10;
|
601
|
+
case 10:
|
602
|
+
if ( (*p) == 78 )
|
603
|
+
goto tr18;
|
604
|
+
goto st0;
|
605
|
+
st11:
|
606
|
+
if ( ++p == pe )
|
607
|
+
goto _test_eof11;
|
608
|
+
case 11:
|
609
|
+
if ( (*p) == 97 )
|
610
|
+
goto st12;
|
611
|
+
goto st0;
|
612
|
+
st12:
|
613
|
+
if ( ++p == pe )
|
614
|
+
goto _test_eof12;
|
615
|
+
case 12:
|
616
|
+
if ( (*p) == 108 )
|
617
|
+
goto st13;
|
618
|
+
goto st0;
|
619
|
+
st13:
|
620
|
+
if ( ++p == pe )
|
621
|
+
goto _test_eof13;
|
622
|
+
case 13:
|
623
|
+
if ( (*p) == 115 )
|
624
|
+
goto st14;
|
625
|
+
goto st0;
|
626
|
+
st14:
|
627
|
+
if ( ++p == pe )
|
628
|
+
goto _test_eof14;
|
629
|
+
case 14:
|
630
|
+
if ( (*p) == 101 )
|
631
|
+
goto tr22;
|
632
|
+
goto st0;
|
633
|
+
st15:
|
634
|
+
if ( ++p == pe )
|
635
|
+
goto _test_eof15;
|
636
|
+
case 15:
|
637
|
+
if ( (*p) == 117 )
|
638
|
+
goto st16;
|
639
|
+
goto st0;
|
640
|
+
st16:
|
641
|
+
if ( ++p == pe )
|
642
|
+
goto _test_eof16;
|
643
|
+
case 16:
|
644
|
+
if ( (*p) == 108 )
|
645
|
+
goto st17;
|
646
|
+
goto st0;
|
647
|
+
st17:
|
648
|
+
if ( ++p == pe )
|
649
|
+
goto _test_eof17;
|
650
|
+
case 17:
|
651
|
+
if ( (*p) == 108 )
|
652
|
+
goto tr25;
|
653
|
+
goto st0;
|
654
|
+
st18:
|
655
|
+
if ( ++p == pe )
|
656
|
+
goto _test_eof18;
|
657
|
+
case 18:
|
658
|
+
if ( (*p) == 114 )
|
659
|
+
goto st19;
|
660
|
+
goto st0;
|
661
|
+
st19:
|
662
|
+
if ( ++p == pe )
|
663
|
+
goto _test_eof19;
|
664
|
+
case 19:
|
665
|
+
if ( (*p) == 117 )
|
666
|
+
goto st20;
|
667
|
+
goto st0;
|
668
|
+
st20:
|
669
|
+
if ( ++p == pe )
|
670
|
+
goto _test_eof20;
|
671
|
+
case 20:
|
672
|
+
if ( (*p) == 101 )
|
673
|
+
goto tr28;
|
674
|
+
goto st0;
|
675
|
+
}
|
676
|
+
_test_eof21: cs = 21; goto _test_eof;
|
677
|
+
_test_eof2: cs = 2; goto _test_eof;
|
678
|
+
_test_eof3: cs = 3; goto _test_eof;
|
679
|
+
_test_eof4: cs = 4; goto _test_eof;
|
680
|
+
_test_eof5: cs = 5; goto _test_eof;
|
681
|
+
_test_eof6: cs = 6; goto _test_eof;
|
682
|
+
_test_eof7: cs = 7; goto _test_eof;
|
683
|
+
_test_eof8: cs = 8; goto _test_eof;
|
684
|
+
_test_eof9: cs = 9; goto _test_eof;
|
685
|
+
_test_eof10: cs = 10; goto _test_eof;
|
686
|
+
_test_eof11: cs = 11; goto _test_eof;
|
687
|
+
_test_eof12: cs = 12; goto _test_eof;
|
688
|
+
_test_eof13: cs = 13; goto _test_eof;
|
689
|
+
_test_eof14: cs = 14; goto _test_eof;
|
690
|
+
_test_eof15: cs = 15; goto _test_eof;
|
691
|
+
_test_eof16: cs = 16; goto _test_eof;
|
692
|
+
_test_eof17: cs = 17; goto _test_eof;
|
693
|
+
_test_eof18: cs = 18; goto _test_eof;
|
694
|
+
_test_eof19: cs = 19; goto _test_eof;
|
695
|
+
_test_eof20: cs = 20; goto _test_eof;
|
696
|
+
|
697
|
+
_test_eof: {}
|
698
|
+
_out: {}
|
699
|
+
}
|
700
|
+
#line 218 "parser.rl"
|
701
|
+
|
702
|
+
if (cs >= JSON_value_first_final) {
|
703
|
+
return p;
|
704
|
+
} else {
|
705
|
+
return NULL;
|
706
|
+
}
|
707
|
+
}
|
708
|
+
|
709
|
+
|
710
|
+
#line 711 "parser.c"
|
711
|
+
static const int JSON_integer_start = 1;
|
712
|
+
static const int JSON_integer_first_final = 5;
|
713
|
+
static const int JSON_integer_error = 0;
|
714
|
+
|
715
|
+
static const int JSON_integer_en_main = 1;
|
716
|
+
|
717
|
+
#line 234 "parser.rl"
|
718
|
+
|
719
|
+
|
720
|
+
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
721
|
+
{
|
722
|
+
int cs = EVIL;
|
723
|
+
|
724
|
+
|
725
|
+
#line 726 "parser.c"
|
726
|
+
{
|
727
|
+
cs = JSON_integer_start;
|
728
|
+
}
|
729
|
+
#line 241 "parser.rl"
|
730
|
+
json->memo = p;
|
731
|
+
|
732
|
+
#line 733 "parser.c"
|
733
|
+
{
|
734
|
+
if ( p == pe )
|
735
|
+
goto _test_eof;
|
736
|
+
switch ( cs )
|
737
|
+
{
|
738
|
+
case 1:
|
739
|
+
switch( (*p) ) {
|
740
|
+
case 45: goto st2;
|
741
|
+
case 48: goto st3;
|
742
|
+
}
|
743
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
744
|
+
goto st4;
|
745
|
+
goto st0;
|
746
|
+
st0:
|
747
|
+
cs = 0;
|
748
|
+
goto _out;
|
749
|
+
st2:
|
750
|
+
if ( ++p == pe )
|
751
|
+
goto _test_eof2;
|
752
|
+
case 2:
|
753
|
+
if ( (*p) == 48 )
|
754
|
+
goto st3;
|
755
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
756
|
+
goto st4;
|
757
|
+
goto st0;
|
758
|
+
st3:
|
759
|
+
if ( ++p == pe )
|
760
|
+
goto _test_eof3;
|
761
|
+
case 3:
|
762
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
763
|
+
goto st0;
|
764
|
+
goto tr4;
|
765
|
+
tr4:
|
766
|
+
#line 231 "parser.rl"
|
767
|
+
{ p--; {p++; cs = 5; goto _out;} }
|
768
|
+
goto st5;
|
769
|
+
st5:
|
770
|
+
if ( ++p == pe )
|
771
|
+
goto _test_eof5;
|
772
|
+
case 5:
|
773
|
+
#line 774 "parser.c"
|
774
|
+
goto st0;
|
775
|
+
st4:
|
776
|
+
if ( ++p == pe )
|
777
|
+
goto _test_eof4;
|
778
|
+
case 4:
|
779
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
780
|
+
goto st4;
|
781
|
+
goto tr4;
|
782
|
+
}
|
783
|
+
_test_eof2: cs = 2; goto _test_eof;
|
784
|
+
_test_eof3: cs = 3; goto _test_eof;
|
785
|
+
_test_eof5: cs = 5; goto _test_eof;
|
786
|
+
_test_eof4: cs = 4; goto _test_eof;
|
787
|
+
|
788
|
+
_test_eof: {}
|
789
|
+
_out: {}
|
790
|
+
}
|
791
|
+
#line 243 "parser.rl"
|
792
|
+
|
793
|
+
if (cs >= JSON_integer_first_final) {
|
794
|
+
long len = p - json->memo;
|
795
|
+
*result = rb_Integer(rb_str_new(json->memo, len));
|
796
|
+
return p + 1;
|
797
|
+
} else {
|
798
|
+
return NULL;
|
799
|
+
}
|
800
|
+
}
|
801
|
+
|
802
|
+
|
803
|
+
#line 804 "parser.c"
|
804
|
+
static const int JSON_float_start = 1;
|
805
|
+
static const int JSON_float_first_final = 10;
|
806
|
+
static const int JSON_float_error = 0;
|
807
|
+
|
808
|
+
static const int JSON_float_en_main = 1;
|
809
|
+
|
810
|
+
#line 265 "parser.rl"
|
811
|
+
|
812
|
+
|
813
|
+
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
814
|
+
{
|
815
|
+
int cs = EVIL;
|
816
|
+
|
817
|
+
|
818
|
+
#line 819 "parser.c"
|
819
|
+
{
|
820
|
+
cs = JSON_float_start;
|
821
|
+
}
|
822
|
+
#line 272 "parser.rl"
|
823
|
+
json->memo = p;
|
824
|
+
|
825
|
+
#line 826 "parser.c"
|
826
|
+
{
|
827
|
+
if ( p == pe )
|
828
|
+
goto _test_eof;
|
829
|
+
switch ( cs )
|
830
|
+
{
|
831
|
+
case 1:
|
832
|
+
switch( (*p) ) {
|
833
|
+
case 45: goto st2;
|
834
|
+
case 48: goto st3;
|
835
|
+
}
|
836
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
837
|
+
goto st9;
|
838
|
+
goto st0;
|
839
|
+
st0:
|
840
|
+
cs = 0;
|
841
|
+
goto _out;
|
842
|
+
st2:
|
843
|
+
if ( ++p == pe )
|
844
|
+
goto _test_eof2;
|
845
|
+
case 2:
|
846
|
+
if ( (*p) == 48 )
|
847
|
+
goto st3;
|
848
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
849
|
+
goto st9;
|
850
|
+
goto st0;
|
851
|
+
st3:
|
852
|
+
if ( ++p == pe )
|
853
|
+
goto _test_eof3;
|
854
|
+
case 3:
|
855
|
+
switch( (*p) ) {
|
856
|
+
case 46: goto st4;
|
857
|
+
case 69: goto st6;
|
858
|
+
case 101: goto st6;
|
859
|
+
}
|
860
|
+
goto st0;
|
861
|
+
st4:
|
862
|
+
if ( ++p == pe )
|
863
|
+
goto _test_eof4;
|
864
|
+
case 4:
|
865
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
866
|
+
goto st5;
|
867
|
+
goto st0;
|
868
|
+
st5:
|
869
|
+
if ( ++p == pe )
|
870
|
+
goto _test_eof5;
|
871
|
+
case 5:
|
872
|
+
switch( (*p) ) {
|
873
|
+
case 69: goto st6;
|
874
|
+
case 101: goto st6;
|
875
|
+
}
|
876
|
+
if ( (*p) > 46 ) {
|
877
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
878
|
+
goto st5;
|
879
|
+
} else if ( (*p) >= 45 )
|
880
|
+
goto st0;
|
881
|
+
goto tr7;
|
882
|
+
tr7:
|
883
|
+
#line 259 "parser.rl"
|
884
|
+
{ p--; {p++; cs = 10; goto _out;} }
|
885
|
+
goto st10;
|
886
|
+
st10:
|
887
|
+
if ( ++p == pe )
|
888
|
+
goto _test_eof10;
|
889
|
+
case 10:
|
890
|
+
#line 891 "parser.c"
|
891
|
+
goto st0;
|
892
|
+
st6:
|
893
|
+
if ( ++p == pe )
|
894
|
+
goto _test_eof6;
|
895
|
+
case 6:
|
896
|
+
switch( (*p) ) {
|
897
|
+
case 43: goto st7;
|
898
|
+
case 45: goto st7;
|
899
|
+
}
|
900
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
901
|
+
goto st8;
|
902
|
+
goto st0;
|
903
|
+
st7:
|
904
|
+
if ( ++p == pe )
|
905
|
+
goto _test_eof7;
|
906
|
+
case 7:
|
907
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
908
|
+
goto st8;
|
909
|
+
goto st0;
|
910
|
+
st8:
|
911
|
+
if ( ++p == pe )
|
912
|
+
goto _test_eof8;
|
913
|
+
case 8:
|
914
|
+
switch( (*p) ) {
|
915
|
+
case 69: goto st0;
|
916
|
+
case 101: goto st0;
|
917
|
+
}
|
918
|
+
if ( (*p) > 46 ) {
|
919
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
920
|
+
goto st8;
|
921
|
+
} else if ( (*p) >= 45 )
|
922
|
+
goto st0;
|
923
|
+
goto tr7;
|
924
|
+
st9:
|
925
|
+
if ( ++p == pe )
|
926
|
+
goto _test_eof9;
|
927
|
+
case 9:
|
928
|
+
switch( (*p) ) {
|
929
|
+
case 46: goto st4;
|
930
|
+
case 69: goto st6;
|
931
|
+
case 101: goto st6;
|
932
|
+
}
|
933
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
934
|
+
goto st9;
|
935
|
+
goto st0;
|
936
|
+
}
|
937
|
+
_test_eof2: cs = 2; goto _test_eof;
|
938
|
+
_test_eof3: cs = 3; goto _test_eof;
|
939
|
+
_test_eof4: cs = 4; goto _test_eof;
|
940
|
+
_test_eof5: cs = 5; goto _test_eof;
|
941
|
+
_test_eof10: cs = 10; goto _test_eof;
|
942
|
+
_test_eof6: cs = 6; goto _test_eof;
|
943
|
+
_test_eof7: cs = 7; goto _test_eof;
|
944
|
+
_test_eof8: cs = 8; goto _test_eof;
|
945
|
+
_test_eof9: cs = 9; goto _test_eof;
|
946
|
+
|
947
|
+
_test_eof: {}
|
948
|
+
_out: {}
|
949
|
+
}
|
950
|
+
#line 274 "parser.rl"
|
951
|
+
|
952
|
+
if (cs >= JSON_float_first_final) {
|
953
|
+
long len = p - json->memo;
|
954
|
+
*result = rb_Float(rb_str_new(json->memo, len));
|
955
|
+
return p + 1;
|
956
|
+
} else {
|
957
|
+
return NULL;
|
958
|
+
}
|
959
|
+
}
|
960
|
+
|
961
|
+
|
962
|
+
|
963
|
+
#line 964 "parser.c"
|
964
|
+
static const int JSON_array_start = 1;
|
965
|
+
static const int JSON_array_first_final = 17;
|
966
|
+
static const int JSON_array_error = 0;
|
967
|
+
|
968
|
+
static const int JSON_array_en_main = 1;
|
969
|
+
|
970
|
+
#line 310 "parser.rl"
|
971
|
+
|
972
|
+
|
973
|
+
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
974
|
+
{
|
975
|
+
int cs = EVIL;
|
976
|
+
|
977
|
+
if (json->max_nesting && json->current_nesting > json->max_nesting) {
|
978
|
+
rb_raise(eNestingError, "nesting of %d is to deep", json->current_nesting);
|
979
|
+
}
|
980
|
+
*result = rb_ary_new();
|
981
|
+
|
982
|
+
|
983
|
+
#line 984 "parser.c"
|
984
|
+
{
|
985
|
+
cs = JSON_array_start;
|
986
|
+
}
|
987
|
+
#line 322 "parser.rl"
|
988
|
+
|
989
|
+
#line 990 "parser.c"
|
990
|
+
{
|
991
|
+
if ( p == pe )
|
992
|
+
goto _test_eof;
|
993
|
+
switch ( cs )
|
994
|
+
{
|
995
|
+
case 1:
|
996
|
+
if ( (*p) == 91 )
|
997
|
+
goto st2;
|
998
|
+
goto st0;
|
999
|
+
st0:
|
1000
|
+
cs = 0;
|
1001
|
+
goto _out;
|
1002
|
+
st2:
|
1003
|
+
if ( ++p == pe )
|
1004
|
+
goto _test_eof2;
|
1005
|
+
case 2:
|
1006
|
+
switch( (*p) ) {
|
1007
|
+
case 13: goto st2;
|
1008
|
+
case 32: goto st2;
|
1009
|
+
case 34: goto tr2;
|
1010
|
+
case 45: goto tr2;
|
1011
|
+
case 47: goto st13;
|
1012
|
+
case 73: goto tr2;
|
1013
|
+
case 78: goto tr2;
|
1014
|
+
case 91: goto tr2;
|
1015
|
+
case 93: goto tr4;
|
1016
|
+
case 102: goto tr2;
|
1017
|
+
case 110: goto tr2;
|
1018
|
+
case 116: goto tr2;
|
1019
|
+
case 123: goto tr2;
|
1020
|
+
}
|
1021
|
+
if ( (*p) > 10 ) {
|
1022
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1023
|
+
goto tr2;
|
1024
|
+
} else if ( (*p) >= 9 )
|
1025
|
+
goto st2;
|
1026
|
+
goto st0;
|
1027
|
+
tr2:
|
1028
|
+
#line 291 "parser.rl"
|
1029
|
+
{
|
1030
|
+
VALUE v = Qnil;
|
1031
|
+
char *np = JSON_parse_value(json, p, pe, &v);
|
1032
|
+
if (np == NULL) {
|
1033
|
+
p--; {p++; cs = 3; goto _out;}
|
1034
|
+
} else {
|
1035
|
+
rb_ary_push(*result, v);
|
1036
|
+
{p = (( np))-1;}
|
1037
|
+
}
|
1038
|
+
}
|
1039
|
+
goto st3;
|
1040
|
+
st3:
|
1041
|
+
if ( ++p == pe )
|
1042
|
+
goto _test_eof3;
|
1043
|
+
case 3:
|
1044
|
+
#line 1045 "parser.c"
|
1045
|
+
switch( (*p) ) {
|
1046
|
+
case 13: goto st3;
|
1047
|
+
case 32: goto st3;
|
1048
|
+
case 44: goto st4;
|
1049
|
+
case 47: goto st9;
|
1050
|
+
case 93: goto tr4;
|
1051
|
+
}
|
1052
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
1053
|
+
goto st3;
|
1054
|
+
goto st0;
|
1055
|
+
st4:
|
1056
|
+
if ( ++p == pe )
|
1057
|
+
goto _test_eof4;
|
1058
|
+
case 4:
|
1059
|
+
switch( (*p) ) {
|
1060
|
+
case 13: goto st4;
|
1061
|
+
case 32: goto st4;
|
1062
|
+
case 34: goto tr2;
|
1063
|
+
case 45: goto tr2;
|
1064
|
+
case 47: goto st5;
|
1065
|
+
case 73: goto tr2;
|
1066
|
+
case 78: goto tr2;
|
1067
|
+
case 91: goto tr2;
|
1068
|
+
case 102: goto tr2;
|
1069
|
+
case 110: goto tr2;
|
1070
|
+
case 116: goto tr2;
|
1071
|
+
case 123: goto tr2;
|
1072
|
+
}
|
1073
|
+
if ( (*p) > 10 ) {
|
1074
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1075
|
+
goto tr2;
|
1076
|
+
} else if ( (*p) >= 9 )
|
1077
|
+
goto st4;
|
1078
|
+
goto st0;
|
1079
|
+
st5:
|
1080
|
+
if ( ++p == pe )
|
1081
|
+
goto _test_eof5;
|
1082
|
+
case 5:
|
1083
|
+
switch( (*p) ) {
|
1084
|
+
case 42: goto st6;
|
1085
|
+
case 47: goto st8;
|
1086
|
+
}
|
1087
|
+
goto st0;
|
1088
|
+
st6:
|
1089
|
+
if ( ++p == pe )
|
1090
|
+
goto _test_eof6;
|
1091
|
+
case 6:
|
1092
|
+
if ( (*p) == 42 )
|
1093
|
+
goto st7;
|
1094
|
+
goto st6;
|
1095
|
+
st7:
|
1096
|
+
if ( ++p == pe )
|
1097
|
+
goto _test_eof7;
|
1098
|
+
case 7:
|
1099
|
+
switch( (*p) ) {
|
1100
|
+
case 42: goto st7;
|
1101
|
+
case 47: goto st4;
|
1102
|
+
}
|
1103
|
+
goto st6;
|
1104
|
+
st8:
|
1105
|
+
if ( ++p == pe )
|
1106
|
+
goto _test_eof8;
|
1107
|
+
case 8:
|
1108
|
+
if ( (*p) == 10 )
|
1109
|
+
goto st4;
|
1110
|
+
goto st8;
|
1111
|
+
st9:
|
1112
|
+
if ( ++p == pe )
|
1113
|
+
goto _test_eof9;
|
1114
|
+
case 9:
|
1115
|
+
switch( (*p) ) {
|
1116
|
+
case 42: goto st10;
|
1117
|
+
case 47: goto st12;
|
1118
|
+
}
|
1119
|
+
goto st0;
|
1120
|
+
st10:
|
1121
|
+
if ( ++p == pe )
|
1122
|
+
goto _test_eof10;
|
1123
|
+
case 10:
|
1124
|
+
if ( (*p) == 42 )
|
1125
|
+
goto st11;
|
1126
|
+
goto st10;
|
1127
|
+
st11:
|
1128
|
+
if ( ++p == pe )
|
1129
|
+
goto _test_eof11;
|
1130
|
+
case 11:
|
1131
|
+
switch( (*p) ) {
|
1132
|
+
case 42: goto st11;
|
1133
|
+
case 47: goto st3;
|
1134
|
+
}
|
1135
|
+
goto st10;
|
1136
|
+
st12:
|
1137
|
+
if ( ++p == pe )
|
1138
|
+
goto _test_eof12;
|
1139
|
+
case 12:
|
1140
|
+
if ( (*p) == 10 )
|
1141
|
+
goto st3;
|
1142
|
+
goto st12;
|
1143
|
+
tr4:
|
1144
|
+
#line 302 "parser.rl"
|
1145
|
+
{ p--; {p++; cs = 17; goto _out;} }
|
1146
|
+
goto st17;
|
1147
|
+
st17:
|
1148
|
+
if ( ++p == pe )
|
1149
|
+
goto _test_eof17;
|
1150
|
+
case 17:
|
1151
|
+
#line 1152 "parser.c"
|
1152
|
+
goto st0;
|
1153
|
+
st13:
|
1154
|
+
if ( ++p == pe )
|
1155
|
+
goto _test_eof13;
|
1156
|
+
case 13:
|
1157
|
+
switch( (*p) ) {
|
1158
|
+
case 42: goto st14;
|
1159
|
+
case 47: goto st16;
|
1160
|
+
}
|
1161
|
+
goto st0;
|
1162
|
+
st14:
|
1163
|
+
if ( ++p == pe )
|
1164
|
+
goto _test_eof14;
|
1165
|
+
case 14:
|
1166
|
+
if ( (*p) == 42 )
|
1167
|
+
goto st15;
|
1168
|
+
goto st14;
|
1169
|
+
st15:
|
1170
|
+
if ( ++p == pe )
|
1171
|
+
goto _test_eof15;
|
1172
|
+
case 15:
|
1173
|
+
switch( (*p) ) {
|
1174
|
+
case 42: goto st15;
|
1175
|
+
case 47: goto st2;
|
1176
|
+
}
|
1177
|
+
goto st14;
|
1178
|
+
st16:
|
1179
|
+
if ( ++p == pe )
|
1180
|
+
goto _test_eof16;
|
1181
|
+
case 16:
|
1182
|
+
if ( (*p) == 10 )
|
1183
|
+
goto st2;
|
1184
|
+
goto st16;
|
1185
|
+
}
|
1186
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1187
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1188
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1189
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1190
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1191
|
+
_test_eof7: cs = 7; goto _test_eof;
|
1192
|
+
_test_eof8: cs = 8; goto _test_eof;
|
1193
|
+
_test_eof9: cs = 9; goto _test_eof;
|
1194
|
+
_test_eof10: cs = 10; goto _test_eof;
|
1195
|
+
_test_eof11: cs = 11; goto _test_eof;
|
1196
|
+
_test_eof12: cs = 12; goto _test_eof;
|
1197
|
+
_test_eof17: cs = 17; goto _test_eof;
|
1198
|
+
_test_eof13: cs = 13; goto _test_eof;
|
1199
|
+
_test_eof14: cs = 14; goto _test_eof;
|
1200
|
+
_test_eof15: cs = 15; goto _test_eof;
|
1201
|
+
_test_eof16: cs = 16; goto _test_eof;
|
1202
|
+
|
1203
|
+
_test_eof: {}
|
1204
|
+
_out: {}
|
1205
|
+
}
|
1206
|
+
#line 323 "parser.rl"
|
1207
|
+
|
1208
|
+
if(cs >= JSON_array_first_final) {
|
1209
|
+
return p + 1;
|
1210
|
+
} else {
|
1211
|
+
rb_raise(eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
1212
|
+
}
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
static VALUE json_string_unescape(char *p, char *pe)
|
1216
|
+
{
|
1217
|
+
VALUE result = rb_str_buf_new(pe - p + 1);
|
1218
|
+
|
1219
|
+
while (p < pe) {
|
1220
|
+
if (*p == '\\') {
|
1221
|
+
p++;
|
1222
|
+
if (p >= pe) return Qnil; /* raise an exception later, \ at end */
|
1223
|
+
switch (*p) {
|
1224
|
+
case '"':
|
1225
|
+
case '\\':
|
1226
|
+
rb_str_buf_cat(result, p, 1);
|
1227
|
+
p++;
|
1228
|
+
break;
|
1229
|
+
case 'b':
|
1230
|
+
rb_str_buf_cat2(result, "\b");
|
1231
|
+
p++;
|
1232
|
+
break;
|
1233
|
+
case 'f':
|
1234
|
+
rb_str_buf_cat2(result, "\f");
|
1235
|
+
p++;
|
1236
|
+
break;
|
1237
|
+
case 'n':
|
1238
|
+
rb_str_buf_cat2(result, "\n");
|
1239
|
+
p++;
|
1240
|
+
break;
|
1241
|
+
case 'r':
|
1242
|
+
rb_str_buf_cat2(result, "\r");
|
1243
|
+
p++;
|
1244
|
+
break;
|
1245
|
+
case 't':
|
1246
|
+
rb_str_buf_cat2(result, "\t");
|
1247
|
+
p++;
|
1248
|
+
break;
|
1249
|
+
case 'u':
|
1250
|
+
if (p > pe - 4) {
|
1251
|
+
return Qnil;
|
1252
|
+
} else {
|
1253
|
+
p = JSON_convert_UTF16_to_UTF8(result, p, pe, strictConversion);
|
1254
|
+
}
|
1255
|
+
break;
|
1256
|
+
default:
|
1257
|
+
rb_str_buf_cat(result, p, 1);
|
1258
|
+
p++;
|
1259
|
+
break;
|
1260
|
+
}
|
1261
|
+
} else {
|
1262
|
+
char *q = p;
|
1263
|
+
while (*q != '\\' && q < pe) q++;
|
1264
|
+
rb_str_buf_cat(result, p, q - p);
|
1265
|
+
p = q;
|
1266
|
+
}
|
1267
|
+
}
|
1268
|
+
return result;
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
|
1272
|
+
#line 1273 "parser.c"
|
1273
|
+
static const int JSON_string_start = 1;
|
1274
|
+
static const int JSON_string_first_final = 8;
|
1275
|
+
static const int JSON_string_error = 0;
|
1276
|
+
|
1277
|
+
static const int JSON_string_en_main = 1;
|
1278
|
+
|
1279
|
+
#line 401 "parser.rl"
|
1280
|
+
|
1281
|
+
|
1282
|
+
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
1283
|
+
{
|
1284
|
+
int cs = EVIL;
|
1285
|
+
|
1286
|
+
*result = rb_str_new("", 0);
|
1287
|
+
|
1288
|
+
#line 1289 "parser.c"
|
1289
|
+
{
|
1290
|
+
cs = JSON_string_start;
|
1291
|
+
}
|
1292
|
+
#line 409 "parser.rl"
|
1293
|
+
json->memo = p;
|
1294
|
+
|
1295
|
+
#line 1296 "parser.c"
|
1296
|
+
{
|
1297
|
+
if ( p == pe )
|
1298
|
+
goto _test_eof;
|
1299
|
+
switch ( cs )
|
1300
|
+
{
|
1301
|
+
case 1:
|
1302
|
+
if ( (*p) == 34 )
|
1303
|
+
goto st2;
|
1304
|
+
goto st0;
|
1305
|
+
st0:
|
1306
|
+
cs = 0;
|
1307
|
+
goto _out;
|
1308
|
+
st2:
|
1309
|
+
if ( ++p == pe )
|
1310
|
+
goto _test_eof2;
|
1311
|
+
case 2:
|
1312
|
+
switch( (*p) ) {
|
1313
|
+
case 34: goto tr2;
|
1314
|
+
case 92: goto st3;
|
1315
|
+
}
|
1316
|
+
if ( 0 <= (*p) && (*p) <= 31 )
|
1317
|
+
goto st0;
|
1318
|
+
goto st2;
|
1319
|
+
tr2:
|
1320
|
+
#line 393 "parser.rl"
|
1321
|
+
{
|
1322
|
+
*result = json_string_unescape(json->memo + 1, p);
|
1323
|
+
if (NIL_P(*result)) { p--; {p++; cs = 8; goto _out;} } else {p = (( p + 1))-1;}
|
1324
|
+
}
|
1325
|
+
#line 398 "parser.rl"
|
1326
|
+
{ p--; {p++; cs = 8; goto _out;} }
|
1327
|
+
goto st8;
|
1328
|
+
st8:
|
1329
|
+
if ( ++p == pe )
|
1330
|
+
goto _test_eof8;
|
1331
|
+
case 8:
|
1332
|
+
#line 1333 "parser.c"
|
1333
|
+
goto st0;
|
1334
|
+
st3:
|
1335
|
+
if ( ++p == pe )
|
1336
|
+
goto _test_eof3;
|
1337
|
+
case 3:
|
1338
|
+
if ( (*p) == 117 )
|
1339
|
+
goto st4;
|
1340
|
+
if ( 0 <= (*p) && (*p) <= 31 )
|
1341
|
+
goto st0;
|
1342
|
+
goto st2;
|
1343
|
+
st4:
|
1344
|
+
if ( ++p == pe )
|
1345
|
+
goto _test_eof4;
|
1346
|
+
case 4:
|
1347
|
+
if ( (*p) < 65 ) {
|
1348
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1349
|
+
goto st5;
|
1350
|
+
} else if ( (*p) > 70 ) {
|
1351
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
1352
|
+
goto st5;
|
1353
|
+
} else
|
1354
|
+
goto st5;
|
1355
|
+
goto st0;
|
1356
|
+
st5:
|
1357
|
+
if ( ++p == pe )
|
1358
|
+
goto _test_eof5;
|
1359
|
+
case 5:
|
1360
|
+
if ( (*p) < 65 ) {
|
1361
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1362
|
+
goto st6;
|
1363
|
+
} else if ( (*p) > 70 ) {
|
1364
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
1365
|
+
goto st6;
|
1366
|
+
} else
|
1367
|
+
goto st6;
|
1368
|
+
goto st0;
|
1369
|
+
st6:
|
1370
|
+
if ( ++p == pe )
|
1371
|
+
goto _test_eof6;
|
1372
|
+
case 6:
|
1373
|
+
if ( (*p) < 65 ) {
|
1374
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1375
|
+
goto st7;
|
1376
|
+
} else if ( (*p) > 70 ) {
|
1377
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
1378
|
+
goto st7;
|
1379
|
+
} else
|
1380
|
+
goto st7;
|
1381
|
+
goto st0;
|
1382
|
+
st7:
|
1383
|
+
if ( ++p == pe )
|
1384
|
+
goto _test_eof7;
|
1385
|
+
case 7:
|
1386
|
+
if ( (*p) < 65 ) {
|
1387
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1388
|
+
goto st2;
|
1389
|
+
} else if ( (*p) > 70 ) {
|
1390
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
1391
|
+
goto st2;
|
1392
|
+
} else
|
1393
|
+
goto st2;
|
1394
|
+
goto st0;
|
1395
|
+
}
|
1396
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1397
|
+
_test_eof8: cs = 8; goto _test_eof;
|
1398
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1399
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1400
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1401
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1402
|
+
_test_eof7: cs = 7; goto _test_eof;
|
1403
|
+
|
1404
|
+
_test_eof: {}
|
1405
|
+
_out: {}
|
1406
|
+
}
|
1407
|
+
#line 411 "parser.rl"
|
1408
|
+
|
1409
|
+
if (cs >= JSON_string_first_final) {
|
1410
|
+
return p + 1;
|
1411
|
+
} else {
|
1412
|
+
return NULL;
|
1413
|
+
}
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
|
1417
|
+
|
1418
|
+
#line 1419 "parser.c"
|
1419
|
+
static const int JSON_start = 1;
|
1420
|
+
static const int JSON_first_final = 10;
|
1421
|
+
static const int JSON_error = 0;
|
1422
|
+
|
1423
|
+
static const int JSON_en_main = 1;
|
1424
|
+
|
1425
|
+
#line 445 "parser.rl"
|
1426
|
+
|
1427
|
+
|
1428
|
+
/*
|
1429
|
+
* Document-class: JSON::Ext::Parser
|
1430
|
+
*
|
1431
|
+
* This is the JSON parser implemented as a C extension. It can be configured
|
1432
|
+
* to be used by setting
|
1433
|
+
*
|
1434
|
+
* JSON.parser = JSON::Ext::Parser
|
1435
|
+
*
|
1436
|
+
* with the method parser= in JSON.
|
1437
|
+
*
|
1438
|
+
*/
|
1439
|
+
|
1440
|
+
/*
|
1441
|
+
* call-seq: new(source, opts => {})
|
1442
|
+
*
|
1443
|
+
* Creates a new JSON::Ext::Parser instance for the string _source_.
|
1444
|
+
*
|
1445
|
+
* Creates a new JSON::Ext::Parser instance for the string _source_.
|
1446
|
+
*
|
1447
|
+
* It will be configured by the _opts_ hash. _opts_ can have the following
|
1448
|
+
* keys:
|
1449
|
+
*
|
1450
|
+
* _opts_ can have the following keys:
|
1451
|
+
* * *max_nesting*: The maximum depth of nesting allowed in the parsed data
|
1452
|
+
* structures. Disable depth checking with :max_nesting => false|nil|0, it
|
1453
|
+
* defaults to 19.
|
1454
|
+
* * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
|
1455
|
+
* defiance of RFC 4627 to be parsed by the Parser. This option defaults to
|
1456
|
+
* false.
|
1457
|
+
* * *create_additions*: If set to false, the Parser doesn't create
|
1458
|
+
* additions even if a matchin class and create_id was found. This option
|
1459
|
+
* defaults to true.
|
1460
|
+
*/
|
1461
|
+
static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
|
1462
|
+
{
|
1463
|
+
char *ptr;
|
1464
|
+
long len;
|
1465
|
+
VALUE source, opts;
|
1466
|
+
GET_STRUCT;
|
1467
|
+
rb_scan_args(argc, argv, "11", &source, &opts);
|
1468
|
+
source = StringValue(source);
|
1469
|
+
ptr = RSTRING_PTR(source);
|
1470
|
+
len = RSTRING_LEN(source);
|
1471
|
+
if (len < 2) {
|
1472
|
+
rb_raise(eParserError, "A JSON text must at least contain two octets!");
|
1473
|
+
}
|
1474
|
+
if (!NIL_P(opts)) {
|
1475
|
+
opts = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
|
1476
|
+
if (NIL_P(opts)) {
|
1477
|
+
rb_raise(rb_eArgError, "opts needs to be like a hash");
|
1478
|
+
} else {
|
1479
|
+
VALUE tmp = ID2SYM(i_max_nesting);
|
1480
|
+
if (st_lookup(RHASH(opts)->tbl, tmp, 0)) {
|
1481
|
+
VALUE max_nesting = rb_hash_aref(opts, tmp);
|
1482
|
+
if (RTEST(max_nesting)) {
|
1483
|
+
Check_Type(max_nesting, T_FIXNUM);
|
1484
|
+
json->max_nesting = FIX2INT(max_nesting);
|
1485
|
+
} else {
|
1486
|
+
json->max_nesting = 0;
|
1487
|
+
}
|
1488
|
+
} else {
|
1489
|
+
json->max_nesting = 19;
|
1490
|
+
}
|
1491
|
+
tmp = ID2SYM(i_allow_nan);
|
1492
|
+
if (st_lookup(RHASH(opts)->tbl, tmp, 0)) {
|
1493
|
+
VALUE allow_nan = rb_hash_aref(opts, tmp);
|
1494
|
+
json->allow_nan = RTEST(allow_nan) ? 1 : 0;
|
1495
|
+
} else {
|
1496
|
+
json->allow_nan = 0;
|
1497
|
+
}
|
1498
|
+
tmp = ID2SYM(i_create_additions);
|
1499
|
+
if (st_lookup(RHASH(opts)->tbl, tmp, 0)) {
|
1500
|
+
VALUE create_additions = rb_hash_aref(opts, tmp);
|
1501
|
+
if (RTEST(create_additions)) {
|
1502
|
+
json->create_id = rb_funcall(mJSON, i_create_id, 0);
|
1503
|
+
} else {
|
1504
|
+
json->create_id = Qnil;
|
1505
|
+
}
|
1506
|
+
} else {
|
1507
|
+
json->create_id = rb_funcall(mJSON, i_create_id, 0);
|
1508
|
+
}
|
1509
|
+
}
|
1510
|
+
} else {
|
1511
|
+
json->max_nesting = 19;
|
1512
|
+
json->allow_nan = 0;
|
1513
|
+
json->create_id = rb_funcall(mJSON, i_create_id, 0);
|
1514
|
+
}
|
1515
|
+
json->current_nesting = 0;
|
1516
|
+
/*
|
1517
|
+
Convert these?
|
1518
|
+
if (len >= 4 && ptr[0] == 0 && ptr[1] == 0 && ptr[2] == 0) {
|
1519
|
+
rb_raise(eParserError, "Only UTF8 octet streams are supported atm!");
|
1520
|
+
} else if (len >= 4 && ptr[0] == 0 && ptr[2] == 0) {
|
1521
|
+
rb_raise(eParserError, "Only UTF8 octet streams are supported atm!");
|
1522
|
+
} else if (len >= 4 && ptr[1] == 0 && ptr[2] == 0 && ptr[3] == 0) {
|
1523
|
+
rb_raise(eParserError, "Only UTF8 octet streams are supported atm!");
|
1524
|
+
} else if (len >= 4 && ptr[1] == 0 && ptr[3] == 0) {
|
1525
|
+
rb_raise(eParserError, "Only UTF8 octet streams are supported atm!");
|
1526
|
+
}
|
1527
|
+
*/
|
1528
|
+
json->len = len;
|
1529
|
+
json->source = ptr;
|
1530
|
+
json->Vsource = source;
|
1531
|
+
return self;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
/*
|
1535
|
+
* call-seq: parse()
|
1536
|
+
*
|
1537
|
+
* Parses the current JSON text _source_ and returns the complete data
|
1538
|
+
* structure as a result.
|
1539
|
+
*/
|
1540
|
+
static VALUE cParser_parse(VALUE self)
|
1541
|
+
{
|
1542
|
+
char *p, *pe;
|
1543
|
+
int cs = EVIL;
|
1544
|
+
VALUE result = Qnil;
|
1545
|
+
GET_STRUCT;
|
1546
|
+
|
1547
|
+
|
1548
|
+
#line 1549 "parser.c"
|
1549
|
+
{
|
1550
|
+
cs = JSON_start;
|
1551
|
+
}
|
1552
|
+
#line 567 "parser.rl"
|
1553
|
+
p = json->source;
|
1554
|
+
pe = p + json->len;
|
1555
|
+
|
1556
|
+
#line 1557 "parser.c"
|
1557
|
+
{
|
1558
|
+
if ( p == pe )
|
1559
|
+
goto _test_eof;
|
1560
|
+
switch ( cs )
|
1561
|
+
{
|
1562
|
+
st1:
|
1563
|
+
if ( ++p == pe )
|
1564
|
+
goto _test_eof1;
|
1565
|
+
case 1:
|
1566
|
+
switch( (*p) ) {
|
1567
|
+
case 13: goto st1;
|
1568
|
+
case 32: goto st1;
|
1569
|
+
case 47: goto st2;
|
1570
|
+
case 91: goto tr3;
|
1571
|
+
case 123: goto tr4;
|
1572
|
+
}
|
1573
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
1574
|
+
goto st1;
|
1575
|
+
goto st0;
|
1576
|
+
st0:
|
1577
|
+
cs = 0;
|
1578
|
+
goto _out;
|
1579
|
+
st2:
|
1580
|
+
if ( ++p == pe )
|
1581
|
+
goto _test_eof2;
|
1582
|
+
case 2:
|
1583
|
+
switch( (*p) ) {
|
1584
|
+
case 42: goto st3;
|
1585
|
+
case 47: goto st5;
|
1586
|
+
}
|
1587
|
+
goto st0;
|
1588
|
+
st3:
|
1589
|
+
if ( ++p == pe )
|
1590
|
+
goto _test_eof3;
|
1591
|
+
case 3:
|
1592
|
+
if ( (*p) == 42 )
|
1593
|
+
goto st4;
|
1594
|
+
goto st3;
|
1595
|
+
st4:
|
1596
|
+
if ( ++p == pe )
|
1597
|
+
goto _test_eof4;
|
1598
|
+
case 4:
|
1599
|
+
switch( (*p) ) {
|
1600
|
+
case 42: goto st4;
|
1601
|
+
case 47: goto st1;
|
1602
|
+
}
|
1603
|
+
goto st3;
|
1604
|
+
st5:
|
1605
|
+
if ( ++p == pe )
|
1606
|
+
goto _test_eof5;
|
1607
|
+
case 5:
|
1608
|
+
if ( (*p) == 10 )
|
1609
|
+
goto st1;
|
1610
|
+
goto st5;
|
1611
|
+
tr3:
|
1612
|
+
#line 434 "parser.rl"
|
1613
|
+
{
|
1614
|
+
char *np;
|
1615
|
+
json->current_nesting = 1;
|
1616
|
+
np = JSON_parse_array(json, p, pe, &result);
|
1617
|
+
if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
|
1618
|
+
}
|
1619
|
+
goto st10;
|
1620
|
+
tr4:
|
1621
|
+
#line 427 "parser.rl"
|
1622
|
+
{
|
1623
|
+
char *np;
|
1624
|
+
json->current_nesting = 1;
|
1625
|
+
np = JSON_parse_object(json, p, pe, &result);
|
1626
|
+
if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
|
1627
|
+
}
|
1628
|
+
goto st10;
|
1629
|
+
st10:
|
1630
|
+
if ( ++p == pe )
|
1631
|
+
goto _test_eof10;
|
1632
|
+
case 10:
|
1633
|
+
#line 1634 "parser.c"
|
1634
|
+
switch( (*p) ) {
|
1635
|
+
case 13: goto st10;
|
1636
|
+
case 32: goto st10;
|
1637
|
+
case 47: goto st6;
|
1638
|
+
}
|
1639
|
+
if ( 9 <= (*p) && (*p) <= 10 )
|
1640
|
+
goto st10;
|
1641
|
+
goto st0;
|
1642
|
+
st6:
|
1643
|
+
if ( ++p == pe )
|
1644
|
+
goto _test_eof6;
|
1645
|
+
case 6:
|
1646
|
+
switch( (*p) ) {
|
1647
|
+
case 42: goto st7;
|
1648
|
+
case 47: goto st9;
|
1649
|
+
}
|
1650
|
+
goto st0;
|
1651
|
+
st7:
|
1652
|
+
if ( ++p == pe )
|
1653
|
+
goto _test_eof7;
|
1654
|
+
case 7:
|
1655
|
+
if ( (*p) == 42 )
|
1656
|
+
goto st8;
|
1657
|
+
goto st7;
|
1658
|
+
st8:
|
1659
|
+
if ( ++p == pe )
|
1660
|
+
goto _test_eof8;
|
1661
|
+
case 8:
|
1662
|
+
switch( (*p) ) {
|
1663
|
+
case 42: goto st8;
|
1664
|
+
case 47: goto st10;
|
1665
|
+
}
|
1666
|
+
goto st7;
|
1667
|
+
st9:
|
1668
|
+
if ( ++p == pe )
|
1669
|
+
goto _test_eof9;
|
1670
|
+
case 9:
|
1671
|
+
if ( (*p) == 10 )
|
1672
|
+
goto st10;
|
1673
|
+
goto st9;
|
1674
|
+
}
|
1675
|
+
_test_eof1: cs = 1; goto _test_eof;
|
1676
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1677
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1678
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1679
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1680
|
+
_test_eof10: cs = 10; goto _test_eof;
|
1681
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1682
|
+
_test_eof7: cs = 7; goto _test_eof;
|
1683
|
+
_test_eof8: cs = 8; goto _test_eof;
|
1684
|
+
_test_eof9: cs = 9; goto _test_eof;
|
1685
|
+
|
1686
|
+
_test_eof: {}
|
1687
|
+
_out: {}
|
1688
|
+
}
|
1689
|
+
#line 570 "parser.rl"
|
1690
|
+
|
1691
|
+
if (cs >= JSON_first_final && p == pe) {
|
1692
|
+
return result;
|
1693
|
+
} else {
|
1694
|
+
rb_raise(eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
1695
|
+
}
|
1696
|
+
}
|
1697
|
+
|
1698
|
+
inline static JSON_Parser *JSON_allocate()
|
1699
|
+
{
|
1700
|
+
JSON_Parser *json = ALLOC(JSON_Parser);
|
1701
|
+
MEMZERO(json, JSON_Parser, 1);
|
1702
|
+
return json;
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
static void JSON_mark(JSON_Parser *json)
|
1706
|
+
{
|
1707
|
+
rb_gc_mark_maybe(json->Vsource);
|
1708
|
+
rb_gc_mark_maybe(json->create_id);
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
static void JSON_free(JSON_Parser *json)
|
1712
|
+
{
|
1713
|
+
free(json);
|
1714
|
+
}
|
1715
|
+
|
1716
|
+
static VALUE cJSON_parser_s_allocate(VALUE klass)
|
1717
|
+
{
|
1718
|
+
JSON_Parser *json = JSON_allocate();
|
1719
|
+
return Data_Wrap_Struct(klass, JSON_mark, JSON_free, json);
|
1720
|
+
}
|
1721
|
+
|
1722
|
+
/*
|
1723
|
+
* call-seq: source()
|
1724
|
+
*
|
1725
|
+
* Returns a copy of the current _source_ string, that was used to construct
|
1726
|
+
* this Parser.
|
1727
|
+
*/
|
1728
|
+
static VALUE cParser_source(VALUE self)
|
1729
|
+
{
|
1730
|
+
GET_STRUCT;
|
1731
|
+
return rb_str_dup(json->Vsource);
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
void Init_parser()
|
1735
|
+
{
|
1736
|
+
rb_require("json/common");
|
1737
|
+
mJSON = rb_define_module("JSON");
|
1738
|
+
mExt = rb_define_module_under(mJSON, "Ext");
|
1739
|
+
cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
|
1740
|
+
eParserError = rb_path2class("JSON::ParserError");
|
1741
|
+
eNestingError = rb_path2class("JSON::NestingError");
|
1742
|
+
rb_define_alloc_func(cParser, cJSON_parser_s_allocate);
|
1743
|
+
rb_define_method(cParser, "initialize", cParser_initialize, -1);
|
1744
|
+
rb_define_method(cParser, "parse", cParser_parse, 0);
|
1745
|
+
rb_define_method(cParser, "source", cParser_source, 0);
|
1746
|
+
|
1747
|
+
CNaN = rb_const_get(mJSON, rb_intern("NaN"));
|
1748
|
+
CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
|
1749
|
+
CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
|
1750
|
+
|
1751
|
+
i_json_creatable_p = rb_intern("json_creatable?");
|
1752
|
+
i_json_create = rb_intern("json_create");
|
1753
|
+
i_create_id = rb_intern("create_id");
|
1754
|
+
i_create_additions = rb_intern("create_additions");
|
1755
|
+
i_chr = rb_intern("chr");
|
1756
|
+
i_max_nesting = rb_intern("max_nesting");
|
1757
|
+
i_allow_nan = rb_intern("allow_nan");
|
1758
|
+
}
|