activejob-lock 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +21 -0
- data/LICENSE.txt +22 -0
- data/README.md +48 -0
- data/Rakefile +77 -0
- data/activejob-lock.gemspec +30 -0
- data/lib/activejob/lock/queue_adapters/resque_adapter.rb +44 -0
- data/lib/activejob/lock/queue_adapters.rb +1 -0
- data/lib/activejob/lock/version.rb +5 -0
- data/lib/activejob/lock.rb +38 -0
- data/rails/.gitignore +21 -0
- data/rails/.travis.yml +62 -0
- data/rails/.yardopts +4 -0
- data/rails/CONTRIBUTING.md +17 -0
- data/rails/Gemfile +126 -0
- data/rails/Gemfile.lock +273 -0
- data/rails/RAILS_VERSION +1 -0
- data/rails/README.md +85 -0
- data/rails/RELEASING_RAILS.rdoc +217 -0
- data/rails/Rakefile +67 -0
- data/rails/actionmailer/CHANGELOG.md +63 -0
- data/rails/actionmailer/MIT-LICENSE +21 -0
- data/rails/actionmailer/README.rdoc +176 -0
- data/rails/actionmailer/Rakefile +35 -0
- data/rails/actionmailer/actionmailer.gemspec +28 -0
- data/rails/actionmailer/lib/action_mailer/base.rb +947 -0
- data/rails/actionmailer/lib/action_mailer/collector.rb +30 -0
- data/rails/actionmailer/lib/action_mailer/delivery_job.rb +13 -0
- data/rails/actionmailer/lib/action_mailer/delivery_methods.rb +84 -0
- data/rails/actionmailer/lib/action_mailer/gem_version.rb +15 -0
- data/rails/actionmailer/lib/action_mailer/log_subscriber.rb +39 -0
- data/rails/actionmailer/lib/action_mailer/mail_helper.rb +58 -0
- data/rails/actionmailer/lib/action_mailer/message_delivery.rb +115 -0
- data/rails/actionmailer/lib/action_mailer/preview.rb +118 -0
- data/rails/actionmailer/lib/action_mailer/railtie.rb +64 -0
- data/rails/actionmailer/lib/action_mailer/test_case.rb +104 -0
- data/rails/actionmailer/lib/action_mailer/test_helper.rb +62 -0
- data/rails/actionmailer/lib/action_mailer/version.rb +9 -0
- data/rails/actionmailer/lib/action_mailer.rb +50 -0
- data/rails/actionmailer/lib/rails/generators/mailer/USAGE +17 -0
- data/rails/actionmailer/lib/rails/generators/mailer/mailer_generator.rb +19 -0
- data/rails/actionmailer/lib/rails/generators/mailer/templates/application_mailer.rb +4 -0
- data/rails/actionmailer/lib/rails/generators/mailer/templates/mailer.rb +17 -0
- data/rails/actionmailer/test/abstract_unit.rb +49 -0
- data/rails/actionmailer/test/assert_select_email_test.rb +47 -0
- data/rails/actionmailer/test/asset_host_test.rb +37 -0
- data/rails/actionmailer/test/base_test.rb +885 -0
- data/rails/actionmailer/test/delivery_methods_test.rb +237 -0
- data/rails/actionmailer/test/fixtures/anonymous/welcome.erb +1 -0
- data/rails/actionmailer/test/fixtures/another.path/base_mailer/welcome.erb +1 -0
- data/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/asset_mailer/welcome.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/async_mailer/welcome.erb +1 -0
- data/rails/actionmailer/test/fixtures/attachments/foo.jpg +0 -0
- data/rails/actionmailer/test/fixtures/attachments/test.jpg +0 -0
- data/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/attachment_with_content.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/attachment_with_hash.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_mailer/attachment_with_hash_default_encoding.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_mailer/different_layout.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/different_layout.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/email_custom_layout.text.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/email_with_translations.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/explicit_multipart_with_one_template.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/html_only.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_multipart.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_multipart.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_with_locale.en.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_with_locale.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_with_locale.pl.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/implicit_with_locale.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/inline_attachment.html.erb +5 -0
- data/rails/actionmailer/test/fixtures/base_mailer/inline_attachment.text.erb +4 -0
- data/rails/actionmailer/test/fixtures/base_mailer/plain_text_only.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/welcome.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_mailer/welcome_with_headers.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_mailer/without_mail_call.erb +1 -0
- data/rails/actionmailer/test/fixtures/base_test/after_action_mailer/welcome.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_test/before_action_mailer/welcome.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_test/default_inline_attachment_mailer/welcome.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/base_test/late_inline_attachment_mailer/on_render.erb +7 -0
- data/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
- data/rails/actionmailer/test/fixtures/i18n_test_mailer/mail_with_i18n_subject.erb +4 -0
- data/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/layouts/different_layout.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/layouts/different_layout.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/mail_delivery_test/delivery_mailer/welcome.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
- data/rails/actionmailer/test/fixtures/proc_mailer/welcome.html.erb +0 -0
- data/rails/actionmailer/test/fixtures/raw_email +14 -0
- data/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
- data/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/rails/actionmailer/test/fixtures/test_helper_mailer/welcome +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.html.haml +6 -0
- data/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.haml +6 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.html.erb +10 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.html.erb~ +10 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.erb +2 -0
- data/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.yaml.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb +1 -0
- data/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
- data/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
- data/rails/actionmailer/test/fixtures/url_test_mailer/exercise_url_for.erb +1 -0
- data/rails/actionmailer/test/fixtures/url_test_mailer/signed_up_with_url.erb +5 -0
- data/rails/actionmailer/test/i18n_with_controller_test.rb +70 -0
- data/rails/actionmailer/test/log_subscriber_test.rb +47 -0
- data/rails/actionmailer/test/mail_helper_test.rb +111 -0
- data/rails/actionmailer/test/mail_layout_test.rb +95 -0
- data/rails/actionmailer/test/mailers/asset_mailer.rb +7 -0
- data/rails/actionmailer/test/mailers/base_mailer.rb +130 -0
- data/rails/actionmailer/test/mailers/delayed_mailer.rb +6 -0
- data/rails/actionmailer/test/mailers/proc_mailer.rb +17 -0
- data/rails/actionmailer/test/message_delivery_test.rb +104 -0
- data/rails/actionmailer/test/test_case_test.rb +28 -0
- data/rails/actionmailer/test/test_helper_test.rb +135 -0
- data/rails/actionmailer/test/url_test.rb +138 -0
- data/rails/actionpack/CHANGELOG.md +501 -0
- data/rails/actionpack/MIT-LICENSE +21 -0
- data/rails/actionpack/README.rdoc +58 -0
- data/rails/actionpack/Rakefile +53 -0
- data/rails/actionpack/actionpack.gemspec +31 -0
- data/rails/actionpack/lib/abstract_controller/asset_paths.rb +10 -0
- data/rails/actionpack/lib/abstract_controller/base.rb +269 -0
- data/rails/actionpack/lib/abstract_controller/callbacks.rb +196 -0
- data/rails/actionpack/lib/abstract_controller/collector.rb +46 -0
- data/rails/actionpack/lib/abstract_controller/helpers.rb +194 -0
- data/rails/actionpack/lib/abstract_controller/logger.rb +12 -0
- data/rails/actionpack/lib/abstract_controller/railties/routes_helpers.rb +18 -0
- data/rails/actionpack/lib/abstract_controller/rendering.rb +120 -0
- data/rails/actionpack/lib/abstract_controller/translation.rb +28 -0
- data/rails/actionpack/lib/abstract_controller/url_for.rb +33 -0
- data/rails/actionpack/lib/abstract_controller.rb +20 -0
- data/rails/actionpack/lib/action_controller/base.rb +268 -0
- data/rails/actionpack/lib/action_controller/caching/fragments.rb +103 -0
- data/rails/actionpack/lib/action_controller/caching.rb +89 -0
- data/rails/actionpack/lib/action_controller/log_subscriber.rb +83 -0
- data/rails/actionpack/lib/action_controller/metal/conditional_get.rb +200 -0
- data/rails/actionpack/lib/action_controller/metal/cookies.rb +16 -0
- data/rails/actionpack/lib/action_controller/metal/data_streaming.rb +171 -0
- data/rails/actionpack/lib/action_controller/metal/etag_with_template_digest.rb +50 -0
- data/rails/actionpack/lib/action_controller/metal/exceptions.rb +59 -0
- data/rails/actionpack/lib/action_controller/metal/flash.rb +60 -0
- data/rails/actionpack/lib/action_controller/metal/force_ssl.rb +97 -0
- data/rails/actionpack/lib/action_controller/metal/head.rb +56 -0
- data/rails/actionpack/lib/action_controller/metal/helpers.rb +113 -0
- data/rails/actionpack/lib/action_controller/metal/hide_actions.rb +40 -0
- data/rails/actionpack/lib/action_controller/metal/http_authentication.rb +507 -0
- data/rails/actionpack/lib/action_controller/metal/implicit_render.rb +19 -0
- data/rails/actionpack/lib/action_controller/metal/instrumentation.rb +109 -0
- data/rails/actionpack/lib/action_controller/metal/live.rb +328 -0
- data/rails/actionpack/lib/action_controller/metal/mime_responds.rb +324 -0
- data/rails/actionpack/lib/action_controller/metal/params_wrapper.rb +285 -0
- data/rails/actionpack/lib/action_controller/metal/rack_delegation.rb +32 -0
- data/rails/actionpack/lib/action_controller/metal/redirecting.rb +112 -0
- data/rails/actionpack/lib/action_controller/metal/renderers.rb +140 -0
- data/rails/actionpack/lib/action_controller/metal/rendering.rb +100 -0
- data/rails/actionpack/lib/action_controller/metal/request_forgery_protection.rb +334 -0
- data/rails/actionpack/lib/action_controller/metal/rescue.rb +35 -0
- data/rails/actionpack/lib/action_controller/metal/streaming.rb +221 -0
- data/rails/actionpack/lib/action_controller/metal/strong_parameters.rb +667 -0
- data/rails/actionpack/lib/action_controller/metal/testing.rb +31 -0
- data/rails/actionpack/lib/action_controller/metal/url_for.rb +49 -0
- data/rails/actionpack/lib/action_controller/metal.rb +241 -0
- data/rails/actionpack/lib/action_controller/middleware.rb +39 -0
- data/rails/actionpack/lib/action_controller/model_naming.rb +12 -0
- data/rails/actionpack/lib/action_controller/railtie.rb +71 -0
- data/rails/actionpack/lib/action_controller/railties/helpers.rb +22 -0
- data/rails/actionpack/lib/action_controller/test_case.rb +754 -0
- data/rails/actionpack/lib/action_controller.rb +58 -0
- data/rails/actionpack/lib/action_dispatch/http/cache.rb +176 -0
- data/rails/actionpack/lib/action_dispatch/http/filter_parameters.rb +78 -0
- data/rails/actionpack/lib/action_dispatch/http/filter_redirect.rb +38 -0
- data/rails/actionpack/lib/action_dispatch/http/headers.rb +99 -0
- data/rails/actionpack/lib/action_dispatch/http/mime_negotiation.rb +156 -0
- data/rails/actionpack/lib/action_dispatch/http/mime_type.rb +315 -0
- data/rails/actionpack/lib/action_dispatch/http/mime_types.rb +36 -0
- data/rails/actionpack/lib/action_dispatch/http/parameter_filter.rb +72 -0
- data/rails/actionpack/lib/action_dispatch/http/parameters.rb +67 -0
- data/rails/actionpack/lib/action_dispatch/http/rack_cache.rb +61 -0
- data/rails/actionpack/lib/action_dispatch/http/request.rb +348 -0
- data/rails/actionpack/lib/action_dispatch/http/response.rb +406 -0
- data/rails/actionpack/lib/action_dispatch/http/upload.rb +72 -0
- data/rails/actionpack/lib/action_dispatch/http/url.rb +268 -0
- data/rails/actionpack/lib/action_dispatch/journey/backwards.rb +5 -0
- data/rails/actionpack/lib/action_dispatch/journey/formatter.rb +166 -0
- data/rails/actionpack/lib/action_dispatch/journey/gtg/builder.rb +162 -0
- data/rails/actionpack/lib/action_dispatch/journey/gtg/simulator.rb +47 -0
- data/rails/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb +157 -0
- data/rails/actionpack/lib/action_dispatch/journey/nfa/builder.rb +76 -0
- data/rails/actionpack/lib/action_dispatch/journey/nfa/dot.rb +36 -0
- data/rails/actionpack/lib/action_dispatch/journey/nfa/simulator.rb +47 -0
- data/rails/actionpack/lib/action_dispatch/journey/nfa/transition_table.rb +163 -0
- data/rails/actionpack/lib/action_dispatch/journey/nodes/node.rb +128 -0
- data/rails/actionpack/lib/action_dispatch/journey/parser.rb +198 -0
- data/rails/actionpack/lib/action_dispatch/journey/parser.y +49 -0
- data/rails/actionpack/lib/action_dispatch/journey/parser_extras.rb +23 -0
- data/rails/actionpack/lib/action_dispatch/journey/path/pattern.rb +193 -0
- data/rails/actionpack/lib/action_dispatch/journey/route.rb +125 -0
- data/rails/actionpack/lib/action_dispatch/journey/router/strexp.rb +27 -0
- data/rails/actionpack/lib/action_dispatch/journey/router/utils.rb +93 -0
- data/rails/actionpack/lib/action_dispatch/journey/router.rb +144 -0
- data/rails/actionpack/lib/action_dispatch/journey/routes.rb +76 -0
- data/rails/actionpack/lib/action_dispatch/journey/scanner.rb +61 -0
- data/rails/actionpack/lib/action_dispatch/journey/visitors.rb +221 -0
- data/rails/actionpack/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
- data/rails/actionpack/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
- data/rails/actionpack/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
- data/rails/actionpack/lib/action_dispatch/journey.rb +5 -0
- data/rails/actionpack/lib/action_dispatch/middleware/callbacks.rb +37 -0
- data/rails/actionpack/lib/action_dispatch/middleware/cookies.rb +574 -0
- data/rails/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb +110 -0
- data/rails/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb +148 -0
- data/rails/actionpack/lib/action_dispatch/middleware/flash.rb +276 -0
- data/rails/actionpack/lib/action_dispatch/middleware/params_parser.rb +60 -0
- data/rails/actionpack/lib/action_dispatch/middleware/public_exceptions.rb +55 -0
- data/rails/actionpack/lib/action_dispatch/middleware/reloader.rb +98 -0
- data/rails/actionpack/lib/action_dispatch/middleware/remote_ip.rb +173 -0
- data/rails/actionpack/lib/action_dispatch/middleware/request_id.rb +35 -0
- data/rails/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb +90 -0
- data/rails/actionpack/lib/action_dispatch/middleware/session/cache_store.rb +49 -0
- data/rails/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb +123 -0
- data/rails/actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb +22 -0
- data/rails/actionpack/lib/action_dispatch/middleware/show_exceptions.rb +58 -0
- data/rails/actionpack/lib/action_dispatch/middleware/ssl.rb +72 -0
- data/rails/actionpack/lib/action_dispatch/middleware/stack.rb +129 -0
- data/rails/actionpack/lib/action_dispatch/middleware/static.rb +116 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +34 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.erb +27 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +52 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +16 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/layout.erb +160 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
- data/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_table.html.erb +200 -0
- data/rails/actionpack/lib/action_dispatch/railtie.rb +45 -0
- data/rails/actionpack/lib/action_dispatch/request/session.rb +193 -0
- data/rails/actionpack/lib/action_dispatch/request/utils.rb +35 -0
- data/rails/actionpack/lib/action_dispatch/routing/endpoint.rb +10 -0
- data/rails/actionpack/lib/action_dispatch/routing/inspector.rb +234 -0
- data/rails/actionpack/lib/action_dispatch/routing/mapper.rb +1979 -0
- data/rails/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb +330 -0
- data/rails/actionpack/lib/action_dispatch/routing/redirection.rb +191 -0
- data/rails/actionpack/lib/action_dispatch/routing/route_set.rb +862 -0
- data/rails/actionpack/lib/action_dispatch/routing/routes_proxy.rb +41 -0
- data/rails/actionpack/lib/action_dispatch/routing/url_for.rb +195 -0
- data/rails/actionpack/lib/action_dispatch/routing.rb +261 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions/dom.rb +3 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions/response.rb +82 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions/routing.rb +212 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions/selector.rb +3 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions/tag.rb +3 -0
- data/rails/actionpack/lib/action_dispatch/testing/assertions.rb +22 -0
- data/rails/actionpack/lib/action_dispatch/testing/integration.rb +511 -0
- data/rails/actionpack/lib/action_dispatch/testing/test_process.rb +44 -0
- data/rails/actionpack/lib/action_dispatch/testing/test_request.rb +78 -0
- data/rails/actionpack/lib/action_dispatch/testing/test_response.rb +36 -0
- data/rails/actionpack/lib/action_dispatch.rb +105 -0
- data/rails/actionpack/lib/action_pack/gem_version.rb +15 -0
- data/rails/actionpack/lib/action_pack/version.rb +8 -0
- data/rails/actionpack/lib/action_pack.rb +24 -0
- data/rails/actionpack/test/abstract/callbacks_test.rb +315 -0
- data/rails/actionpack/test/abstract/collector_test.rb +63 -0
- data/rails/actionpack/test/abstract/translation_test.rb +50 -0
- data/rails/actionpack/test/abstract_unit.rb +521 -0
- data/rails/actionpack/test/assertions/response_assertions_test.rb +63 -0
- data/rails/actionpack/test/controller/action_pack_assertions_test.rb +657 -0
- data/rails/actionpack/test/controller/base_test.rb +342 -0
- data/rails/actionpack/test/controller/caching_test.rb +351 -0
- data/rails/actionpack/test/controller/content_type_test.rb +167 -0
- data/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/rails/actionpack/test/controller/default_url_options_with_before_action_test.rb +29 -0
- data/rails/actionpack/test/controller/filters_test.rb +1047 -0
- data/rails/actionpack/test/controller/flash_hash_test.rb +211 -0
- data/rails/actionpack/test/controller/flash_test.rb +335 -0
- data/rails/actionpack/test/controller/force_ssl_test.rb +324 -0
- data/rails/actionpack/test/controller/helper_test.rb +297 -0
- data/rails/actionpack/test/controller/http_basic_authentication_test.rb +144 -0
- data/rails/actionpack/test/controller/http_digest_authentication_test.rb +289 -0
- data/rails/actionpack/test/controller/http_token_authentication_test.rb +200 -0
- data/rails/actionpack/test/controller/integration_test.rb +899 -0
- data/rails/actionpack/test/controller/live_stream_test.rb +454 -0
- data/rails/actionpack/test/controller/localized_templates_test.rb +46 -0
- data/rails/actionpack/test/controller/log_subscriber_test.rb +345 -0
- data/rails/actionpack/test/controller/mime/accept_format_test.rb +92 -0
- data/rails/actionpack/test/controller/mime/respond_to_test.rb +784 -0
- data/rails/actionpack/test/controller/mime/responders_test.rb +32 -0
- data/rails/actionpack/test/controller/new_base/bare_metal_test.rb +153 -0
- data/rails/actionpack/test/controller/new_base/base_test.rb +132 -0
- data/rails/actionpack/test/controller/new_base/content_negotiation_test.rb +27 -0
- data/rails/actionpack/test/controller/new_base/content_type_test.rb +112 -0
- data/rails/actionpack/test/controller/new_base/metal_test.rb +45 -0
- data/rails/actionpack/test/controller/new_base/middleware_test.rb +110 -0
- data/rails/actionpack/test/controller/new_base/render_action_test.rb +315 -0
- data/rails/actionpack/test/controller/new_base/render_body_test.rb +170 -0
- data/rails/actionpack/test/controller/new_base/render_context_test.rb +54 -0
- data/rails/actionpack/test/controller/new_base/render_file_test.rb +70 -0
- data/rails/actionpack/test/controller/new_base/render_html_test.rb +190 -0
- data/rails/actionpack/test/controller/new_base/render_implicit_action_test.rb +57 -0
- data/rails/actionpack/test/controller/new_base/render_layout_test.rb +127 -0
- data/rails/actionpack/test/controller/new_base/render_partial_test.rb +63 -0
- data/rails/actionpack/test/controller/new_base/render_plain_test.rb +168 -0
- data/rails/actionpack/test/controller/new_base/render_streaming_test.rb +114 -0
- data/rails/actionpack/test/controller/new_base/render_template_test.rb +239 -0
- data/rails/actionpack/test/controller/new_base/render_test.rb +136 -0
- data/rails/actionpack/test/controller/new_base/render_text_test.rb +158 -0
- data/rails/actionpack/test/controller/new_base/render_xml_test.rb +11 -0
- data/rails/actionpack/test/controller/output_escaping_test.rb +17 -0
- data/rails/actionpack/test/controller/parameters/accessors_test.rb +125 -0
- data/rails/actionpack/test/controller/parameters/always_permitted_parameters_test.rb +29 -0
- data/rails/actionpack/test/controller/parameters/log_on_unpermitted_params_test.rb +72 -0
- data/rails/actionpack/test/controller/parameters/multi_parameter_attributes_test.rb +38 -0
- data/rails/actionpack/test/controller/parameters/mutators_test.rb +99 -0
- data/rails/actionpack/test/controller/parameters/nested_parameters_test.rb +187 -0
- data/rails/actionpack/test/controller/parameters/parameters_permit_test.rb +289 -0
- data/rails/actionpack/test/controller/parameters/raise_on_unpermitted_params_test.rb +33 -0
- data/rails/actionpack/test/controller/params_wrapper_test.rb +362 -0
- data/rails/actionpack/test/controller/permitted_params_test.rb +25 -0
- data/rails/actionpack/test/controller/redirect_test.rb +354 -0
- data/rails/actionpack/test/controller/render_js_test.rb +34 -0
- data/rails/actionpack/test/controller/render_json_test.rb +136 -0
- data/rails/actionpack/test/controller/render_other_test.rb +24 -0
- data/rails/actionpack/test/controller/render_test.rb +579 -0
- data/rails/actionpack/test/controller/render_xml_test.rb +97 -0
- data/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
- data/rails/actionpack/test/controller/request_forgery_protection_test.rb +510 -0
- data/rails/actionpack/test/controller/required_params_test.rb +51 -0
- data/rails/actionpack/test/controller/rescue_test.rb +348 -0
- data/rails/actionpack/test/controller/resources_test.rb +1334 -0
- data/rails/actionpack/test/controller/routing_test.rb +2026 -0
- data/rails/actionpack/test/controller/runner_test.rb +22 -0
- data/rails/actionpack/test/controller/send_file_test.rb +209 -0
- data/rails/actionpack/test/controller/show_exceptions_test.rb +112 -0
- data/rails/actionpack/test/controller/streaming_test.rb +26 -0
- data/rails/actionpack/test/controller/test_case_test.rb +913 -0
- data/rails/actionpack/test/controller/url_for_integration_test.rb +188 -0
- data/rails/actionpack/test/controller/url_for_test.rb +446 -0
- data/rails/actionpack/test/controller/url_rewriter_test.rb +90 -0
- data/rails/actionpack/test/controller/webservice_test.rb +114 -0
- data/rails/actionpack/test/dispatch/callbacks_test.rb +58 -0
- data/rails/actionpack/test/dispatch/cookies_test.rb +1159 -0
- data/rails/actionpack/test/dispatch/debug_exceptions_test.rb +350 -0
- data/rails/actionpack/test/dispatch/exception_wrapper_test.rb +97 -0
- data/rails/actionpack/test/dispatch/header_test.rb +139 -0
- data/rails/actionpack/test/dispatch/live_response_test.rb +94 -0
- data/rails/actionpack/test/dispatch/mapper_test.rb +112 -0
- data/rails/actionpack/test/dispatch/middleware_stack/middleware_test.rb +77 -0
- data/rails/actionpack/test/dispatch/middleware_stack_test.rb +117 -0
- data/rails/actionpack/test/dispatch/mime_type_test.rb +203 -0
- data/rails/actionpack/test/dispatch/mount_test.rb +93 -0
- data/rails/actionpack/test/dispatch/prefix_generation_test.rb +465 -0
- data/rails/actionpack/test/dispatch/rack_cache_test.rb +21 -0
- data/rails/actionpack/test/dispatch/reloader_test.rb +176 -0
- data/rails/actionpack/test/dispatch/request/json_params_parsing_test.rb +164 -0
- data/rails/actionpack/test/dispatch/request/multipart_params_parsing_test.rb +186 -0
- data/rails/actionpack/test/dispatch/request/query_string_parsing_test.rb +171 -0
- data/rails/actionpack/test/dispatch/request/session_test.rb +116 -0
- data/rails/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb +177 -0
- data/rails/actionpack/test/dispatch/request_id_test.rb +65 -0
- data/rails/actionpack/test/dispatch/request_test.rb +1159 -0
- data/rails/actionpack/test/dispatch/response_test.rb +344 -0
- data/rails/actionpack/test/dispatch/routing/concerns_test.rb +120 -0
- data/rails/actionpack/test/dispatch/routing/inspector_test.rb +326 -0
- data/rails/actionpack/test/dispatch/routing/route_set_test.rb +205 -0
- data/rails/actionpack/test/dispatch/routing_assertions_test.rb +131 -0
- data/rails/actionpack/test/dispatch/routing_test.rb +4475 -0
- data/rails/actionpack/test/dispatch/session/abstract_store_test.rb +56 -0
- data/rails/actionpack/test/dispatch/session/cache_store_test.rb +179 -0
- data/rails/actionpack/test/dispatch/session/cookie_store_test.rb +356 -0
- data/rails/actionpack/test/dispatch/session/mem_cache_store_test.rb +201 -0
- data/rails/actionpack/test/dispatch/session/test_session_test.rb +43 -0
- data/rails/actionpack/test/dispatch/show_exceptions_test.rb +115 -0
- data/rails/actionpack/test/dispatch/ssl_test.rb +219 -0
- data/rails/actionpack/test/dispatch/static_test.rb +239 -0
- data/rails/actionpack/test/dispatch/template_assertions_test.rb +110 -0
- data/rails/actionpack/test/dispatch/test_request_test.rb +99 -0
- data/rails/actionpack/test/dispatch/test_response_test.rb +21 -0
- data/rails/actionpack/test/dispatch/uploaded_file_test.rb +105 -0
- data/rails/actionpack/test/dispatch/url_generation_test.rb +134 -0
- data/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
- data/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/rails/actionpack/test/fixtures/company.rb +9 -0
- data/rails/actionpack/test/fixtures/filter_test/implicit_actions/edit.html.erb +1 -0
- data/rails/actionpack/test/fixtures/filter_test/implicit_actions/show.html.erb +1 -0
- data/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached_with_variant.html+phone.erb +3 -0
- data/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +3 -0
- data/rails/actionpack/test/fixtures/functional_caching/fragment_cached_without_digest.html.erb +3 -0
- data/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/rails/actionpack/test/fixtures/helpers/abc_helper.rb +3 -0
- data/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +5 -0
- data/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +5 -0
- data/rails/actionpack/test/fixtures/helpers/just_me_helper.rb +3 -0
- data/rails/actionpack/test/fixtures/helpers/me_too_helper.rb +3 -0
- data/rails/actionpack/test/fixtures/helpers1_pack/pack1_helper.rb +5 -0
- data/rails/actionpack/test/fixtures/helpers2_pack/pack2_helper.rb +5 -0
- data/rails/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb +5 -0
- data/rails/actionpack/test/fixtures/layouts/_customers.erb +1 -0
- data/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/rails/actionpack/test/fixtures/layouts/standard.html.erb +1 -0
- data/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/rails/actionpack/test/fixtures/layouts/with_html_partial.html.erb +1 -0
- data/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/rails/actionpack/test/fixtures/localized/hello_world.de.html +1 -0
- data/rails/actionpack/test/fixtures/localized/hello_world.en.html +1 -0
- data/rails/actionpack/test/fixtures/localized/hello_world.it.erb +1 -0
- data/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/rails/actionpack/test/fixtures/multipart/bracketed_utf8_param +5 -0
- data/rails/actionpack/test/fixtures/multipart/empty +10 -0
- data/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
- data/rails/actionpack/test/fixtures/multipart/none +9 -0
- data/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/rails/actionpack/test/fixtures/multipart/single_utf8_param +5 -0
- data/rails/actionpack/test/fixtures/multipart/text_file +10 -0
- data/rails/actionpack/test/fixtures/old_content_type/render_default_content_types_for_respond_to.xml.erb +1 -0
- data/rails/actionpack/test/fixtures/old_content_type/render_default_for_builder.builder +1 -0
- data/rails/actionpack/test/fixtures/old_content_type/render_default_for_erb.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/rails/actionpack/test/fixtures/public/400.html +1 -0
- data/rails/actionpack/test/fixtures/public/404.html +1 -0
- data/rails/actionpack/test/fixtures/public/500.da.html +1 -0
- data/rails/actionpack/test/fixtures/public/500.html +1 -0
- data/rails/actionpack/test/fixtures/public/bar/index.html +1 -0
- data/rails/actionpack/test/fixtures/public/bar.html +1 -0
- data/rails/actionpack/test/fixtures/public/foo/bar.html +1 -0
- data/rails/actionpack/test/fixtures/public/foo/baz.css +3 -0
- data/rails/actionpack/test/fixtures/public/foo/index.html +1 -0
- data/rails/actionpack/test/fixtures/public/foo//343/201/223/343/202/223/343/201/253/343/201/241/343/201/257.html +1 -0
- data/rails/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/rails/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/rails/actionpack/test/fixtures/public/gzip/foo.zoo +4 -0
- data/rails/actionpack/test/fixtures/public/gzip/foo.zoo.gz +0 -0
- data/rails/actionpack/test/fixtures/public/index.html +1 -0
- data/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/rails/actionpack/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/rails/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+phablet.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+tablet.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/variant_inline_syntax_without_block.html+phone.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb +1 -0
- data/rails/actionpack/test/fixtures/respond_to/variant_with_implicit_rendering.html+mobile.erb +1 -0
- data/rails/actionpack/test/fixtures/ruby_template.ruby +2 -0
- data/rails/actionpack/test/fixtures/session_autoload_test/session_autoload_test/foo.rb +10 -0
- data/rails/actionpack/test/fixtures/shared.html.erb +1 -0
- data/rails/actionpack/test/fixtures/star_star_mime/index.js.erb +1 -0
- data/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
- data/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/rails/actionpack/test/fixtures/test/hello/hello.erb +1 -0
- data/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/rails/actionpack/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/bar/index.html +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/bar.html +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/foo/bar.html +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/foo/baz.css +3 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/foo/index.html +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/foo//343/201/223/343/202/223/343/201/253/343/201/241/343/201/257.html +1 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo +4 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo.gz +0 -0
- data/rails/actionpack/test/fixtures//345/205/254/345/205/261/index.html +1 -0
- data/rails/actionpack/test/journey/gtg/builder_test.rb +79 -0
- data/rails/actionpack/test/journey/gtg/transition_table_test.rb +115 -0
- data/rails/actionpack/test/journey/nfa/simulator_test.rb +98 -0
- data/rails/actionpack/test/journey/nfa/transition_table_test.rb +72 -0
- data/rails/actionpack/test/journey/nodes/symbol_test.rb +17 -0
- data/rails/actionpack/test/journey/path/pattern_test.rb +284 -0
- data/rails/actionpack/test/journey/route/definition/parser_test.rb +110 -0
- data/rails/actionpack/test/journey/route/definition/scanner_test.rb +69 -0
- data/rails/actionpack/test/journey/route_test.rb +106 -0
- data/rails/actionpack/test/journey/router/utils_test.rb +38 -0
- data/rails/actionpack/test/journey/router_test.rb +622 -0
- data/rails/actionpack/test/journey/routes_test.rb +53 -0
- data/rails/actionpack/test/lib/controller/fake_controllers.rb +35 -0
- data/rails/actionpack/test/lib/controller/fake_models.rb +73 -0
- data/rails/actionpack/test/routing/helper_test.rb +45 -0
- data/rails/actionpack/test/tmp/.gitignore +0 -0
- data/rails/actionview/CHANGELOG.md +228 -0
- data/rails/actionview/MIT-LICENSE +21 -0
- data/rails/actionview/README.rdoc +39 -0
- data/rails/actionview/RUNNING_UNIT_TESTS.rdoc +27 -0
- data/rails/actionview/Rakefile +83 -0
- data/rails/actionview/actionview.gemspec +31 -0
- data/rails/actionview/lib/action_view/base.rb +205 -0
- data/rails/actionview/lib/action_view/buffers.rb +50 -0
- data/rails/actionview/lib/action_view/context.rb +36 -0
- data/rails/actionview/lib/action_view/dependency_tracker.rb +141 -0
- data/rails/actionview/lib/action_view/digestor.rb +122 -0
- data/rails/actionview/lib/action_view/flows.rb +76 -0
- data/rails/actionview/lib/action_view/gem_version.rb +15 -0
- data/rails/actionview/lib/action_view/helpers/active_model_helper.rb +49 -0
- data/rails/actionview/lib/action_view/helpers/asset_tag_helper.rb +329 -0
- data/rails/actionview/lib/action_view/helpers/asset_url_helper.rb +366 -0
- data/rails/actionview/lib/action_view/helpers/atom_feed_helper.rb +203 -0
- data/rails/actionview/lib/action_view/helpers/cache_helper.rb +200 -0
- data/rails/actionview/lib/action_view/helpers/capture_helper.rb +207 -0
- data/rails/actionview/lib/action_view/helpers/controller_helper.rb +25 -0
- data/rails/actionview/lib/action_view/helpers/csrf_helper.rb +33 -0
- data/rails/actionview/lib/action_view/helpers/date_helper.rb +1098 -0
- data/rails/actionview/lib/action_view/helpers/debug_helper.rb +35 -0
- data/rails/actionview/lib/action_view/helpers/form_helper.rb +1942 -0
- data/rails/actionview/lib/action_view/helpers/form_options_helper.rb +841 -0
- data/rails/actionview/lib/action_view/helpers/form_tag_helper.rb +877 -0
- data/rails/actionview/lib/action_view/helpers/javascript_helper.rb +81 -0
- data/rails/actionview/lib/action_view/helpers/number_helper.rb +432 -0
- data/rails/actionview/lib/action_view/helpers/output_safety_helper.rb +38 -0
- data/rails/actionview/lib/action_view/helpers/record_tag_helper.rb +108 -0
- data/rails/actionview/lib/action_view/helpers/rendering_helper.rb +98 -0
- data/rails/actionview/lib/action_view/helpers/sanitize_helper.rb +172 -0
- data/rails/actionview/lib/action_view/helpers/tag_helper.rb +188 -0
- data/rails/actionview/lib/action_view/helpers/tags/base.rb +155 -0
- data/rails/actionview/lib/action_view/helpers/tags/check_box.rb +64 -0
- data/rails/actionview/lib/action_view/helpers/tags/checkable.rb +16 -0
- data/rails/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb +57 -0
- data/rails/actionview/lib/action_view/helpers/tags/collection_helpers.rb +85 -0
- data/rails/actionview/lib/action_view/helpers/tags/collection_radio_buttons.rb +36 -0
- data/rails/actionview/lib/action_view/helpers/tags/collection_select.rb +28 -0
- data/rails/actionview/lib/action_view/helpers/tags/color_field.rb +25 -0
- data/rails/actionview/lib/action_view/helpers/tags/date_field.rb +13 -0
- data/rails/actionview/lib/action_view/helpers/tags/date_select.rb +72 -0
- data/rails/actionview/lib/action_view/helpers/tags/datetime_field.rb +30 -0
- data/rails/actionview/lib/action_view/helpers/tags/datetime_local_field.rb +19 -0
- data/rails/actionview/lib/action_view/helpers/tags/datetime_select.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/email_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/file_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/grouped_collection_select.rb +29 -0
- data/rails/actionview/lib/action_view/helpers/tags/hidden_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/label.rb +79 -0
- data/rails/actionview/lib/action_view/helpers/tags/month_field.rb +13 -0
- data/rails/actionview/lib/action_view/helpers/tags/number_field.rb +18 -0
- data/rails/actionview/lib/action_view/helpers/tags/password_field.rb +12 -0
- data/rails/actionview/lib/action_view/helpers/tags/placeholderable.rb +22 -0
- data/rails/actionview/lib/action_view/helpers/tags/radio_button.rb +31 -0
- data/rails/actionview/lib/action_view/helpers/tags/range_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/search_field.rb +22 -0
- data/rails/actionview/lib/action_view/helpers/tags/select.rb +41 -0
- data/rails/actionview/lib/action_view/helpers/tags/tel_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/text_area.rb +22 -0
- data/rails/actionview/lib/action_view/helpers/tags/text_field.rb +33 -0
- data/rails/actionview/lib/action_view/helpers/tags/time_field.rb +13 -0
- data/rails/actionview/lib/action_view/helpers/tags/time_select.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/time_zone_select.rb +20 -0
- data/rails/actionview/lib/action_view/helpers/tags/translator.rb +40 -0
- data/rails/actionview/lib/action_view/helpers/tags/url_field.rb +8 -0
- data/rails/actionview/lib/action_view/helpers/tags/week_field.rb +13 -0
- data/rails/actionview/lib/action_view/helpers/tags.rb +42 -0
- data/rails/actionview/lib/action_view/helpers/text_helper.rb +467 -0
- data/rails/actionview/lib/action_view/helpers/translation_helper.rb +106 -0
- data/rails/actionview/lib/action_view/helpers/url_helper.rb +620 -0
- data/rails/actionview/lib/action_view/helpers.rb +64 -0
- data/rails/actionview/lib/action_view/layouts.rb +426 -0
- data/rails/actionview/lib/action_view/locale/en.yml +56 -0
- data/rails/actionview/lib/action_view/log_subscriber.rb +44 -0
- data/rails/actionview/lib/action_view/lookup_context.rb +255 -0
- data/rails/actionview/lib/action_view/model_naming.rb +12 -0
- data/rails/actionview/lib/action_view/path_set.rb +77 -0
- data/rails/actionview/lib/action_view/railtie.rb +49 -0
- data/rails/actionview/lib/action_view/record_identifier.rb +84 -0
- data/rails/actionview/lib/action_view/renderer/abstract_renderer.rb +49 -0
- data/rails/actionview/lib/action_view/renderer/partial_renderer.rb +548 -0
- data/rails/actionview/lib/action_view/renderer/renderer.rb +50 -0
- data/rails/actionview/lib/action_view/renderer/streaming_template_renderer.rb +103 -0
- data/rails/actionview/lib/action_view/renderer/template_renderer.rb +101 -0
- data/rails/actionview/lib/action_view/rendering.rb +146 -0
- data/rails/actionview/lib/action_view/routing_url_for.rb +134 -0
- data/rails/actionview/lib/action_view/tasks/dependencies.rake +21 -0
- data/rails/actionview/lib/action_view/template/error.rb +141 -0
- data/rails/actionview/lib/action_view/template/handlers/builder.rb +26 -0
- data/rails/actionview/lib/action_view/template/handlers/erb.rb +145 -0
- data/rails/actionview/lib/action_view/template/handlers/raw.rb +11 -0
- data/rails/actionview/lib/action_view/template/handlers.rb +62 -0
- data/rails/actionview/lib/action_view/template/html.rb +34 -0
- data/rails/actionview/lib/action_view/template/resolver.rb +349 -0
- data/rails/actionview/lib/action_view/template/text.rb +34 -0
- data/rails/actionview/lib/action_view/template/types.rb +57 -0
- data/rails/actionview/lib/action_view/template.rb +336 -0
- data/rails/actionview/lib/action_view/test_case.rb +278 -0
- data/rails/actionview/lib/action_view/testing/resolvers.rb +54 -0
- data/rails/actionview/lib/action_view/version.rb +8 -0
- data/rails/actionview/lib/action_view/view_paths.rb +111 -0
- data/rails/actionview/lib/action_view.rb +96 -0
- data/rails/actionview/test/abstract_unit.rb +345 -0
- data/rails/actionview/test/actionpack/abstract/abstract_controller_test.rb +310 -0
- data/rails/actionview/test/actionpack/abstract/helper_test.rb +127 -0
- data/rails/actionview/test/actionpack/abstract/layouts_test.rb +384 -0
- data/rails/actionview/test/actionpack/abstract/render_test.rb +103 -0
- data/rails/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/formatted.html.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/index.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/abstract_controller/testing/me4/index.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/abstract_controller/testing/me5/index.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/action_with_ivars.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/helper_test.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/index.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/layouts/abstract_controller/testing/me4.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/layouts/application.erb +1 -0
- data/rails/actionview/test/actionpack/abstract/views/naked_render.erb +1 -0
- data/rails/actionview/test/actionpack/controller/capture_test.rb +81 -0
- data/rails/actionview/test/actionpack/controller/layout_test.rb +269 -0
- data/rails/actionview/test/actionpack/controller/render_test.rb +1344 -0
- data/rails/actionview/test/actionpack/controller/view_paths_test.rb +174 -0
- data/rails/actionview/test/active_record_unit.rb +91 -0
- data/rails/actionview/test/activerecord/controller_runtime_test.rb +93 -0
- data/rails/actionview/test/activerecord/debug_helper_test.rb +8 -0
- data/rails/actionview/test/activerecord/form_helper_activerecord_test.rb +92 -0
- data/rails/actionview/test/activerecord/polymorphic_routes_test.rb +733 -0
- data/rails/actionview/test/activerecord/render_partial_with_record_identification_test.rb +210 -0
- data/rails/actionview/test/fixtures/_top_level_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/_top_level_partial_only.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/bad_customers/_bad_customer.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/customers/_customer.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/fun/games/_form.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/fun/games/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/good_customers/_good_customer.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/hello.html +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/alt/layouts/alt.erb +0 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/controller_name_space/nested.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/item.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/layout_test.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/symlinked/symlinked_layout.erb +5 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/views/goodbye.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layout_tests/views/hello.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/_column.html.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/_customers.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/_partial_and_yield.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/_yield_only.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/_yield_with_params.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb +3 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/builder.builder +3 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/partial_with_layout.erb +3 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/standard.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/streaming.erb +4 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/talk_from_action.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/with_html_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/xhr.html.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/yield.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/yield_with_render_inline_inside.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/layouts/yield_with_render_partial_inside.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/quiz/questions/_question.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/shared.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_changing_priority.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_changing_priority.json.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_counter.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_counter.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_counter_with_as.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_greeting.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_iteration.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_iteration_with_as.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_customer_with_var.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_directory/_partial_with_locales.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_first_json_partial.json.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_form.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_hash_greeting.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_hash_object.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/_hello.builder +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_json_change_priority.json.erb +0 -0
- data/rails/actionview/test/fixtures/actionpack/test/_labelling_form.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_layout_for_partial.html.erb +3 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial.js.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_for_use_in_layout.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_html_erb.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_name_local_variable.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_only.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_only_html.html +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/_partial_with_partial.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/_person.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/_raise_indentation.html.erb +13 -0
- data/rails/actionview/test/fixtures/actionpack/test/_second_json_partial.json.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/action_talk_to_layout.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/calling_partial_with_layout.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/capturing.erb +4 -0
- data/rails/actionview/test/fixtures/actionpack/test/change_priority.html.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/content_for.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/content_for_concatenated.erb +3 -0
- data/rails/actionview/test/fixtures/actionpack/test/content_for_with_parameter.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/formatted_html_erb.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/formatted_xml_erb.builder +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/formatted_xml_erb.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/formatted_xml_erb.xml.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/greeting.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/greeting.xml.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello/hello.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello,world.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello.builder +4 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_world_container.builder +3 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_world_from_rxml.builder +3 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_world_with_layout_false.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_world_with_partial.html.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/hello_xml_world.builder +11 -0
- data/rails/actionview/test/fixtures/actionpack/test/html_template.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/hyphen-ated.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/implicit_content_type.atom.builder +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/list.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/non_erb_block_content_for.builder +4 -0
- data/rails/actionview/test/fixtures/actionpack/test/potential_conflicts.erb +4 -0
- data/rails/actionview/test/fixtures/actionpack/test/proper_block_detection.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_file_from_template.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_file_with_ivar.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_file_with_locals.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_file_with_locals_and_default.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_partial_inside_directory.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_to_string_test.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/render_two_partials.html.erb +2 -0
- data/rails/actionview/test/fixtures/actionpack/test/using_layout_around_block.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/with_html_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/with_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/with_partial.text.erb +1 -0
- data/rails/actionview/test/fixtures/actionpack/test/with_xml_template.html.erb +1 -0
- data/rails/actionview/test/fixtures/blog_public/.gitignore +1 -0
- data/rails/actionview/test/fixtures/blog_public/blog.html +1 -0
- data/rails/actionview/test/fixtures/blog_public/index.html +1 -0
- data/rails/actionview/test/fixtures/blog_public/subdir/index.html +1 -0
- data/rails/actionview/test/fixtures/comments/empty.de.html.erb +1 -0
- data/rails/actionview/test/fixtures/comments/empty.html.builder +1 -0
- data/rails/actionview/test/fixtures/comments/empty.html.erb +1 -0
- data/rails/actionview/test/fixtures/comments/empty.xml.erb +1 -0
- data/rails/actionview/test/fixtures/companies.yml +24 -0
- data/rails/actionview/test/fixtures/company.rb +9 -0
- data/rails/actionview/test/fixtures/custom_pattern/another.html.erb +1 -0
- data/rails/actionview/test/fixtures/custom_pattern/html/another.erb +1 -0
- data/rails/actionview/test/fixtures/custom_pattern/html/path.erb +1 -0
- data/rails/actionview/test/fixtures/customers/_customer.html.erb +1 -0
- data/rails/actionview/test/fixtures/customers/_customer.xml.erb +1 -0
- data/rails/actionview/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/rails/actionview/test/fixtures/developer.rb +6 -0
- data/rails/actionview/test/fixtures/developers/_developer.erb +1 -0
- data/rails/actionview/test/fixtures/developers.yml +21 -0
- data/rails/actionview/test/fixtures/developers_projects.yml +13 -0
- data/rails/actionview/test/fixtures/digestor/comments/_comment.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/comments/_comments.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/events/_event.html.erb +0 -0
- data/rails/actionview/test/fixtures/digestor/level/_recursion.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/level/below/_header.html.erb +0 -0
- data/rails/actionview/test/fixtures/digestor/level/below/index.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/level/recursion.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/messages/_form.html.erb +0 -0
- data/rails/actionview/test/fixtures/digestor/messages/_header.html.erb +0 -0
- data/rails/actionview/test/fixtures/digestor/messages/_message.html.erb +1 -0
- data/rails/actionview/test/fixtures/digestor/messages/actions/_move.html.erb +0 -0
- data/rails/actionview/test/fixtures/digestor/messages/edit.html.erb +5 -0
- data/rails/actionview/test/fixtures/digestor/messages/index.html.erb +2 -0
- data/rails/actionview/test/fixtures/digestor/messages/new.html+iphone.erb +15 -0
- data/rails/actionview/test/fixtures/digestor/messages/show.html.erb +14 -0
- data/rails/actionview/test/fixtures/fun/games/_game.erb +1 -0
- data/rails/actionview/test/fixtures/fun/games/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/rails/actionview/test/fixtures/functional_caching/fragment_cached_without_digest.html.erb +3 -0
- data/rails/actionview/test/fixtures/games/_game.erb +1 -0
- data/rails/actionview/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/rails/actionview/test/fixtures/happy_path/render_action/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/helpers/abc_helper.rb +3 -0
- data/rails/actionview/test/fixtures/helpers/helpery_test_helper.rb +5 -0
- data/rails/actionview/test/fixtures/helpers_missing/invalid_require_helper.rb +5 -0
- data/rails/actionview/test/fixtures/layout_tests/alt/hello.erb +1 -0
- data/rails/actionview/test/fixtures/layouts/_column.html.erb +2 -0
- data/rails/actionview/test/fixtures/layouts/_customers.erb +1 -0
- data/rails/actionview/test/fixtures/layouts/_partial_and_yield.erb +2 -0
- data/rails/actionview/test/fixtures/layouts/_yield_only.erb +1 -0
- data/rails/actionview/test/fixtures/layouts/_yield_with_params.erb +1 -0
- data/rails/actionview/test/fixtures/layouts/streaming.erb +4 -0
- data/rails/actionview/test/fixtures/layouts/yield.erb +2 -0
- data/rails/actionview/test/fixtures/layouts/yield_with_render_inline_inside.erb +2 -0
- data/rails/actionview/test/fixtures/layouts/yield_with_render_partial_inside.erb +2 -0
- data/rails/actionview/test/fixtures/mascot.rb +3 -0
- data/rails/actionview/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/rails/actionview/test/fixtures/mascots.yml +4 -0
- data/rails/actionview/test/fixtures/multipart/bracketed_utf8_param +5 -0
- data/rails/actionview/test/fixtures/multipart/single_utf8_param +5 -0
- data/rails/actionview/test/fixtures/override/test/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/rails/actionview/test/fixtures/plain_text.raw +1 -0
- data/rails/actionview/test/fixtures/plain_text_with_characters.raw +1 -0
- data/rails/actionview/test/fixtures/project.rb +3 -0
- data/rails/actionview/test/fixtures/projects/_project.erb +1 -0
- data/rails/actionview/test/fixtures/projects.yml +7 -0
- data/rails/actionview/test/fixtures/public/.gitignore +1 -0
- data/rails/actionview/test/fixtures/public/elsewhere/cools.js +1 -0
- data/rails/actionview/test/fixtures/public/elsewhere/file.css +1 -0
- data/rails/actionview/test/fixtures/public/foo/baz.css +3 -0
- data/rails/actionview/test/fixtures/public/javascripts/application.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/bank.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/common.javascript +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/controls.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/effects.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/prototype.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/robber.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/rails/actionview/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/rails/actionview/test/fixtures/public/stylesheets/bank.css +1 -0
- data/rails/actionview/test/fixtures/public/stylesheets/random.styles +1 -0
- data/rails/actionview/test/fixtures/public/stylesheets/robber.css +1 -0
- data/rails/actionview/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
- data/rails/actionview/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/rails/actionview/test/fixtures/replies/_reply.erb +1 -0
- data/rails/actionview/test/fixtures/replies.yml +15 -0
- data/rails/actionview/test/fixtures/reply.rb +7 -0
- data/rails/actionview/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/rails/actionview/test/fixtures/ruby_template.ruby +2 -0
- data/rails/actionview/test/fixtures/scope/test/modgreet.erb +1 -0
- data/rails/actionview/test/fixtures/shared.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_200.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_b_layout_for_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_b_layout_for_partial_with_object.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_b_layout_for_partial_with_object_counter.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_changing_priority.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_changing_priority.json.erb +1 -0
- data/rails/actionview/test/fixtures/test/_content_tag_nested_in_content_tag.erb +3 -0
- data/rails/actionview/test/fixtures/test/_counter.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_customer.erb +1 -0
- data/rails/actionview/test/fixtures/test/_customer_greeting.erb +1 -0
- data/rails/actionview/test/fixtures/test/_customer_with_var.erb +1 -0
- data/rails/actionview/test/fixtures/test/_directory/_partial_with_locales.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_first_json_partial.json.erb +1 -0
- data/rails/actionview/test/fixtures/test/_from_helper.erb +1 -0
- data/rails/actionview/test/fixtures/test/_json_change_priority.json.erb +0 -0
- data/rails/actionview/test/fixtures/test/_label_with_block.erb +4 -0
- data/rails/actionview/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/rails/actionview/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/rails/actionview/test/fixtures/test/_layout_with_partial_and_yield.html.erb +4 -0
- data/rails/actionview/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_object_inspector.erb +1 -0
- data/rails/actionview/test/fixtures/test/_one.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial.js.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial_name_local_variable.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial_only.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial_with_layout.erb +2 -0
- data/rails/actionview/test/fixtures/test/_partial_with_layout_block_content.erb +4 -0
- data/rails/actionview/test/fixtures/test/_partial_with_layout_block_partial.erb +4 -0
- data/rails/actionview/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_partial_with_partial.erb +2 -0
- data/rails/actionview/test/fixtures/test/_raise.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_raise_indentation.html.erb +13 -0
- data/rails/actionview/test/fixtures/test/_second_json_partial.json.erb +1 -0
- data/rails/actionview/test/fixtures/test/_two.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_utf8_partial.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/_utf8_partial_magic.html.erb +2 -0
- data/rails/actionview/test/fixtures/test/basic.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/change_priority.html.erb +2 -0
- data/rails/actionview/test/fixtures/test/dont_pick_me +1 -0
- data/rails/actionview/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/rails/actionview/test/fixtures/test/greeting.xml.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello/hello.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello.builder +4 -0
- data/rails/actionview/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello_world.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello_world.erb~ +1 -0
- data/rails/actionview/test/fixtures/test/hello_world.html+phone.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello_world.text+phone.erb +1 -0
- data/rails/actionview/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/rails/actionview/test/fixtures/test/html_template.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/layout_render_file.erb +2 -0
- data/rails/actionview/test/fixtures/test/layout_render_object.erb +1 -0
- data/rails/actionview/test/fixtures/test/list.erb +1 -0
- data/rails/actionview/test/fixtures/test/malformed/malformed.en.html.erb~ +1 -0
- data/rails/actionview/test/fixtures/test/malformed/malformed.erb~ +1 -0
- data/rails/actionview/test/fixtures/test/malformed/malformed.html.erb~ +1 -0
- data/rails/actionview/test/fixtures/test/malformed/malformed~ +1 -0
- data/rails/actionview/test/fixtures/test/nested_layout.erb +3 -0
- data/rails/actionview/test/fixtures/test/nested_streaming.erb +3 -0
- data/rails/actionview/test/fixtures/test/nil_return.erb +1 -0
- data/rails/actionview/test/fixtures/test/one.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/rails/actionview/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/rails/actionview/test/fixtures/test/render_file_with_locals_and_default.erb +1 -0
- data/rails/actionview/test/fixtures/test/render_partial_inside_directory.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/render_two_partials.html.erb +2 -0
- data/rails/actionview/test/fixtures/test/streaming.erb +3 -0
- data/rails/actionview/test/fixtures/test/streaming_buster.erb +3 -0
- data/rails/actionview/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/rails/actionview/test/fixtures/test/template.erb +1 -0
- data/rails/actionview/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/rails/actionview/test/fixtures/test/utf8.html.erb +4 -0
- data/rails/actionview/test/fixtures/test/utf8_magic.html.erb +5 -0
- data/rails/actionview/test/fixtures/test/utf8_magic_with_bare_partial.html.erb +5 -0
- data/rails/actionview/test/fixtures/topic.rb +3 -0
- data/rails/actionview/test/fixtures/topics/_topic.html.erb +1 -0
- data/rails/actionview/test/fixtures/topics.yml +22 -0
- data/rails/actionview/test/fixtures/translations/templates/array.erb +1 -0
- data/rails/actionview/test/fixtures/translations/templates/default.erb +1 -0
- data/rails/actionview/test/fixtures/translations/templates/found.erb +1 -0
- data/rails/actionview/test/fixtures/translations/templates/missing.erb +1 -0
- data/rails/actionview/test/fixtures/with_format.json.erb +1 -0
- data/rails/actionview/test/lib/controller/fake_models.rb +201 -0
- data/rails/actionview/test/template/active_model_helper_test.rb +99 -0
- data/rails/actionview/test/template/asset_tag_helper_test.rb +796 -0
- data/rails/actionview/test/template/atom_feed_helper_test.rb +349 -0
- data/rails/actionview/test/template/capture_helper_test.rb +219 -0
- data/rails/actionview/test/template/compiled_templates_test.rb +59 -0
- data/rails/actionview/test/template/date_helper_i18n_test.rb +148 -0
- data/rails/actionview/test/template/date_helper_test.rb +3228 -0
- data/rails/actionview/test/template/dependency_tracker_test.rb +196 -0
- data/rails/actionview/test/template/digestor_test.rb +312 -0
- data/rails/actionview/test/template/erb/form_for_test.rb +11 -0
- data/rails/actionview/test/template/erb/helper.rb +24 -0
- data/rails/actionview/test/template/erb/tag_helper_test.rb +30 -0
- data/rails/actionview/test/template/erb_util_test.rb +107 -0
- data/rails/actionview/test/template/form_collections_helper_test.rb +459 -0
- data/rails/actionview/test/template/form_helper_test.rb +3461 -0
- data/rails/actionview/test/template/form_options_helper_i18n_test.rb +27 -0
- data/rails/actionview/test/template/form_options_helper_test.rb +1358 -0
- data/rails/actionview/test/template/form_tag_helper_test.rb +656 -0
- data/rails/actionview/test/template/html_test.rb +17 -0
- data/rails/actionview/test/template/javascript_helper_test.rb +69 -0
- data/rails/actionview/test/template/log_subscriber_test.rb +91 -0
- data/rails/actionview/test/template/lookup_context_test.rb +282 -0
- data/rails/actionview/test/template/number_helper_test.rb +197 -0
- data/rails/actionview/test/template/output_safety_helper_test.rb +35 -0
- data/rails/actionview/test/template/partial_iteration_test.rb +33 -0
- data/rails/actionview/test/template/record_identifier_test.rb +49 -0
- data/rails/actionview/test/template/record_tag_helper_test.rb +117 -0
- data/rails/actionview/test/template/render_test.rb +600 -0
- data/rails/actionview/test/template/resolver_patterns_test.rb +31 -0
- data/rails/actionview/test/template/sanitize_helper_test.rb +35 -0
- data/rails/actionview/test/template/streaming_render_test.rb +108 -0
- data/rails/actionview/test/template/tag_helper_test.rb +166 -0
- data/rails/actionview/test/template/template_error_test.rb +20 -0
- data/rails/actionview/test/template/template_test.rb +200 -0
- data/rails/actionview/test/template/test_case_test.rb +378 -0
- data/rails/actionview/test/template/test_test.rb +92 -0
- data/rails/actionview/test/template/testing/fixture_resolver_test.rb +18 -0
- data/rails/actionview/test/template/testing/null_resolver_test.rb +12 -0
- data/rails/actionview/test/template/text_helper_test.rb +510 -0
- data/rails/actionview/test/template/text_test.rb +17 -0
- data/rails/actionview/test/template/translation_helper_test.rb +193 -0
- data/rails/actionview/test/template/url_helper_test.rb +798 -0
- data/rails/actionview/test/tmp/.gitkeep +0 -0
- data/rails/activejob/.gitignore +1 -0
- data/rails/activejob/CHANGELOG.md +7 -0
- data/rails/activejob/MIT-LICENSE +21 -0
- data/rails/activejob/README.md +131 -0
- data/rails/activejob/Rakefile +90 -0
- data/rails/activejob/activejob.gemspec +23 -0
- data/rails/activejob/lib/active_job/arguments.rb +144 -0
- data/rails/activejob/lib/active_job/base.rb +66 -0
- data/rails/activejob/lib/active_job/callbacks.rb +146 -0
- data/rails/activejob/lib/active_job/configured_job.rb +16 -0
- data/rails/activejob/lib/active_job/core.rb +88 -0
- data/rails/activejob/lib/active_job/enqueuing.rb +77 -0
- data/rails/activejob/lib/active_job/execution.rb +42 -0
- data/rails/activejob/lib/active_job/gem_version.rb +15 -0
- data/rails/activejob/lib/active_job/logging.rb +107 -0
- data/rails/activejob/lib/active_job/queue_adapter.rb +35 -0
- data/rails/activejob/lib/active_job/queue_adapters/backburner_adapter.rb +36 -0
- data/rails/activejob/lib/active_job/queue_adapters/delayed_job_adapter.rb +39 -0
- data/rails/activejob/lib/active_job/queue_adapters/inline_adapter.rb +23 -0
- data/rails/activejob/lib/active_job/queue_adapters/qu_adapter.rb +42 -0
- data/rails/activejob/lib/active_job/queue_adapters/que_adapter.rb +35 -0
- data/rails/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb +54 -0
- data/rails/activejob/lib/active_job/queue_adapters/resque_adapter.rb +52 -0
- data/rails/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb +45 -0
- data/rails/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb +46 -0
- data/rails/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb +40 -0
- data/rails/activejob/lib/active_job/queue_adapters/test_adapter.rb +51 -0
- data/rails/activejob/lib/active_job/queue_adapters.rb +52 -0
- data/rails/activejob/lib/active_job/queue_name.rb +51 -0
- data/rails/activejob/lib/active_job/railtie.rb +23 -0
- data/rails/activejob/lib/active_job/test_case.rb +7 -0
- data/rails/activejob/lib/active_job/test_helper.rb +230 -0
- data/rails/activejob/lib/active_job/version.rb +8 -0
- data/rails/activejob/lib/active_job.rb +37 -0
- data/rails/activejob/lib/rails/generators/job/job_generator.rb +24 -0
- data/rails/activejob/lib/rails/generators/job/templates/job.rb +9 -0
- data/rails/activejob/test/adapters/backburner.rb +3 -0
- data/rails/activejob/test/adapters/delayed_job.rb +7 -0
- data/rails/activejob/test/adapters/inline.rb +1 -0
- data/rails/activejob/test/adapters/qu.rb +3 -0
- data/rails/activejob/test/adapters/que.rb +4 -0
- data/rails/activejob/test/adapters/queue_classic.rb +2 -0
- data/rails/activejob/test/adapters/resque.rb +2 -0
- data/rails/activejob/test/adapters/sidekiq.rb +2 -0
- data/rails/activejob/test/adapters/sneakers.rb +2 -0
- data/rails/activejob/test/adapters/sucker_punch.rb +2 -0
- data/rails/activejob/test/adapters/test.rb +3 -0
- data/rails/activejob/test/cases/adapter_test.rb +7 -0
- data/rails/activejob/test/cases/argument_serialization_test.rb +105 -0
- data/rails/activejob/test/cases/callbacks_test.rb +23 -0
- data/rails/activejob/test/cases/job_serialization_test.rb +15 -0
- data/rails/activejob/test/cases/logging_test.rb +114 -0
- data/rails/activejob/test/cases/queue_naming_test.rb +102 -0
- data/rails/activejob/test/cases/queuing_test.rb +44 -0
- data/rails/activejob/test/cases/rescue_test.rb +34 -0
- data/rails/activejob/test/cases/test_case_test.rb +14 -0
- data/rails/activejob/test/cases/test_helper_test.rb +265 -0
- data/rails/activejob/test/helper.rb +30 -0
- data/rails/activejob/test/integration/queuing_test.rb +47 -0
- data/rails/activejob/test/jobs/callback_job.rb +29 -0
- data/rails/activejob/test/jobs/gid_job.rb +8 -0
- data/rails/activejob/test/jobs/hello_job.rb +7 -0
- data/rails/activejob/test/jobs/kwargs_job.rb +7 -0
- data/rails/activejob/test/jobs/logging_job.rb +10 -0
- data/rails/activejob/test/jobs/nested_job.rb +10 -0
- data/rails/activejob/test/jobs/rescue_job.rb +27 -0
- data/rails/activejob/test/models/person.rb +20 -0
- data/rails/activejob/test/support/backburner/inline.rb +8 -0
- data/rails/activejob/test/support/delayed_job/delayed/backend/test.rb +113 -0
- data/rails/activejob/test/support/delayed_job/delayed/serialization/test.rb +0 -0
- data/rails/activejob/test/support/integration/adapters/backburner.rb +38 -0
- data/rails/activejob/test/support/integration/adapters/delayed_job.rb +20 -0
- data/rails/activejob/test/support/integration/adapters/inline.rb +15 -0
- data/rails/activejob/test/support/integration/adapters/qu.rb +38 -0
- data/rails/activejob/test/support/integration/adapters/que.rb +37 -0
- data/rails/activejob/test/support/integration/adapters/queue_classic.rb +39 -0
- data/rails/activejob/test/support/integration/adapters/resque.rb +49 -0
- data/rails/activejob/test/support/integration/adapters/sidekiq.rb +57 -0
- data/rails/activejob/test/support/integration/adapters/sneakers.rb +90 -0
- data/rails/activejob/test/support/integration/adapters/sucker_punch.rb +6 -0
- data/rails/activejob/test/support/integration/dummy_app_template.rb +27 -0
- data/rails/activejob/test/support/integration/helper.rb +30 -0
- data/rails/activejob/test/support/integration/jobs_manager.rb +27 -0
- data/rails/activejob/test/support/integration/test_case_helpers.rb +48 -0
- data/rails/activejob/test/support/job_buffer.rb +19 -0
- data/rails/activejob/test/support/que/inline.rb +9 -0
- data/rails/activejob/test/support/queue_classic/inline.rb +23 -0
- data/rails/activejob/test/support/sneakers/inline.rb +12 -0
- data/rails/activemodel/CHANGELOG.md +61 -0
- data/rails/activemodel/MIT-LICENSE +21 -0
- data/rails/activemodel/README.rdoc +272 -0
- data/rails/activemodel/Rakefile +36 -0
- data/rails/activemodel/activemodel.gemspec +24 -0
- data/rails/activemodel/lib/active_model/attribute_methods.rb +478 -0
- data/rails/activemodel/lib/active_model/callbacks.rb +149 -0
- data/rails/activemodel/lib/active_model/conversion.rb +100 -0
- data/rails/activemodel/lib/active_model/dirty.rb +267 -0
- data/rails/activemodel/lib/active_model/errors.rb +475 -0
- data/rails/activemodel/lib/active_model/forbidden_attributes_protection.rb +28 -0
- data/rails/activemodel/lib/active_model/gem_version.rb +15 -0
- data/rails/activemodel/lib/active_model/lint.rb +113 -0
- data/rails/activemodel/lib/active_model/locale/en.yml +35 -0
- data/rails/activemodel/lib/active_model/model.rb +99 -0
- data/rails/activemodel/lib/active_model/naming.rb +316 -0
- data/rails/activemodel/lib/active_model/railtie.rb +12 -0
- data/rails/activemodel/lib/active_model/secure_password.rb +134 -0
- data/rails/activemodel/lib/active_model/serialization.rb +163 -0
- data/rails/activemodel/lib/active_model/serializers/json.rb +145 -0
- data/rails/activemodel/lib/active_model/serializers/xml.rb +238 -0
- data/rails/activemodel/lib/active_model/test_case.rb +4 -0
- data/rails/activemodel/lib/active_model/translation.rb +69 -0
- data/rails/activemodel/lib/active_model/validations/absence.rb +31 -0
- data/rails/activemodel/lib/active_model/validations/acceptance.rb +55 -0
- data/rails/activemodel/lib/active_model/validations/callbacks.rb +117 -0
- data/rails/activemodel/lib/active_model/validations/clusivity.rb +51 -0
- data/rails/activemodel/lib/active_model/validations/confirmation.rb +67 -0
- data/rails/activemodel/lib/active_model/validations/exclusion.rb +46 -0
- data/rails/activemodel/lib/active_model/validations/format.rb +113 -0
- data/rails/activemodel/lib/active_model/validations/inclusion.rb +46 -0
- data/rails/activemodel/lib/active_model/validations/length.rb +126 -0
- data/rails/activemodel/lib/active_model/validations/numericality.rb +159 -0
- data/rails/activemodel/lib/active_model/validations/presence.rb +39 -0
- data/rails/activemodel/lib/active_model/validations/validates.rb +173 -0
- data/rails/activemodel/lib/active_model/validations/with.rb +153 -0
- data/rails/activemodel/lib/active_model/validations.rb +401 -0
- data/rails/activemodel/lib/active_model/validator.rb +182 -0
- data/rails/activemodel/lib/active_model/version.rb +8 -0
- data/rails/activemodel/lib/active_model.rb +71 -0
- data/rails/activemodel/test/cases/attribute_methods_test.rb +281 -0
- data/rails/activemodel/test/cases/callbacks_test.rb +114 -0
- data/rails/activemodel/test/cases/conversion_test.rb +50 -0
- data/rails/activemodel/test/cases/dirty_test.rb +228 -0
- data/rails/activemodel/test/cases/errors_test.rb +326 -0
- data/rails/activemodel/test/cases/forbidden_attributes_protection_test.rb +36 -0
- data/rails/activemodel/test/cases/helper.rb +20 -0
- data/rails/activemodel/test/cases/lint_test.rb +20 -0
- data/rails/activemodel/test/cases/model_test.rb +75 -0
- data/rails/activemodel/test/cases/naming_test.rb +280 -0
- data/rails/activemodel/test/cases/railtie_test.rb +32 -0
- data/rails/activemodel/test/cases/secure_password_test.rb +218 -0
- data/rails/activemodel/test/cases/serialization_test.rb +168 -0
- data/rails/activemodel/test/cases/serializers/json_serialization_test.rb +198 -0
- data/rails/activemodel/test/cases/serializers/xml_serialization_test.rb +250 -0
- data/rails/activemodel/test/cases/translation_test.rb +108 -0
- data/rails/activemodel/test/cases/validations/absence_validation_test.rb +68 -0
- data/rails/activemodel/test/cases/validations/acceptance_validation_test.rb +68 -0
- data/rails/activemodel/test/cases/validations/callbacks_test.rb +98 -0
- data/rails/activemodel/test/cases/validations/conditional_validation_test.rb +139 -0
- data/rails/activemodel/test/cases/validations/confirmation_validation_test.rb +108 -0
- data/rails/activemodel/test/cases/validations/exclusion_validation_test.rb +92 -0
- data/rails/activemodel/test/cases/validations/format_validation_test.rb +149 -0
- data/rails/activemodel/test/cases/validations/i18n_generate_message_validation_test.rb +150 -0
- data/rails/activemodel/test/cases/validations/i18n_validation_test.rb +373 -0
- data/rails/activemodel/test/cases/validations/inclusion_validation_test.rb +147 -0
- data/rails/activemodel/test/cases/validations/length_validation_test.rb +424 -0
- data/rails/activemodel/test/cases/validations/numericality_validation_test.rb +211 -0
- data/rails/activemodel/test/cases/validations/presence_validation_test.rb +107 -0
- data/rails/activemodel/test/cases/validations/validates_test.rb +158 -0
- data/rails/activemodel/test/cases/validations/validations_context_test.rb +50 -0
- data/rails/activemodel/test/cases/validations/with_validation_test.rb +172 -0
- data/rails/activemodel/test/cases/validations_test.rb +429 -0
- data/rails/activemodel/test/config.rb +3 -0
- data/rails/activemodel/test/models/account.rb +5 -0
- data/rails/activemodel/test/models/blog_post.rb +9 -0
- data/rails/activemodel/test/models/contact.rb +41 -0
- data/rails/activemodel/test/models/custom_reader.rb +15 -0
- data/rails/activemodel/test/models/helicopter.rb +7 -0
- data/rails/activemodel/test/models/person.rb +17 -0
- data/rails/activemodel/test/models/person_with_validator.rb +24 -0
- data/rails/activemodel/test/models/project.rb +3 -0
- data/rails/activemodel/test/models/reply.rb +32 -0
- data/rails/activemodel/test/models/sheep.rb +3 -0
- data/rails/activemodel/test/models/topic.rb +40 -0
- data/rails/activemodel/test/models/track_back.rb +11 -0
- data/rails/activemodel/test/models/user.rb +10 -0
- data/rails/activemodel/test/models/visitor.rb +10 -0
- data/rails/activemodel/test/validators/email_validator.rb +6 -0
- data/rails/activemodel/test/validators/namespace/email_validator.rb +6 -0
- data/rails/activerecord/CHANGELOG.md +1568 -0
- data/rails/activerecord/MIT-LICENSE +20 -0
- data/rails/activerecord/README.rdoc +218 -0
- data/rails/activerecord/RUNNING_UNIT_TESTS.rdoc +44 -0
- data/rails/activerecord/Rakefile +168 -0
- data/rails/activerecord/activerecord.gemspec +28 -0
- data/rails/activerecord/examples/.gitignore +1 -0
- data/rails/activerecord/examples/performance.rb +184 -0
- data/rails/activerecord/examples/simple.rb +14 -0
- data/rails/activerecord/lib/active_record/aggregations.rb +266 -0
- data/rails/activerecord/lib/active_record/association_relation.rb +22 -0
- data/rails/activerecord/lib/active_record/associations/alias_tracker.rb +87 -0
- data/rails/activerecord/lib/active_record/associations/association.rb +253 -0
- data/rails/activerecord/lib/active_record/associations/association_scope.rb +194 -0
- data/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +115 -0
- data/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +40 -0
- data/rails/activerecord/lib/active_record/associations/builder/association.rb +149 -0
- data/rails/activerecord/lib/active_record/associations/builder/belongs_to.rb +116 -0
- data/rails/activerecord/lib/active_record/associations/builder/collection_association.rb +95 -0
- data/rails/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb +124 -0
- data/rails/activerecord/lib/active_record/associations/builder/has_many.rb +15 -0
- data/rails/activerecord/lib/active_record/associations/builder/has_one.rb +23 -0
- data/rails/activerecord/lib/active_record/associations/builder/singular_association.rb +38 -0
- data/rails/activerecord/lib/active_record/associations/collection_association.rb +639 -0
- data/rails/activerecord/lib/active_record/associations/collection_proxy.rb +1028 -0
- data/rails/activerecord/lib/active_record/associations/foreign_association.rb +11 -0
- data/rails/activerecord/lib/active_record/associations/has_many_association.rb +192 -0
- data/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +238 -0
- data/rails/activerecord/lib/active_record/associations/has_one_association.rb +106 -0
- data/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +36 -0
- data/rails/activerecord/lib/active_record/associations/join_dependency/join_association.rb +122 -0
- data/rails/activerecord/lib/active_record/associations/join_dependency/join_base.rb +22 -0
- data/rails/activerecord/lib/active_record/associations/join_dependency/join_part.rb +71 -0
- data/rails/activerecord/lib/active_record/associations/join_dependency.rb +282 -0
- data/rails/activerecord/lib/active_record/associations/preloader/association.rb +162 -0
- data/rails/activerecord/lib/active_record/associations/preloader/belongs_to.rb +17 -0
- data/rails/activerecord/lib/active_record/associations/preloader/collection_association.rb +24 -0
- data/rails/activerecord/lib/active_record/associations/preloader/has_many.rb +17 -0
- data/rails/activerecord/lib/active_record/associations/preloader/has_many_through.rb +19 -0
- data/rails/activerecord/lib/active_record/associations/preloader/has_one.rb +23 -0
- data/rails/activerecord/lib/active_record/associations/preloader/has_one_through.rb +9 -0
- data/rails/activerecord/lib/active_record/associations/preloader/singular_association.rb +21 -0
- data/rails/activerecord/lib/active_record/associations/preloader/through_association.rb +96 -0
- data/rails/activerecord/lib/active_record/associations/preloader.rb +203 -0
- data/rails/activerecord/lib/active_record/associations/singular_association.rb +86 -0
- data/rails/activerecord/lib/active_record/associations/through_association.rb +107 -0
- data/rails/activerecord/lib/active_record/associations.rb +1725 -0
- data/rails/activerecord/lib/active_record/attribute.rb +163 -0
- data/rails/activerecord/lib/active_record/attribute_assignment.rb +212 -0
- data/rails/activerecord/lib/active_record/attribute_decorators.rb +66 -0
- data/rails/activerecord/lib/active_record/attribute_methods/before_type_cast.rb +76 -0
- data/rails/activerecord/lib/active_record/attribute_methods/dirty.rb +185 -0
- data/rails/activerecord/lib/active_record/attribute_methods/primary_key.rb +128 -0
- data/rails/activerecord/lib/active_record/attribute_methods/query.rb +40 -0
- data/rails/activerecord/lib/active_record/attribute_methods/read.rb +103 -0
- data/rails/activerecord/lib/active_record/attribute_methods/serialization.rb +70 -0
- data/rails/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb +69 -0
- data/rails/activerecord/lib/active_record/attribute_methods/write.rb +83 -0
- data/rails/activerecord/lib/active_record/attribute_methods.rb +439 -0
- data/rails/activerecord/lib/active_record/attribute_set/builder.rb +96 -0
- data/rails/activerecord/lib/active_record/attribute_set.rb +77 -0
- data/rails/activerecord/lib/active_record/attributes.rb +146 -0
- data/rails/activerecord/lib/active_record/autosave_association.rb +454 -0
- data/rails/activerecord/lib/active_record/base.rb +317 -0
- data/rails/activerecord/lib/active_record/callbacks.rb +313 -0
- data/rails/activerecord/lib/active_record/coders/json.rb +13 -0
- data/rails/activerecord/lib/active_record/coders/yaml_column.rb +38 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +661 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb +67 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +384 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +95 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +133 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/savepoints.rb +21 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_creation.rb +125 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +592 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb +50 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +1023 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract/transaction.rb +219 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +494 -0
- data/rails/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +905 -0
- data/rails/activerecord/lib/active_record/connection_adapters/column.rb +82 -0
- data/rails/activerecord/lib/active_record/connection_adapters/connection_specification.rb +275 -0
- data/rails/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb +282 -0
- data/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +491 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/array_parser.rb +93 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/column.rb +20 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/database_statements.rb +232 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/array.rb +99 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb +52 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +13 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +15 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +46 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/date.rb +11 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +36 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +13 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/enum.rb +17 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/float.rb +21 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +59 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/inet.rb +13 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/infinity.rb +13 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/integer.rb +11 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/json.rb +35 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +23 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb +43 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb +43 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/range.rb +79 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +19 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/time.rb +11 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +97 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +21 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/vector.rb +26 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid/xml.rb +28 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/oid.rb +36 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb +108 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +30 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +152 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +587 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql/utils.rb +77 -0
- data/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +754 -0
- data/rails/activerecord/lib/active_record/connection_adapters/schema_cache.rb +94 -0
- data/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +622 -0
- data/rails/activerecord/lib/active_record/connection_adapters/statement_pool.rb +40 -0
- data/rails/activerecord/lib/active_record/connection_handling.rb +132 -0
- data/rails/activerecord/lib/active_record/core.rb +572 -0
- data/rails/activerecord/lib/active_record/counter_cache.rb +175 -0
- data/rails/activerecord/lib/active_record/dynamic_matchers.rb +140 -0
- data/rails/activerecord/lib/active_record/enum.rb +198 -0
- data/rails/activerecord/lib/active_record/errors.rb +252 -0
- data/rails/activerecord/lib/active_record/explain.rb +38 -0
- data/rails/activerecord/lib/active_record/explain_registry.rb +30 -0
- data/rails/activerecord/lib/active_record/explain_subscriber.rb +29 -0
- data/rails/activerecord/lib/active_record/fixture_set/file.rb +56 -0
- data/rails/activerecord/lib/active_record/fixtures.rb +1007 -0
- data/rails/activerecord/lib/active_record/gem_version.rb +15 -0
- data/rails/activerecord/lib/active_record/inheritance.rb +247 -0
- data/rails/activerecord/lib/active_record/integration.rb +113 -0
- data/rails/activerecord/lib/active_record/locale/en.yml +47 -0
- data/rails/activerecord/lib/active_record/locking/optimistic.rb +206 -0
- data/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/rails/activerecord/lib/active_record/log_subscriber.rb +75 -0
- data/rails/activerecord/lib/active_record/migration/command_recorder.rb +197 -0
- data/rails/activerecord/lib/active_record/migration/join_table.rb +15 -0
- data/rails/activerecord/lib/active_record/migration.rb +1051 -0
- data/rails/activerecord/lib/active_record/model_schema.rb +340 -0
- data/rails/activerecord/lib/active_record/nested_attributes.rb +548 -0
- data/rails/activerecord/lib/active_record/no_touching.rb +52 -0
- data/rails/activerecord/lib/active_record/null_relation.rb +81 -0
- data/rails/activerecord/lib/active_record/persistence.rb +532 -0
- data/rails/activerecord/lib/active_record/query_cache.rb +56 -0
- data/rails/activerecord/lib/active_record/querying.rb +68 -0
- data/rails/activerecord/lib/active_record/railtie.rb +162 -0
- data/rails/activerecord/lib/active_record/railties/console_sandbox.rb +5 -0
- data/rails/activerecord/lib/active_record/railties/controller_runtime.rb +50 -0
- data/rails/activerecord/lib/active_record/railties/databases.rake +391 -0
- data/rails/activerecord/lib/active_record/railties/jdbcmysql_error.rb +16 -0
- data/rails/activerecord/lib/active_record/readonly_attributes.rb +23 -0
- data/rails/activerecord/lib/active_record/reflection.rb +881 -0
- data/rails/activerecord/lib/active_record/relation/batches.rb +138 -0
- data/rails/activerecord/lib/active_record/relation/calculations.rb +403 -0
- data/rails/activerecord/lib/active_record/relation/delegation.rb +140 -0
- data/rails/activerecord/lib/active_record/relation/finder_methods.rb +528 -0
- data/rails/activerecord/lib/active_record/relation/merger.rb +170 -0
- data/rails/activerecord/lib/active_record/relation/predicate_builder/array_handler.rb +47 -0
- data/rails/activerecord/lib/active_record/relation/predicate_builder/relation_handler.rb +13 -0
- data/rails/activerecord/lib/active_record/relation/predicate_builder.rb +141 -0
- data/rails/activerecord/lib/active_record/relation/query_methods.rb +1177 -0
- data/rails/activerecord/lib/active_record/relation/spawn_methods.rb +75 -0
- data/rails/activerecord/lib/active_record/relation.rb +681 -0
- data/rails/activerecord/lib/active_record/result.rb +131 -0
- data/rails/activerecord/lib/active_record/runtime_registry.rb +22 -0
- data/rails/activerecord/lib/active_record/sanitization.rb +191 -0
- data/rails/activerecord/lib/active_record/schema.rb +64 -0
- data/rails/activerecord/lib/active_record/schema_dumper.rb +251 -0
- data/rails/activerecord/lib/active_record/schema_migration.rb +56 -0
- data/rails/activerecord/lib/active_record/scoping/default.rb +134 -0
- data/rails/activerecord/lib/active_record/scoping/named.rb +164 -0
- data/rails/activerecord/lib/active_record/scoping.rb +87 -0
- data/rails/activerecord/lib/active_record/serialization.rb +22 -0
- data/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +193 -0
- data/rails/activerecord/lib/active_record/statement_cache.rb +111 -0
- data/rails/activerecord/lib/active_record/store.rb +205 -0
- data/rails/activerecord/lib/active_record/tasks/database_tasks.rb +296 -0
- data/rails/activerecord/lib/active_record/tasks/mysql_database_tasks.rb +145 -0
- data/rails/activerecord/lib/active_record/tasks/postgresql_database_tasks.rb +90 -0
- data/rails/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb +55 -0
- data/rails/activerecord/lib/active_record/timestamp.rb +121 -0
- data/rails/activerecord/lib/active_record/transactions.rb +415 -0
- data/rails/activerecord/lib/active_record/translation.rb +22 -0
- data/rails/activerecord/lib/active_record/type/big_integer.rb +13 -0
- data/rails/activerecord/lib/active_record/type/binary.rb +50 -0
- data/rails/activerecord/lib/active_record/type/boolean.rb +30 -0
- data/rails/activerecord/lib/active_record/type/date.rb +46 -0
- data/rails/activerecord/lib/active_record/type/date_time.rb +54 -0
- data/rails/activerecord/lib/active_record/type/decimal.rb +48 -0
- data/rails/activerecord/lib/active_record/type/decimal_without_scale.rb +11 -0
- data/rails/activerecord/lib/active_record/type/decorator.rb +14 -0
- data/rails/activerecord/lib/active_record/type/float.rb +19 -0
- data/rails/activerecord/lib/active_record/type/hash_lookup_type_map.rb +17 -0
- data/rails/activerecord/lib/active_record/type/integer.rb +59 -0
- data/rails/activerecord/lib/active_record/type/mutable.rb +16 -0
- data/rails/activerecord/lib/active_record/type/numeric.rb +36 -0
- data/rails/activerecord/lib/active_record/type/serialized.rb +56 -0
- data/rails/activerecord/lib/active_record/type/string.rb +40 -0
- data/rails/activerecord/lib/active_record/type/text.rb +11 -0
- data/rails/activerecord/lib/active_record/type/time.rb +26 -0
- data/rails/activerecord/lib/active_record/type/time_value.rb +38 -0
- data/rails/activerecord/lib/active_record/type/type_map.rb +64 -0
- data/rails/activerecord/lib/active_record/type/unsigned_integer.rb +15 -0
- data/rails/activerecord/lib/active_record/type/value.rb +105 -0
- data/rails/activerecord/lib/active_record/type.rb +23 -0
- data/rails/activerecord/lib/active_record/validations/associated.rb +51 -0
- data/rails/activerecord/lib/active_record/validations/presence.rb +67 -0
- data/rails/activerecord/lib/active_record/validations/uniqueness.rb +229 -0
- data/rails/activerecord/lib/active_record/validations.rb +90 -0
- data/rails/activerecord/lib/active_record/version.rb +8 -0
- data/rails/activerecord/lib/active_record.rb +173 -0
- data/rails/activerecord/lib/rails/generators/active_record/migration/migration_generator.rb +70 -0
- data/rails/activerecord/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +19 -0
- data/rails/activerecord/lib/rails/generators/active_record/migration/templates/migration.rb +39 -0
- data/rails/activerecord/lib/rails/generators/active_record/migration.rb +18 -0
- data/rails/activerecord/lib/rails/generators/active_record/model/model_generator.rb +52 -0
- data/rails/activerecord/lib/rails/generators/active_record/model/templates/model.rb +10 -0
- data/rails/activerecord/lib/rails/generators/active_record/model/templates/module.rb +7 -0
- data/rails/activerecord/lib/rails/generators/active_record.rb +17 -0
- data/rails/activerecord/test/.gitignore +1 -0
- data/rails/activerecord/test/active_record/connection_adapters/fake_adapter.rb +46 -0
- data/rails/activerecord/test/assets/example.log +1 -0
- data/rails/activerecord/test/assets/flowers.jpg +0 -0
- data/rails/activerecord/test/assets/test.txt +1 -0
- data/rails/activerecord/test/cases/adapter_test.rb +261 -0
- data/rails/activerecord/test/cases/adapters/mysql/active_schema_test.rb +155 -0
- data/rails/activerecord/test/cases/adapters/mysql/case_sensitivity_test.rb +55 -0
- data/rails/activerecord/test/cases/adapters/mysql/connection_test.rb +184 -0
- data/rails/activerecord/test/cases/adapters/mysql/consistency_test.rb +49 -0
- data/rails/activerecord/test/cases/adapters/mysql/datetime_test.rb +87 -0
- data/rails/activerecord/test/cases/adapters/mysql/enum_test.rb +10 -0
- data/rails/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb +153 -0
- data/rails/activerecord/test/cases/adapters/mysql/quoting_test.rb +25 -0
- data/rails/activerecord/test/cases/adapters/mysql/reserved_word_test.rb +153 -0
- data/rails/activerecord/test/cases/adapters/mysql/schema_test.rb +100 -0
- data/rails/activerecord/test/cases/adapters/mysql/sp_test.rb +15 -0
- data/rails/activerecord/test/cases/adapters/mysql/sql_types_test.rb +14 -0
- data/rails/activerecord/test/cases/adapters/mysql/statement_pool_test.rb +23 -0
- data/rails/activerecord/test/cases/adapters/mysql/unsigned_type_test.rb +30 -0
- data/rails/activerecord/test/cases/adapters/mysql2/active_schema_test.rb +155 -0
- data/rails/activerecord/test/cases/adapters/mysql2/bind_parameter_test.rb +50 -0
- data/rails/activerecord/test/cases/adapters/mysql2/boolean_test.rb +92 -0
- data/rails/activerecord/test/cases/adapters/mysql2/case_sensitivity_test.rb +55 -0
- data/rails/activerecord/test/cases/adapters/mysql2/connection_test.rb +134 -0
- data/rails/activerecord/test/cases/adapters/mysql2/datetime_test.rb +87 -0
- data/rails/activerecord/test/cases/adapters/mysql2/enum_test.rb +10 -0
- data/rails/activerecord/test/cases/adapters/mysql2/explain_test.rb +27 -0
- data/rails/activerecord/test/cases/adapters/mysql2/reserved_word_test.rb +152 -0
- data/rails/activerecord/test/cases/adapters/mysql2/schema_migrations_test.rb +47 -0
- data/rails/activerecord/test/cases/adapters/mysql2/schema_test.rb +81 -0
- data/rails/activerecord/test/cases/adapters/mysql2/sql_types_test.rb +14 -0
- data/rails/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb +30 -0
- data/rails/activerecord/test/cases/adapters/postgresql/active_schema_test.rb +58 -0
- data/rails/activerecord/test/cases/adapters/postgresql/array_test.rb +295 -0
- data/rails/activerecord/test/cases/adapters/postgresql/bit_string_test.rb +78 -0
- data/rails/activerecord/test/cases/adapters/postgresql/bytea_test.rb +125 -0
- data/rails/activerecord/test/cases/adapters/postgresql/change_schema_test.rb +31 -0
- data/rails/activerecord/test/cases/adapters/postgresql/citext_test.rb +71 -0
- data/rails/activerecord/test/cases/adapters/postgresql/composite_test.rb +131 -0
- data/rails/activerecord/test/cases/adapters/postgresql/connection_test.rb +215 -0
- data/rails/activerecord/test/cases/adapters/postgresql/datatype_test.rb +126 -0
- data/rails/activerecord/test/cases/adapters/postgresql/domain_test.rb +47 -0
- data/rails/activerecord/test/cases/adapters/postgresql/enum_test.rb +83 -0
- data/rails/activerecord/test/cases/adapters/postgresql/explain_test.rb +26 -0
- data/rails/activerecord/test/cases/adapters/postgresql/extension_migration_test.rb +63 -0
- data/rails/activerecord/test/cases/adapters/postgresql/full_text_test.rb +26 -0
- data/rails/activerecord/test/cases/adapters/postgresql/geometric_test.rb +72 -0
- data/rails/activerecord/test/cases/adapters/postgresql/hstore_test.rb +345 -0
- data/rails/activerecord/test/cases/adapters/postgresql/infinity_test.rb +60 -0
- data/rails/activerecord/test/cases/adapters/postgresql/integer_test.rb +25 -0
- data/rails/activerecord/test/cases/adapters/postgresql/json_test.rb +206 -0
- data/rails/activerecord/test/cases/adapters/postgresql/ltree_test.rb +46 -0
- data/rails/activerecord/test/cases/adapters/postgresql/money_test.rb +96 -0
- data/rails/activerecord/test/cases/adapters/postgresql/network_test.rb +71 -0
- data/rails/activerecord/test/cases/adapters/postgresql/postgresql_adapter_test.rb +462 -0
- data/rails/activerecord/test/cases/adapters/postgresql/quoting_test.rb +74 -0
- data/rails/activerecord/test/cases/adapters/postgresql/range_test.rb +323 -0
- data/rails/activerecord/test/cases/adapters/postgresql/rename_table_test.rb +34 -0
- data/rails/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb +114 -0
- data/rails/activerecord/test/cases/adapters/postgresql/schema_test.rb +462 -0
- data/rails/activerecord/test/cases/adapters/postgresql/statement_pool_test.rb +41 -0
- data/rails/activerecord/test/cases/adapters/postgresql/timestamp_test.rb +170 -0
- data/rails/activerecord/test/cases/adapters/postgresql/type_lookup_test.rb +33 -0
- data/rails/activerecord/test/cases/adapters/postgresql/utils_test.rb +61 -0
- data/rails/activerecord/test/cases/adapters/postgresql/uuid_test.rb +315 -0
- data/rails/activerecord/test/cases/adapters/postgresql/view_test.rb +63 -0
- data/rails/activerecord/test/cases/adapters/postgresql/xml_test.rb +48 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb +98 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/explain_test.rb +27 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/quoting_test.rb +116 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +461 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +21 -0
- data/rails/activerecord/test/cases/adapters/sqlite3/statement_pool_test.rb +25 -0
- data/rails/activerecord/test/cases/aggregations_test.rb +158 -0
- data/rails/activerecord/test/cases/ar_schema_test.rb +161 -0
- data/rails/activerecord/test/cases/associations/association_scope_test.rb +21 -0
- data/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +978 -0
- data/rails/activerecord/test/cases/associations/callbacks_test.rb +190 -0
- data/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +188 -0
- data/rails/activerecord/test/cases/associations/deprecated_counter_cache_on_has_many_through_test.rb +26 -0
- data/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +128 -0
- data/rails/activerecord/test/cases/associations/eager_singularization_test.rb +148 -0
- data/rails/activerecord/test/cases/associations/eager_test.rb +1366 -0
- data/rails/activerecord/test/cases/associations/extension_test.rb +82 -0
- data/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +905 -0
- data/rails/activerecord/test/cases/associations/has_many_associations_test.rb +2099 -0
- data/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +1163 -0
- data/rails/activerecord/test/cases/associations/has_one_associations_test.rb +610 -0
- data/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +346 -0
- data/rails/activerecord/test/cases/associations/inner_join_association_test.rb +139 -0
- data/rails/activerecord/test/cases/associations/inverse_associations_test.rb +693 -0
- data/rails/activerecord/test/cases/associations/join_model_test.rb +751 -0
- data/rails/activerecord/test/cases/associations/nested_through_associations_test.rb +579 -0
- data/rails/activerecord/test/cases/associations/required_test.rb +82 -0
- data/rails/activerecord/test/cases/associations_test.rb +380 -0
- data/rails/activerecord/test/cases/attribute_decorators_test.rb +125 -0
- data/rails/activerecord/test/cases/attribute_methods/read_test.rb +60 -0
- data/rails/activerecord/test/cases/attribute_methods_test.rb +941 -0
- data/rails/activerecord/test/cases/attribute_set_test.rb +200 -0
- data/rails/activerecord/test/cases/attribute_test.rb +180 -0
- data/rails/activerecord/test/cases/attributes_test.rb +115 -0
- data/rails/activerecord/test/cases/autosave_association_test.rb +1588 -0
- data/rails/activerecord/test/cases/base_test.rb +1627 -0
- data/rails/activerecord/test/cases/batches_test.rb +212 -0
- data/rails/activerecord/test/cases/binary_test.rb +49 -0
- data/rails/activerecord/test/cases/bind_parameter_test.rb +100 -0
- data/rails/activerecord/test/cases/calculations_test.rb +634 -0
- data/rails/activerecord/test/cases/callbacks_test.rb +539 -0
- data/rails/activerecord/test/cases/clone_test.rb +40 -0
- data/rails/activerecord/test/cases/coders/yaml_column_test.rb +63 -0
- data/rails/activerecord/test/cases/column_alias_test.rb +17 -0
- data/rails/activerecord/test/cases/column_definition_test.rb +123 -0
- data/rails/activerecord/test/cases/connection_adapters/adapter_leasing_test.rb +54 -0
- data/rails/activerecord/test/cases/connection_adapters/connection_handler_test.rb +53 -0
- data/rails/activerecord/test/cases/connection_adapters/connection_specification_test.rb +12 -0
- data/rails/activerecord/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +293 -0
- data/rails/activerecord/test/cases/connection_adapters/mysql_type_lookup_test.rb +65 -0
- data/rails/activerecord/test/cases/connection_adapters/quoting_test.rb +13 -0
- data/rails/activerecord/test/cases/connection_adapters/schema_cache_test.rb +56 -0
- data/rails/activerecord/test/cases/connection_adapters/type_lookup_test.rb +106 -0
- data/rails/activerecord/test/cases/connection_management_test.rb +122 -0
- data/rails/activerecord/test/cases/connection_pool_test.rb +346 -0
- data/rails/activerecord/test/cases/connection_specification/resolver_test.rb +116 -0
- data/rails/activerecord/test/cases/core_test.rb +112 -0
- data/rails/activerecord/test/cases/counter_cache_test.rb +201 -0
- data/rails/activerecord/test/cases/custom_locking_test.rb +17 -0
- data/rails/activerecord/test/cases/database_statements_test.rb +19 -0
- data/rails/activerecord/test/cases/date_time_test.rb +61 -0
- data/rails/activerecord/test/cases/defaults_test.rb +223 -0
- data/rails/activerecord/test/cases/dirty_test.rb +759 -0
- data/rails/activerecord/test/cases/disconnected_test.rb +28 -0
- data/rails/activerecord/test/cases/dup_test.rb +157 -0
- data/rails/activerecord/test/cases/enum_test.rb +290 -0
- data/rails/activerecord/test/cases/explain_subscriber_test.rb +59 -0
- data/rails/activerecord/test/cases/explain_test.rb +76 -0
- data/rails/activerecord/test/cases/finder_respond_to_test.rb +60 -0
- data/rails/activerecord/test/cases/finder_test.rb +1163 -0
- data/rails/activerecord/test/cases/fixture_set/file_test.rb +138 -0
- data/rails/activerecord/test/cases/fixtures_test.rb +869 -0
- data/rails/activerecord/test/cases/forbidden_attributes_protection_test.rb +99 -0
- data/rails/activerecord/test/cases/habtm_destroy_order_test.rb +61 -0
- data/rails/activerecord/test/cases/helper.rb +210 -0
- data/rails/activerecord/test/cases/hot_compatibility_test.rb +54 -0
- data/rails/activerecord/test/cases/i18n_test.rb +45 -0
- data/rails/activerecord/test/cases/inheritance_test.rb +369 -0
- data/rails/activerecord/test/cases/integration_test.rb +139 -0
- data/rails/activerecord/test/cases/invalid_connection_test.rb +22 -0
- data/rails/activerecord/test/cases/invalid_date_test.rb +32 -0
- data/rails/activerecord/test/cases/invertible_migration_test.rb +295 -0
- data/rails/activerecord/test/cases/json_serialization_test.rb +300 -0
- data/rails/activerecord/test/cases/locking_test.rb +477 -0
- data/rails/activerecord/test/cases/log_subscriber_test.rb +136 -0
- data/rails/activerecord/test/cases/migration/change_schema_test.rb +450 -0
- data/rails/activerecord/test/cases/migration/change_table_test.rb +224 -0
- data/rails/activerecord/test/cases/migration/column_attributes_test.rb +185 -0
- data/rails/activerecord/test/cases/migration/column_positioning_test.rb +56 -0
- data/rails/activerecord/test/cases/migration/columns_test.rb +299 -0
- data/rails/activerecord/test/cases/migration/command_recorder_test.rb +305 -0
- data/rails/activerecord/test/cases/migration/create_join_table_test.rb +148 -0
- data/rails/activerecord/test/cases/migration/foreign_key_test.rb +250 -0
- data/rails/activerecord/test/cases/migration/helper.rb +39 -0
- data/rails/activerecord/test/cases/migration/index_test.rb +208 -0
- data/rails/activerecord/test/cases/migration/logger_test.rb +36 -0
- data/rails/activerecord/test/cases/migration/pending_migrations_test.rb +53 -0
- data/rails/activerecord/test/cases/migration/references_foreign_key_test.rb +111 -0
- data/rails/activerecord/test/cases/migration/references_index_test.rb +101 -0
- data/rails/activerecord/test/cases/migration/references_statements_test.rb +116 -0
- data/rails/activerecord/test/cases/migration/rename_table_test.rb +93 -0
- data/rails/activerecord/test/cases/migration/table_and_index_test.rb +24 -0
- data/rails/activerecord/test/cases/migration_test.rb +939 -0
- data/rails/activerecord/test/cases/migrator_test.rb +388 -0
- data/rails/activerecord/test/cases/mixin_test.rb +70 -0
- data/rails/activerecord/test/cases/modules_test.rb +173 -0
- data/rails/activerecord/test/cases/multiparameter_attributes_test.rb +350 -0
- data/rails/activerecord/test/cases/multiple_db_test.rb +115 -0
- data/rails/activerecord/test/cases/nested_attributes_test.rb +1057 -0
- data/rails/activerecord/test/cases/nested_attributes_with_callbacks_test.rb +144 -0
- data/rails/activerecord/test/cases/persistence_test.rb +881 -0
- data/rails/activerecord/test/cases/pooled_connections_test.rb +81 -0
- data/rails/activerecord/test/cases/primary_keys_test.rb +236 -0
- data/rails/activerecord/test/cases/query_cache_test.rb +322 -0
- data/rails/activerecord/test/cases/quoting_test.rb +156 -0
- data/rails/activerecord/test/cases/readonly_test.rb +118 -0
- data/rails/activerecord/test/cases/reaper_test.rb +85 -0
- data/rails/activerecord/test/cases/reflection_test.rb +454 -0
- data/rails/activerecord/test/cases/relation/delegation_test.rb +68 -0
- data/rails/activerecord/test/cases/relation/merging_test.rb +161 -0
- data/rails/activerecord/test/cases/relation/mutation_test.rb +165 -0
- data/rails/activerecord/test/cases/relation/predicate_builder_test.rb +14 -0
- data/rails/activerecord/test/cases/relation/where_chain_test.rb +181 -0
- data/rails/activerecord/test/cases/relation/where_test.rb +278 -0
- data/rails/activerecord/test/cases/relation_test.rb +267 -0
- data/rails/activerecord/test/cases/relations_test.rb +1756 -0
- data/rails/activerecord/test/cases/reload_models_test.rb +22 -0
- data/rails/activerecord/test/cases/result_test.rb +80 -0
- data/rails/activerecord/test/cases/sanitize_test.rb +83 -0
- data/rails/activerecord/test/cases/schema_dumper_test.rb +445 -0
- data/rails/activerecord/test/cases/scoping/default_scoping_test.rb +436 -0
- data/rails/activerecord/test/cases/scoping/named_scoping_test.rb +524 -0
- data/rails/activerecord/test/cases/scoping/relation_scoping_test.rb +357 -0
- data/rails/activerecord/test/cases/serialization_test.rb +104 -0
- data/rails/activerecord/test/cases/serialized_attribute_test.rb +267 -0
- data/rails/activerecord/test/cases/statement_cache_test.rb +98 -0
- data/rails/activerecord/test/cases/store_test.rb +194 -0
- data/rails/activerecord/test/cases/tasks/database_tasks_test.rb +380 -0
- data/rails/activerecord/test/cases/tasks/mysql_rake_test.rb +311 -0
- data/rails/activerecord/test/cases/tasks/postgresql_rake_test.rb +245 -0
- data/rails/activerecord/test/cases/tasks/sqlite_rake_test.rb +193 -0
- data/rails/activerecord/test/cases/test_case.rb +123 -0
- data/rails/activerecord/test/cases/timestamp_test.rb +446 -0
- data/rails/activerecord/test/cases/transaction_callbacks_test.rb +444 -0
- data/rails/activerecord/test/cases/transaction_isolation_test.rb +106 -0
- data/rails/activerecord/test/cases/transactions_test.rb +792 -0
- data/rails/activerecord/test/cases/type/decimal_test.rb +51 -0
- data/rails/activerecord/test/cases/type/integer_test.rb +121 -0
- data/rails/activerecord/test/cases/type/string_test.rb +36 -0
- data/rails/activerecord/test/cases/type/type_map_test.rb +177 -0
- data/rails/activerecord/test/cases/type/unsigned_integer_test.rb +18 -0
- data/rails/activerecord/test/cases/types_test.rb +141 -0
- data/rails/activerecord/test/cases/unconnected_test.rb +33 -0
- data/rails/activerecord/test/cases/validations/association_validation_test.rb +86 -0
- data/rails/activerecord/test/cases/validations/i18n_generate_message_validation_test.rb +84 -0
- data/rails/activerecord/test/cases/validations/i18n_validation_test.rb +90 -0
- data/rails/activerecord/test/cases/validations/length_validation_test.rb +47 -0
- data/rails/activerecord/test/cases/validations/presence_validation_test.rb +68 -0
- data/rails/activerecord/test/cases/validations/uniqueness_validation_test.rb +406 -0
- data/rails/activerecord/test/cases/validations_repair_helper.rb +23 -0
- data/rails/activerecord/test/cases/validations_test.rb +165 -0
- data/rails/activerecord/test/cases/view_test.rb +113 -0
- data/rails/activerecord/test/cases/xml_serialization_test.rb +447 -0
- data/rails/activerecord/test/cases/yaml_serialization_test.rb +86 -0
- data/rails/activerecord/test/config.example.yml +106 -0
- data/rails/activerecord/test/config.rb +5 -0
- data/rails/activerecord/test/fixtures/.gitignore +1 -0
- data/rails/activerecord/test/fixtures/accounts.yml +29 -0
- data/rails/activerecord/test/fixtures/admin/accounts.yml +2 -0
- data/rails/activerecord/test/fixtures/admin/randomly_named_a9.yml +7 -0
- data/rails/activerecord/test/fixtures/admin/randomly_named_b0.yml +7 -0
- data/rails/activerecord/test/fixtures/admin/users.yml +10 -0
- data/rails/activerecord/test/fixtures/all/developers.yml +0 -0
- data/rails/activerecord/test/fixtures/all/people.yml +0 -0
- data/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
- data/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/rails/activerecord/test/fixtures/authors.yml +15 -0
- data/rails/activerecord/test/fixtures/binaries.yml +133 -0
- data/rails/activerecord/test/fixtures/books.yml +11 -0
- data/rails/activerecord/test/fixtures/bulbs.yml +5 -0
- data/rails/activerecord/test/fixtures/cars.yml +9 -0
- data/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/rails/activerecord/test/fixtures/categories.yml +19 -0
- data/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/rails/activerecord/test/fixtures/categories_posts.yml +31 -0
- data/rails/activerecord/test/fixtures/categorizations.yml +23 -0
- data/rails/activerecord/test/fixtures/clubs.yml +8 -0
- data/rails/activerecord/test/fixtures/collections.yml +3 -0
- data/rails/activerecord/test/fixtures/colleges.yml +3 -0
- data/rails/activerecord/test/fixtures/comments.yml +65 -0
- data/rails/activerecord/test/fixtures/companies.yml +67 -0
- data/rails/activerecord/test/fixtures/computers.yml +10 -0
- data/rails/activerecord/test/fixtures/courses.yml +8 -0
- data/rails/activerecord/test/fixtures/customers.yml +26 -0
- data/rails/activerecord/test/fixtures/dashboards.yml +6 -0
- data/rails/activerecord/test/fixtures/developers.yml +22 -0
- data/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/rails/activerecord/test/fixtures/dog_lovers.yml +7 -0
- data/rails/activerecord/test/fixtures/dogs.yml +4 -0
- data/rails/activerecord/test/fixtures/edges.yml +5 -0
- data/rails/activerecord/test/fixtures/entrants.yml +14 -0
- data/rails/activerecord/test/fixtures/essays.yml +6 -0
- data/rails/activerecord/test/fixtures/faces.yml +11 -0
- data/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/rails/activerecord/test/fixtures/friendships.yml +4 -0
- data/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/rails/activerecord/test/fixtures/interests.yml +33 -0
- data/rails/activerecord/test/fixtures/items.yml +3 -0
- data/rails/activerecord/test/fixtures/jobs.yml +7 -0
- data/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/rails/activerecord/test/fixtures/mateys.yml +4 -0
- data/rails/activerecord/test/fixtures/member_details.yml +8 -0
- data/rails/activerecord/test/fixtures/member_types.yml +6 -0
- data/rails/activerecord/test/fixtures/members.yml +11 -0
- data/rails/activerecord/test/fixtures/memberships.yml +34 -0
- data/rails/activerecord/test/fixtures/men.yml +5 -0
- data/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/rails/activerecord/test/fixtures/minivans.yml +5 -0
- data/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/rails/activerecord/test/fixtures/mixins.yml +29 -0
- data/rails/activerecord/test/fixtures/movies.yml +7 -0
- data/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/rails/activerecord/test/fixtures/organizations.yml +5 -0
- data/rails/activerecord/test/fixtures/other_topics.yml +42 -0
- data/rails/activerecord/test/fixtures/owners.yml +9 -0
- data/rails/activerecord/test/fixtures/parrots.yml +27 -0
- data/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/rails/activerecord/test/fixtures/people.yml +24 -0
- data/rails/activerecord/test/fixtures/peoples_treasures.yml +3 -0
- data/rails/activerecord/test/fixtures/pets.yml +19 -0
- data/rails/activerecord/test/fixtures/pirates.yml +12 -0
- data/rails/activerecord/test/fixtures/posts.yml +80 -0
- data/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/rails/activerecord/test/fixtures/products.yml +4 -0
- data/rails/activerecord/test/fixtures/projects.yml +7 -0
- data/rails/activerecord/test/fixtures/randomly_named_a9.yml +7 -0
- data/rails/activerecord/test/fixtures/ratings.yml +14 -0
- data/rails/activerecord/test/fixtures/readers.yml +11 -0
- data/rails/activerecord/test/fixtures/references.yml +17 -0
- data/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/rails/activerecord/test/fixtures/reserved_words/distinct_select.yml +11 -0
- data/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/rails/activerecord/test/fixtures/ships.yml +6 -0
- data/rails/activerecord/test/fixtures/speedometers.yml +8 -0
- data/rails/activerecord/test/fixtures/sponsors.yml +12 -0
- data/rails/activerecord/test/fixtures/string_key_objects.yml +7 -0
- data/rails/activerecord/test/fixtures/subscribers.yml +11 -0
- data/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/rails/activerecord/test/fixtures/taggings.yml +78 -0
- data/rails/activerecord/test/fixtures/tags.yml +11 -0
- data/rails/activerecord/test/fixtures/tasks.yml +7 -0
- data/rails/activerecord/test/fixtures/teapots.yml +3 -0
- data/rails/activerecord/test/fixtures/to_be_linked/accounts.yml +2 -0
- data/rails/activerecord/test/fixtures/to_be_linked/users.yml +10 -0
- data/rails/activerecord/test/fixtures/topics.yml +49 -0
- data/rails/activerecord/test/fixtures/toys.yml +14 -0
- data/rails/activerecord/test/fixtures/traffic_lights.yml +10 -0
- data/rails/activerecord/test/fixtures/treasures.yml +10 -0
- data/rails/activerecord/test/fixtures/uuid_children.yml +3 -0
- data/rails/activerecord/test/fixtures/uuid_parents.yml +2 -0
- data/rails/activerecord/test/fixtures/variants.yml +4 -0
- data/rails/activerecord/test/fixtures/vegetables.yml +20 -0
- data/rails/activerecord/test/fixtures/vertices.yml +4 -0
- data/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/rails/activerecord/test/fixtures/zines.yml +5 -0
- data/rails/activerecord/test/migrations/10_urban/9_add_expressions.rb +11 -0
- data/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/rails/activerecord/test/migrations/empty/.gitkeep +0 -0
- data/rails/activerecord/test/migrations/magic/1_currencies_have_symbols.rb +12 -0
- data/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/rails/activerecord/test/migrations/rename/1_we_need_things.rb +11 -0
- data/rails/activerecord/test/migrations/rename/2_rename_things.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy2/1_create_articles.rb +7 -0
- data/rails/activerecord/test/migrations/to_copy2/2_create_comments.rb +7 -0
- data/rails/activerecord/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +9 -0
- data/rails/activerecord/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +7 -0
- data/rails/activerecord/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +7 -0
- data/rails/activerecord/test/migrations/valid/1_valid_people_have_last_names.rb +9 -0
- data/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/rails/activerecord/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +9 -0
- data/rails/activerecord/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +12 -0
- data/rails/activerecord/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +12 -0
- data/rails/activerecord/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +9 -0
- data/rails/activerecord/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +12 -0
- data/rails/activerecord/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +12 -0
- data/rails/activerecord/test/migrations/version_check/20131219224947_migration_version_check.rb +8 -0
- data/rails/activerecord/test/models/admin/account.rb +3 -0
- data/rails/activerecord/test/models/admin/randomly_named_c1.rb +3 -0
- data/rails/activerecord/test/models/admin/user.rb +40 -0
- data/rails/activerecord/test/models/admin.rb +5 -0
- data/rails/activerecord/test/models/aircraft.rb +4 -0
- data/rails/activerecord/test/models/arunit2_model.rb +3 -0
- data/rails/activerecord/test/models/author.rb +212 -0
- data/rails/activerecord/test/models/auto_id.rb +4 -0
- data/rails/activerecord/test/models/autoloadable/extra_firm.rb +2 -0
- data/rails/activerecord/test/models/binary.rb +2 -0
- data/rails/activerecord/test/models/bird.rb +12 -0
- data/rails/activerecord/test/models/book.rb +18 -0
- data/rails/activerecord/test/models/boolean.rb +2 -0
- data/rails/activerecord/test/models/bulb.rb +51 -0
- data/rails/activerecord/test/models/cake_designer.rb +3 -0
- data/rails/activerecord/test/models/car.rb +26 -0
- data/rails/activerecord/test/models/categorization.rb +19 -0
- data/rails/activerecord/test/models/category.rb +35 -0
- data/rails/activerecord/test/models/chef.rb +3 -0
- data/rails/activerecord/test/models/citation.rb +3 -0
- data/rails/activerecord/test/models/club.rb +23 -0
- data/rails/activerecord/test/models/college.rb +10 -0
- data/rails/activerecord/test/models/column.rb +3 -0
- data/rails/activerecord/test/models/column_name.rb +3 -0
- data/rails/activerecord/test/models/comment.rb +59 -0
- data/rails/activerecord/test/models/company.rb +225 -0
- data/rails/activerecord/test/models/company_in_module.rb +98 -0
- data/rails/activerecord/test/models/computer.rb +3 -0
- data/rails/activerecord/test/models/contact.rb +41 -0
- data/rails/activerecord/test/models/contract.rb +20 -0
- data/rails/activerecord/test/models/country.rb +7 -0
- data/rails/activerecord/test/models/course.rb +6 -0
- data/rails/activerecord/test/models/customer.rb +77 -0
- data/rails/activerecord/test/models/dashboard.rb +3 -0
- data/rails/activerecord/test/models/default.rb +2 -0
- data/rails/activerecord/test/models/department.rb +4 -0
- data/rails/activerecord/test/models/developer.rb +252 -0
- data/rails/activerecord/test/models/dog.rb +5 -0
- data/rails/activerecord/test/models/dog_lover.rb +5 -0
- data/rails/activerecord/test/models/drink_designer.rb +3 -0
- data/rails/activerecord/test/models/edge.rb +5 -0
- data/rails/activerecord/test/models/electron.rb +5 -0
- data/rails/activerecord/test/models/engine.rb +4 -0
- data/rails/activerecord/test/models/entrant.rb +3 -0
- data/rails/activerecord/test/models/essay.rb +5 -0
- data/rails/activerecord/test/models/event.rb +3 -0
- data/rails/activerecord/test/models/eye.rb +37 -0
- data/rails/activerecord/test/models/face.rb +9 -0
- data/rails/activerecord/test/models/friendship.rb +6 -0
- data/rails/activerecord/test/models/guid.rb +2 -0
- data/rails/activerecord/test/models/hotel.rb +6 -0
- data/rails/activerecord/test/models/image.rb +3 -0
- data/rails/activerecord/test/models/interest.rb +5 -0
- data/rails/activerecord/test/models/invoice.rb +4 -0
- data/rails/activerecord/test/models/item.rb +7 -0
- data/rails/activerecord/test/models/job.rb +7 -0
- data/rails/activerecord/test/models/joke.rb +7 -0
- data/rails/activerecord/test/models/keyboard.rb +3 -0
- data/rails/activerecord/test/models/legacy_thing.rb +3 -0
- data/rails/activerecord/test/models/lesson.rb +11 -0
- data/rails/activerecord/test/models/line_item.rb +3 -0
- data/rails/activerecord/test/models/liquid.rb +4 -0
- data/rails/activerecord/test/models/man.rb +11 -0
- data/rails/activerecord/test/models/matey.rb +4 -0
- data/rails/activerecord/test/models/member.rb +38 -0
- data/rails/activerecord/test/models/member_detail.rb +7 -0
- data/rails/activerecord/test/models/member_type.rb +3 -0
- data/rails/activerecord/test/models/membership.rb +20 -0
- data/rails/activerecord/test/models/minimalistic.rb +2 -0
- data/rails/activerecord/test/models/minivan.rb +9 -0
- data/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/rails/activerecord/test/models/molecule.rb +6 -0
- data/rails/activerecord/test/models/movie.rb +5 -0
- data/rails/activerecord/test/models/order.rb +4 -0
- data/rails/activerecord/test/models/organization.rb +14 -0
- data/rails/activerecord/test/models/owner.rb +34 -0
- data/rails/activerecord/test/models/parrot.rb +29 -0
- data/rails/activerecord/test/models/person.rb +143 -0
- data/rails/activerecord/test/models/personal_legacy_thing.rb +4 -0
- data/rails/activerecord/test/models/pet.rb +15 -0
- data/rails/activerecord/test/models/pirate.rb +92 -0
- data/rails/activerecord/test/models/possession.rb +3 -0
- data/rails/activerecord/test/models/post.rb +243 -0
- data/rails/activerecord/test/models/price_estimate.rb +4 -0
- data/rails/activerecord/test/models/project.rb +29 -0
- data/rails/activerecord/test/models/publisher/article.rb +4 -0
- data/rails/activerecord/test/models/publisher/magazine.rb +3 -0
- data/rails/activerecord/test/models/publisher.rb +2 -0
- data/rails/activerecord/test/models/randomly_named_c1.rb +3 -0
- data/rails/activerecord/test/models/rating.rb +4 -0
- data/rails/activerecord/test/models/reader.rb +23 -0
- data/rails/activerecord/test/models/record.rb +2 -0
- data/rails/activerecord/test/models/reference.rb +22 -0
- data/rails/activerecord/test/models/reply.rb +61 -0
- data/rails/activerecord/test/models/ship.rb +26 -0
- data/rails/activerecord/test/models/ship_part.rb +8 -0
- data/rails/activerecord/test/models/shop.rb +17 -0
- data/rails/activerecord/test/models/speedometer.rb +6 -0
- data/rails/activerecord/test/models/sponsor.rb +7 -0
- data/rails/activerecord/test/models/string_key_object.rb +3 -0
- data/rails/activerecord/test/models/student.rb +4 -0
- data/rails/activerecord/test/models/subject.rb +16 -0
- data/rails/activerecord/test/models/subscriber.rb +8 -0
- data/rails/activerecord/test/models/subscription.rb +4 -0
- data/rails/activerecord/test/models/tag.rb +7 -0
- data/rails/activerecord/test/models/tagging.rb +13 -0
- data/rails/activerecord/test/models/task.rb +5 -0
- data/rails/activerecord/test/models/topic.rb +124 -0
- data/rails/activerecord/test/models/toy.rb +6 -0
- data/rails/activerecord/test/models/traffic_light.rb +4 -0
- data/rails/activerecord/test/models/treasure.rb +13 -0
- data/rails/activerecord/test/models/treaty.rb +7 -0
- data/rails/activerecord/test/models/tyre.rb +11 -0
- data/rails/activerecord/test/models/uuid_child.rb +3 -0
- data/rails/activerecord/test/models/uuid_parent.rb +3 -0
- data/rails/activerecord/test/models/vegetables.rb +24 -0
- data/rails/activerecord/test/models/vertex.rb +9 -0
- data/rails/activerecord/test/models/warehouse_thing.rb +5 -0
- data/rails/activerecord/test/models/wheel.rb +3 -0
- data/rails/activerecord/test/models/without_table.rb +3 -0
- data/rails/activerecord/test/models/zine.rb +3 -0
- data/rails/activerecord/test/schema/mysql2_specific_schema.rb +58 -0
- data/rails/activerecord/test/schema/mysql_specific_schema.rb +70 -0
- data/rails/activerecord/test/schema/oracle_specific_schema.rb +43 -0
- data/rails/activerecord/test/schema/postgresql_specific_schema.rb +198 -0
- data/rails/activerecord/test/schema/schema.rb +905 -0
- data/rails/activerecord/test/schema/sqlite_specific_schema.rb +22 -0
- data/rails/activerecord/test/support/config.rb +43 -0
- data/rails/activerecord/test/support/connection.rb +21 -0
- data/rails/activerecord/test/support/connection_helper.rb +14 -0
- data/rails/activerecord/test/support/ddl_helper.rb +8 -0
- data/rails/activerecord/test/support/schema_dumping_helper.rb +20 -0
- data/rails/activesupport/CHANGELOG.md +418 -0
- data/rails/activesupport/MIT-LICENSE +20 -0
- data/rails/activesupport/README.rdoc +40 -0
- data/rails/activesupport/Rakefile +32 -0
- data/rails/activesupport/activesupport.gemspec +28 -0
- data/rails/activesupport/bin/generate_tables +144 -0
- data/rails/activesupport/lib/active_support/all.rb +3 -0
- data/rails/activesupport/lib/active_support/backtrace_cleaner.rb +103 -0
- data/rails/activesupport/lib/active_support/benchmarkable.rb +49 -0
- data/rails/activesupport/lib/active_support/builder.rb +6 -0
- data/rails/activesupport/lib/active_support/cache/file_store.rb +190 -0
- data/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +198 -0
- data/rails/activesupport/lib/active_support/cache/memory_store.rb +172 -0
- data/rails/activesupport/lib/active_support/cache/null_store.rb +44 -0
- data/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +161 -0
- data/rails/activesupport/lib/active_support/cache/strategy/local_cache_middleware.rb +44 -0
- data/rails/activesupport/lib/active_support/cache.rb +717 -0
- data/rails/activesupport/lib/active_support/callbacks.rb +793 -0
- data/rails/activesupport/lib/active_support/concern.rb +142 -0
- data/rails/activesupport/lib/active_support/concurrency/latch.rb +27 -0
- data/rails/activesupport/lib/active_support/configurable.rb +147 -0
- data/rails/activesupport/lib/active_support/core_ext/array/access.rb +64 -0
- data/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +209 -0
- data/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +29 -0
- data/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +116 -0
- data/rails/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
- data/rails/activesupport/lib/active_support/core_ext/array/wrap.rb +45 -0
- data/rails/activesupport/lib/active_support/core_ext/array.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/benchmark.rb +14 -0
- data/rails/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb +16 -0
- data/rails/activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb +14 -0
- data/rails/activesupport/lib/active_support/core_ext/big_decimal.rb +1 -0
- data/rails/activesupport/lib/active_support/core_ext/class/attribute.rb +127 -0
- data/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +4 -0
- data/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +45 -0
- data/rails/activesupport/lib/active_support/core_ext/class/subclasses.rb +42 -0
- data/rails/activesupport/lib/active_support/core_ext/class.rb +3 -0
- data/rails/activesupport/lib/active_support/core_ext/date/acts_like.rb +8 -0
- data/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +143 -0
- data/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +88 -0
- data/rails/activesupport/lib/active_support/core_ext/date/zones.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/date.rb +5 -0
- data/rails/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb +251 -0
- data/rails/activesupport/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
- data/rails/activesupport/lib/active_support/core_ext/date_time/acts_like.rb +14 -0
- data/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +173 -0
- data/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +103 -0
- data/rails/activesupport/lib/active_support/core_ext/date_time/zones.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/date_time.rb +4 -0
- data/rails/activesupport/lib/active_support/core_ext/digest/uuid.rb +51 -0
- data/rails/activesupport/lib/active_support/core_ext/enumerable.rb +80 -0
- data/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +63 -0
- data/rails/activesupport/lib/active_support/core_ext/file.rb +1 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/compact.rb +20 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +243 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +38 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/except.rb +21 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +23 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +166 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +22 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +48 -0
- data/rails/activesupport/lib/active_support/core_ext/hash/transform_values.rb +23 -0
- data/rails/activesupport/lib/active_support/core_ext/hash.rb +9 -0
- data/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +29 -0
- data/rails/activesupport/lib/active_support/core_ext/integer/multiple.rb +10 -0
- data/rails/activesupport/lib/active_support/core_ext/integer/time.rb +44 -0
- data/rails/activesupport/lib/active_support/core_ext/integer.rb +3 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel/concern.rb +10 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +10 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +124 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel/singleton_class.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/rails/activesupport/lib/active_support/core_ext/load_error.rb +28 -0
- data/rails/activesupport/lib/active_support/core_ext/marshal.rb +21 -0
- data/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +69 -0
- data/rails/activesupport/lib/active_support/core_ext/module/anonymous.rb +19 -0
- data/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +39 -0
- data/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +212 -0
- data/rails/activesupport/lib/active_support/core_ext/module/concerning.rb +135 -0
- data/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +217 -0
- data/rails/activesupport/lib/active_support/core_ext/module/deprecation.rb +23 -0
- data/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +62 -0
- data/rails/activesupport/lib/active_support/core_ext/module/method_transplanting.rb +11 -0
- data/rails/activesupport/lib/active_support/core_ext/module/qualified_const.rb +52 -0
- data/rails/activesupport/lib/active_support/core_ext/module/reachable.rb +8 -0
- data/rails/activesupport/lib/active_support/core_ext/module/remove_method.rb +12 -0
- data/rails/activesupport/lib/active_support/core_ext/module.rb +11 -0
- data/rails/activesupport/lib/active_support/core_ext/name_error.rb +18 -0
- data/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +135 -0
- data/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +69 -0
- data/rails/activesupport/lib/active_support/core_ext/numeric.rb +3 -0
- data/rails/activesupport/lib/active_support/core_ext/object/acts_like.rb +10 -0
- data/rails/activesupport/lib/active_support/core_ext/object/blank.rb +131 -0
- data/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +4 -0
- data/rails/activesupport/lib/active_support/core_ext/object/deep_dup.rb +46 -0
- data/rails/activesupport/lib/active_support/core_ext/object/duplicable.rb +103 -0
- data/rails/activesupport/lib/active_support/core_ext/object/inclusion.rb +27 -0
- data/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +28 -0
- data/rails/activesupport/lib/active_support/core_ext/object/itself.rb +15 -0
- data/rails/activesupport/lib/active_support/core_ext/object/json.rb +197 -0
- data/rails/activesupport/lib/active_support/core_ext/object/to_param.rb +1 -0
- data/rails/activesupport/lib/active_support/core_ext/object/to_query.rb +84 -0
- data/rails/activesupport/lib/active_support/core_ext/object/try.rb +100 -0
- data/rails/activesupport/lib/active_support/core_ext/object/with_options.rb +69 -0
- data/rails/activesupport/lib/active_support/core_ext/object.rb +15 -0
- data/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +19 -0
- data/rails/activesupport/lib/active_support/core_ext/range/each.rb +23 -0
- data/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +23 -0
- data/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +8 -0
- data/rails/activesupport/lib/active_support/core_ext/range.rb +4 -0
- data/rails/activesupport/lib/active_support/core_ext/regexp.rb +5 -0
- data/rails/activesupport/lib/active_support/core_ext/string/access.rb +104 -0
- data/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +56 -0
- data/rails/activesupport/lib/active_support/core_ext/string/exclude.rb +11 -0
- data/rails/activesupport/lib/active_support/core_ext/string/filters.rb +102 -0
- data/rails/activesupport/lib/active_support/core_ext/string/indent.rb +43 -0
- data/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +217 -0
- data/rails/activesupport/lib/active_support/core_ext/string/inquiry.rb +13 -0
- data/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +49 -0
- data/rails/activesupport/lib/active_support/core_ext/string/output_safety.rb +262 -0
- data/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
- data/rails/activesupport/lib/active_support/core_ext/string/strip.rb +26 -0
- data/rails/activesupport/lib/active_support/core_ext/string/zones.rb +14 -0
- data/rails/activesupport/lib/active_support/core_ext/string.rb +13 -0
- data/rails/activesupport/lib/active_support/core_ext/struct.rb +6 -0
- data/rails/activesupport/lib/active_support/core_ext/thread.rb +86 -0
- data/rails/activesupport/lib/active_support/core_ext/time/acts_like.rb +8 -0
- data/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +265 -0
- data/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +65 -0
- data/rails/activesupport/lib/active_support/core_ext/time/marshal.rb +30 -0
- data/rails/activesupport/lib/active_support/core_ext/time/zones.rb +79 -0
- data/rails/activesupport/lib/active_support/core_ext/time.rb +5 -0
- data/rails/activesupport/lib/active_support/core_ext/uri.rb +26 -0
- data/rails/activesupport/lib/active_support/core_ext.rb +3 -0
- data/rails/activesupport/lib/active_support/dependencies/autoload.rb +77 -0
- data/rails/activesupport/lib/active_support/dependencies.rb +762 -0
- data/rails/activesupport/lib/active_support/deprecation/behaviors.rb +76 -0
- data/rails/activesupport/lib/active_support/deprecation/instance_delegator.rb +24 -0
- data/rails/activesupport/lib/active_support/deprecation/method_wrappers.rb +44 -0
- data/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb +126 -0
- data/rails/activesupport/lib/active_support/deprecation/reporting.rb +94 -0
- data/rails/activesupport/lib/active_support/deprecation.rb +43 -0
- data/rails/activesupport/lib/active_support/descendants_tracker.rb +60 -0
- data/rails/activesupport/lib/active_support/duration.rb +136 -0
- data/rails/activesupport/lib/active_support/file_update_checker.rb +137 -0
- data/rails/activesupport/lib/active_support/gem_version.rb +15 -0
- data/rails/activesupport/lib/active_support/gzip.rb +36 -0
- data/rails/activesupport/lib/active_support/hash_with_indifferent_access.rb +281 -0
- data/rails/activesupport/lib/active_support/i18n.rb +13 -0
- data/rails/activesupport/lib/active_support/i18n_railtie.rb +94 -0
- data/rails/activesupport/lib/active_support/inflections.rb +70 -0
- data/rails/activesupport/lib/active_support/inflector/inflections.rb +211 -0
- data/rails/activesupport/lib/active_support/inflector/methods.rb +383 -0
- data/rails/activesupport/lib/active_support/inflector/transliterate.rb +97 -0
- data/rails/activesupport/lib/active_support/inflector.rb +7 -0
- data/rails/activesupport/lib/active_support/json/decoding.rb +73 -0
- data/rails/activesupport/lib/active_support/json/encoding.rb +172 -0
- data/rails/activesupport/lib/active_support/json.rb +2 -0
- data/rails/activesupport/lib/active_support/key_generator.rb +73 -0
- data/rails/activesupport/lib/active_support/lazy_load_hooks.rb +48 -0
- data/rails/activesupport/lib/active_support/locale/en.yml +133 -0
- data/rails/activesupport/lib/active_support/log_subscriber/test_helper.rb +104 -0
- data/rails/activesupport/lib/active_support/log_subscriber.rb +109 -0
- data/rails/activesupport/lib/active_support/logger.rb +57 -0
- data/rails/activesupport/lib/active_support/logger_silence.rb +24 -0
- data/rails/activesupport/lib/active_support/message_encryptor.rb +107 -0
- data/rails/activesupport/lib/active_support/message_verifier.rb +72 -0
- data/rails/activesupport/lib/active_support/multibyte/chars.rb +222 -0
- data/rails/activesupport/lib/active_support/multibyte/unicode.rb +390 -0
- data/rails/activesupport/lib/active_support/multibyte.rb +21 -0
- data/rails/activesupport/lib/active_support/notifications/fanout.rb +157 -0
- data/rails/activesupport/lib/active_support/notifications/instrumenter.rb +73 -0
- data/rails/activesupport/lib/active_support/notifications.rb +212 -0
- data/rails/activesupport/lib/active_support/number_helper/number_converter.rb +182 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_delimited_converter.rb +23 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_human_converter.rb +66 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_human_size_converter.rb +58 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_percentage_converter.rb +12 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb +49 -0
- data/rails/activesupport/lib/active_support/number_helper/number_to_rounded_converter.rb +87 -0
- data/rails/activesupport/lib/active_support/number_helper.rb +345 -0
- data/rails/activesupport/lib/active_support/option_merger.rb +25 -0
- data/rails/activesupport/lib/active_support/ordered_hash.rb +48 -0
- data/rails/activesupport/lib/active_support/ordered_options.rb +67 -0
- data/rails/activesupport/lib/active_support/per_thread_registry.rb +53 -0
- data/rails/activesupport/lib/active_support/proxy_object.rb +13 -0
- data/rails/activesupport/lib/active_support/rails.rb +27 -0
- data/rails/activesupport/lib/active_support/railtie.rb +46 -0
- data/rails/activesupport/lib/active_support/rescuable.rb +119 -0
- data/rails/activesupport/lib/active_support/security_utils.rb +20 -0
- data/rails/activesupport/lib/active_support/string_inquirer.rb +26 -0
- data/rails/activesupport/lib/active_support/subscriber.rb +125 -0
- data/rails/activesupport/lib/active_support/tagged_logging.rb +76 -0
- data/rails/activesupport/lib/active_support/test_case.rb +100 -0
- data/rails/activesupport/lib/active_support/testing/assertions.rb +97 -0
- data/rails/activesupport/lib/active_support/testing/autorun.rb +5 -0
- data/rails/activesupport/lib/active_support/testing/constant_lookup.rb +50 -0
- data/rails/activesupport/lib/active_support/testing/declarative.rb +26 -0
- data/rails/activesupport/lib/active_support/testing/deprecation.rb +35 -0
- data/rails/activesupport/lib/active_support/testing/isolation.rb +101 -0
- data/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +50 -0
- data/rails/activesupport/lib/active_support/testing/tagged_logging.rb +25 -0
- data/rails/activesupport/lib/active_support/testing/time_helpers.rb +131 -0
- data/rails/activesupport/lib/active_support/time.rb +18 -0
- data/rails/activesupport/lib/active_support/time_with_zone.rb +409 -0
- data/rails/activesupport/lib/active_support/values/time_zone.rb +428 -0
- data/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/rails/activesupport/lib/active_support/version.rb +8 -0
- data/rails/activesupport/lib/active_support/xml_mini/jdom.rb +180 -0
- data/rails/activesupport/lib/active_support/xml_mini/libxml.rb +79 -0
- data/rails/activesupport/lib/active_support/xml_mini/libxmlsax.rb +85 -0
- data/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/rails/activesupport/lib/active_support/xml_mini/nokogirisax.rb +87 -0
- data/rails/activesupport/lib/active_support/xml_mini/rexml.rb +129 -0
- data/rails/activesupport/lib/active_support/xml_mini.rb +191 -0
- data/rails/activesupport/lib/active_support.rb +85 -0
- data/rails/activesupport/test/abstract_unit.rb +45 -0
- data/rails/activesupport/test/autoload_test.rb +81 -0
- data/rails/activesupport/test/autoloading_fixtures/a/b.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/a/c/d.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/a/c/e/f.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/application.rb +1 -0
- data/rails/activesupport/test/autoloading_fixtures/circular1.rb +6 -0
- data/rails/activesupport/test/autoloading_fixtures/circular2.rb +4 -0
- data/rails/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb +3 -0
- data/rails/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb +7 -0
- data/rails/activesupport/test/autoloading_fixtures/class_folder.rb +3 -0
- data/rails/activesupport/test/autoloading_fixtures/conflict.rb +1 -0
- data/rails/activesupport/test/autoloading_fixtures/counting_loader.rb +5 -0
- data/rails/activesupport/test/autoloading_fixtures/cross_site_dependency.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/e.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/html/some_class.rb +4 -0
- data/rails/activesupport/test/autoloading_fixtures/load_path/loaded_constant.rb +3 -0
- data/rails/activesupport/test/autoloading_fixtures/loads_constant.rb +5 -0
- data/rails/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb +4 -0
- data/rails/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb +1 -0
- data/rails/activesupport/test/autoloading_fixtures/multiple_constant_file.rb +2 -0
- data/rails/activesupport/test/autoloading_fixtures/raises_name_error.rb +3 -0
- data/rails/activesupport/test/autoloading_fixtures/raises_no_method_error.rb +3 -0
- data/rails/activesupport/test/autoloading_fixtures/requires_constant.rb +5 -0
- data/rails/activesupport/test/autoloading_fixtures/should_not_be_required.rb +1 -0
- data/rails/activesupport/test/autoloading_fixtures/typo.rb +2 -0
- data/rails/activesupport/test/benchmarkable_test.rb +62 -0
- data/rails/activesupport/test/broadcast_logger_test.rb +82 -0
- data/rails/activesupport/test/caching_test.rb +1076 -0
- data/rails/activesupport/test/callback_inheritance_test.rb +176 -0
- data/rails/activesupport/test/callbacks_test.rb +1003 -0
- data/rails/activesupport/test/class_cache_test.rb +78 -0
- data/rails/activesupport/test/clean_backtrace_test.rb +75 -0
- data/rails/activesupport/test/clean_logger_test.rb +29 -0
- data/rails/activesupport/test/concern_test.rb +104 -0
- data/rails/activesupport/test/configurable_test.rb +123 -0
- data/rails/activesupport/test/constantize_test_cases.rb +116 -0
- data/rails/activesupport/test/core_ext/array/access_test.rb +30 -0
- data/rails/activesupport/test/core_ext/array/conversions_test.rb +197 -0
- data/rails/activesupport/test/core_ext/array/extract_options_test.rb +45 -0
- data/rails/activesupport/test/core_ext/array/grouping_test.rb +126 -0
- data/rails/activesupport/test/core_ext/array/prepend_append_test.rb +12 -0
- data/rails/activesupport/test/core_ext/array/wrap_test.rb +77 -0
- data/rails/activesupport/test/core_ext/big_decimal/yaml_conversions_test.rb +11 -0
- data/rails/activesupport/test/core_ext/bigdecimal_test.rb +9 -0
- data/rails/activesupport/test/core_ext/class/attribute_test.rb +91 -0
- data/rails/activesupport/test/core_ext/class/delegating_attributes_test.rb +122 -0
- data/rails/activesupport/test/core_ext/class_test.rb +28 -0
- data/rails/activesupport/test/core_ext/date_and_time_behavior.rb +241 -0
- data/rails/activesupport/test/core_ext/date_ext_test.rb +373 -0
- data/rails/activesupport/test/core_ext/date_time_ext_test.rb +358 -0
- data/rails/activesupport/test/core_ext/digest/uuid_test.rb +24 -0
- data/rails/activesupport/test/core_ext/duration_test.rb +223 -0
- data/rails/activesupport/test/core_ext/enumerable_test.rb +106 -0
- data/rails/activesupport/test/core_ext/file_test.rb +68 -0
- data/rails/activesupport/test/core_ext/hash/transform_keys_test.rb +32 -0
- data/rails/activesupport/test/core_ext/hash/transform_values_test.rb +61 -0
- data/rails/activesupport/test/core_ext/hash_ext_test.rb +1688 -0
- data/rails/activesupport/test/core_ext/integer_ext_test.rb +30 -0
- data/rails/activesupport/test/core_ext/kernel/concern_test.rb +13 -0
- data/rails/activesupport/test/core_ext/kernel_test.rb +138 -0
- data/rails/activesupport/test/core_ext/load_error_test.rb +41 -0
- data/rails/activesupport/test/core_ext/marshal_test.rb +124 -0
- data/rails/activesupport/test/core_ext/module/anonymous_test.rb +14 -0
- data/rails/activesupport/test/core_ext/module/attr_internal_test.rb +53 -0
- data/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb +79 -0
- data/rails/activesupport/test/core_ext/module/attribute_aliasing_test.rb +59 -0
- data/rails/activesupport/test/core_ext/module/concerning_test.rb +65 -0
- data/rails/activesupport/test/core_ext/module/qualified_const_test.rb +108 -0
- data/rails/activesupport/test/core_ext/module/reachable_test.rb +41 -0
- data/rails/activesupport/test/core_ext/module/remove_method_test.rb +29 -0
- data/rails/activesupport/test/core_ext/module_test.rb +509 -0
- data/rails/activesupport/test/core_ext/name_error_test.rb +21 -0
- data/rails/activesupport/test/core_ext/numeric_ext_test.rb +392 -0
- data/rails/activesupport/test/core_ext/object/acts_like_test.rb +33 -0
- data/rails/activesupport/test/core_ext/object/blank_test.rb +36 -0
- data/rails/activesupport/test/core_ext/object/deep_dup_test.rb +53 -0
- data/rails/activesupport/test/core_ext/object/duplicable_test.rb +31 -0
- data/rails/activesupport/test/core_ext/object/inclusion_test.rb +59 -0
- data/rails/activesupport/test/core_ext/object/instance_variables_test.rb +31 -0
- data/rails/activesupport/test/core_ext/object/itself_test.rb +9 -0
- data/rails/activesupport/test/core_ext/object/json_cherry_pick_test.rb +42 -0
- data/rails/activesupport/test/core_ext/object/to_param_test.rb +37 -0
- data/rails/activesupport/test/core_ext/object/to_query_test.rb +82 -0
- data/rails/activesupport/test/core_ext/object/try_test.rb +99 -0
- data/rails/activesupport/test/core_ext/range_ext_test.rb +125 -0
- data/rails/activesupport/test/core_ext/regexp_ext_test.rb +10 -0
- data/rails/activesupport/test/core_ext/string_ext_test.rb +864 -0
- data/rails/activesupport/test/core_ext/struct_test.rb +10 -0
- data/rails/activesupport/test/core_ext/thread_test.rb +75 -0
- data/rails/activesupport/test/core_ext/time_ext_test.rb +901 -0
- data/rails/activesupport/test/core_ext/time_with_zone_test.rb +1121 -0
- data/rails/activesupport/test/core_ext/uri_ext_test.rb +13 -0
- data/rails/activesupport/test/dependencies/check_warnings.rb +2 -0
- data/rails/activesupport/test/dependencies/conflict.rb +1 -0
- data/rails/activesupport/test/dependencies/cross_site_depender.rb +3 -0
- data/rails/activesupport/test/dependencies/mutual_one.rb +4 -0
- data/rails/activesupport/test/dependencies/mutual_two.rb +4 -0
- data/rails/activesupport/test/dependencies/raises_exception.rb +3 -0
- data/rails/activesupport/test/dependencies/raises_exception_without_blame_file.rb +5 -0
- data/rails/activesupport/test/dependencies/requires_nonexistent0.rb +1 -0
- data/rails/activesupport/test/dependencies/requires_nonexistent1.rb +1 -0
- data/rails/activesupport/test/dependencies/service_one.rb +5 -0
- data/rails/activesupport/test/dependencies/service_two.rb +2 -0
- data/rails/activesupport/test/dependencies_test.rb +1059 -0
- data/rails/activesupport/test/dependencies_test_helpers.rb +28 -0
- data/rails/activesupport/test/deprecation/proxy_wrappers_test.rb +22 -0
- data/rails/activesupport/test/deprecation_test.rb +375 -0
- data/rails/activesupport/test/descendants_tracker_test_cases.rb +65 -0
- data/rails/activesupport/test/descendants_tracker_with_autoloading_test.rb +34 -0
- data/rails/activesupport/test/descendants_tracker_without_autoloading_test.rb +17 -0
- data/rails/activesupport/test/file_update_checker_test.rb +112 -0
- data/rails/activesupport/test/fixtures/autoload/another_class.rb +2 -0
- data/rails/activesupport/test/fixtures/autoload/some_class.rb +2 -0
- data/rails/activesupport/test/fixtures/xml/jdom_doctype.dtd +1 -0
- data/rails/activesupport/test/fixtures/xml/jdom_entities.txt +1 -0
- data/rails/activesupport/test/fixtures/xml/jdom_include.txt +1 -0
- data/rails/activesupport/test/gzip_test.rb +33 -0
- data/rails/activesupport/test/hash_with_indifferent_access_test.rb +10 -0
- data/rails/activesupport/test/i18n_test.rb +104 -0
- data/rails/activesupport/test/inflector_test.rb +537 -0
- data/rails/activesupport/test/inflector_test_cases.rb +324 -0
- data/rails/activesupport/test/json/decoding_test.rb +113 -0
- data/rails/activesupport/test/json/encoding_test.rb +547 -0
- data/rails/activesupport/test/key_generator_test.rb +62 -0
- data/rails/activesupport/test/lazy_load_hooks_test.rb +96 -0
- data/rails/activesupport/test/load_paths_test.rb +16 -0
- data/rails/activesupport/test/log_subscriber_test.rb +123 -0
- data/rails/activesupport/test/logger_test.rb +133 -0
- data/rails/activesupport/test/message_encryptor_test.rb +101 -0
- data/rails/activesupport/test/message_verifier_test.rb +86 -0
- data/rails/activesupport/test/multibyte_chars_test.rb +714 -0
- data/rails/activesupport/test/multibyte_conformance_test.rb +133 -0
- data/rails/activesupport/test/multibyte_proxy_test.rb +34 -0
- data/rails/activesupport/test/multibyte_test_helpers.rb +19 -0
- data/rails/activesupport/test/multibyte_unicode_database_test.rb +26 -0
- data/rails/activesupport/test/notifications/evented_notification_test.rb +87 -0
- data/rails/activesupport/test/notifications/instrumenter_test.rb +58 -0
- data/rails/activesupport/test/notifications_test.rb +266 -0
- data/rails/activesupport/test/number_helper_i18n_test.rb +148 -0
- data/rails/activesupport/test/number_helper_test.rb +396 -0
- data/rails/activesupport/test/option_merger_test.rb +95 -0
- data/rails/activesupport/test/ordered_hash_test.rb +322 -0
- data/rails/activesupport/test/ordered_options_test.rb +88 -0
- data/rails/activesupport/test/rescuable_test.rb +105 -0
- data/rails/activesupport/test/safe_buffer_test.rb +180 -0
- data/rails/activesupport/test/security_utils_test.rb +9 -0
- data/rails/activesupport/test/string_inquirer_test.rb +23 -0
- data/rails/activesupport/test/subscriber_test.rb +54 -0
- data/rails/activesupport/test/tagged_logging_test.rb +102 -0
- data/rails/activesupport/test/test_case_test.rb +221 -0
- data/rails/activesupport/test/testing/constant_lookup_test.rb +76 -0
- data/rails/activesupport/test/time_travel_test.rb +72 -0
- data/rails/activesupport/test/time_zone_test.rb +422 -0
- data/rails/activesupport/test/time_zone_test_helpers.rb +16 -0
- data/rails/activesupport/test/transliterate_test.rb +35 -0
- data/rails/activesupport/test/xml_mini/jdom_engine_test.rb +188 -0
- data/rails/activesupport/test/xml_mini/libxml_engine_test.rb +204 -0
- data/rails/activesupport/test/xml_mini/libxmlsax_engine_test.rb +195 -0
- data/rails/activesupport/test/xml_mini/nokogiri_engine_test.rb +217 -0
- data/rails/activesupport/test/xml_mini/nokogirisax_engine_test.rb +218 -0
- data/rails/activesupport/test/xml_mini/rexml_engine_test.rb +37 -0
- data/rails/activesupport/test/xml_mini_test.rb +353 -0
- data/rails/ci/travis.rb +145 -0
- data/rails/guides/.document +0 -0
- data/rails/guides/CHANGELOG.md +31 -0
- data/rails/guides/Rakefile +79 -0
- data/rails/guides/assets/images/akshaysurve.jpg +0 -0
- data/rails/guides/assets/images/belongs_to.png +0 -0
- data/rails/guides/assets/images/book_icon.gif +0 -0
- data/rails/guides/assets/images/bullet.gif +0 -0
- data/rails/guides/assets/images/chapters_icon.gif +0 -0
- data/rails/guides/assets/images/check_bullet.gif +0 -0
- data/rails/guides/assets/images/credits_pic_blank.gif +0 -0
- data/rails/guides/assets/images/csrf.png +0 -0
- data/rails/guides/assets/images/edge_badge.png +0 -0
- data/rails/guides/assets/images/favicon.ico +0 -0
- data/rails/guides/assets/images/feature_tile.gif +0 -0
- data/rails/guides/assets/images/footer_tile.gif +0 -0
- data/rails/guides/assets/images/fxn.png +0 -0
- data/rails/guides/assets/images/getting_started/article_with_comments.png +0 -0
- data/rails/guides/assets/images/getting_started/challenge.png +0 -0
- data/rails/guides/assets/images/getting_started/confirm_dialog.png +0 -0
- data/rails/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
- data/rails/guides/assets/images/getting_started/form_with_errors.png +0 -0
- data/rails/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
- data/rails/guides/assets/images/getting_started/new_article.png +0 -0
- data/rails/guides/assets/images/getting_started/rails_welcome.png +0 -0
- data/rails/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
- data/rails/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
- data/rails/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
- data/rails/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
- data/rails/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
- data/rails/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
- data/rails/guides/assets/images/grey_bullet.gif +0 -0
- data/rails/guides/assets/images/habtm.png +0 -0
- data/rails/guides/assets/images/has_many.png +0 -0
- data/rails/guides/assets/images/has_many_through.png +0 -0
- data/rails/guides/assets/images/has_one.png +0 -0
- data/rails/guides/assets/images/has_one_through.png +0 -0
- data/rails/guides/assets/images/header_backdrop.png +0 -0
- data/rails/guides/assets/images/header_tile.gif +0 -0
- data/rails/guides/assets/images/i18n/demo_html_safe.png +0 -0
- data/rails/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- data/rails/guides/assets/images/i18n/demo_translated_en.png +0 -0
- data/rails/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- data/rails/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- data/rails/guides/assets/images/i18n/demo_untranslated.png +0 -0
- data/rails/guides/assets/images/icons/README +5 -0
- data/rails/guides/assets/images/icons/callouts/1.png +0 -0
- data/rails/guides/assets/images/icons/callouts/10.png +0 -0
- data/rails/guides/assets/images/icons/callouts/11.png +0 -0
- data/rails/guides/assets/images/icons/callouts/12.png +0 -0
- data/rails/guides/assets/images/icons/callouts/13.png +0 -0
- data/rails/guides/assets/images/icons/callouts/14.png +0 -0
- data/rails/guides/assets/images/icons/callouts/15.png +0 -0
- data/rails/guides/assets/images/icons/callouts/2.png +0 -0
- data/rails/guides/assets/images/icons/callouts/3.png +0 -0
- data/rails/guides/assets/images/icons/callouts/4.png +0 -0
- data/rails/guides/assets/images/icons/callouts/5.png +0 -0
- data/rails/guides/assets/images/icons/callouts/6.png +0 -0
- data/rails/guides/assets/images/icons/callouts/7.png +0 -0
- data/rails/guides/assets/images/icons/callouts/8.png +0 -0
- data/rails/guides/assets/images/icons/callouts/9.png +0 -0
- data/rails/guides/assets/images/icons/caution.png +0 -0
- data/rails/guides/assets/images/icons/example.png +0 -0
- data/rails/guides/assets/images/icons/home.png +0 -0
- data/rails/guides/assets/images/icons/important.png +0 -0
- data/rails/guides/assets/images/icons/next.png +0 -0
- data/rails/guides/assets/images/icons/note.png +0 -0
- data/rails/guides/assets/images/icons/prev.png +0 -0
- data/rails/guides/assets/images/icons/tip.png +0 -0
- data/rails/guides/assets/images/icons/up.png +0 -0
- data/rails/guides/assets/images/icons/warning.png +0 -0
- data/rails/guides/assets/images/nav_arrow.gif +0 -0
- data/rails/guides/assets/images/oscardelben.jpg +0 -0
- data/rails/guides/assets/images/polymorphic.png +0 -0
- data/rails/guides/assets/images/radar.png +0 -0
- data/rails/guides/assets/images/rails4_features.png +0 -0
- data/rails/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/rails/guides/assets/images/rails_guides_logo.gif +0 -0
- data/rails/guides/assets/images/rails_logo_remix.gif +0 -0
- data/rails/guides/assets/images/session_fixation.png +0 -0
- data/rails/guides/assets/images/tab_grey.gif +0 -0
- data/rails/guides/assets/images/tab_info.gif +0 -0
- data/rails/guides/assets/images/tab_note.gif +0 -0
- data/rails/guides/assets/images/tab_red.gif +0 -0
- data/rails/guides/assets/images/tab_yellow.gif +0 -0
- data/rails/guides/assets/images/tab_yellow.png +0 -0
- data/rails/guides/assets/images/vijaydev.jpg +0 -0
- data/rails/guides/assets/javascripts/guides.js +59 -0
- data/rails/guides/assets/javascripts/jquery.min.js +4 -0
- data/rails/guides/assets/javascripts/responsive-tables.js +43 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +59 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +75 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +59 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +65 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +100 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +97 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +91 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +55 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +41 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +52 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +67 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +52 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +57 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +58 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +72 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +88 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +33 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +74 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +64 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +55 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +94 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +51 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +66 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +56 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +69 -0
- data/rails/guides/assets/javascripts/syntaxhighlighter/shCore.js +17 -0
- data/rails/guides/assets/stylesheets/fixes.css +16 -0
- data/rails/guides/assets/stylesheets/kindle.css +11 -0
- data/rails/guides/assets/stylesheets/main.css +713 -0
- data/rails/guides/assets/stylesheets/print.css +52 -0
- data/rails/guides/assets/stylesheets/reset.css +43 -0
- data/rails/guides/assets/stylesheets/responsive-tables.css +50 -0
- data/rails/guides/assets/stylesheets/style.css +13 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCore.css +226 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +328 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +331 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +339 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +324 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +328 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +324 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +324 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +324 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +117 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +120 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +128 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +113 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +117 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +113 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +113 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +113 -0
- data/rails/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +116 -0
- data/rails/guides/bug_report_templates/action_controller_gem.rb +47 -0
- data/rails/guides/bug_report_templates/action_controller_master.rb +54 -0
- data/rails/guides/bug_report_templates/active_record_gem.rb +40 -0
- data/rails/guides/bug_report_templates/active_record_master.rb +49 -0
- data/rails/guides/rails_guides/generator.rb +248 -0
- data/rails/guides/rails_guides/helpers.rb +53 -0
- data/rails/guides/rails_guides/indexer.rb +68 -0
- data/rails/guides/rails_guides/kindle.rb +119 -0
- data/rails/guides/rails_guides/levenshtein.rb +39 -0
- data/rails/guides/rails_guides/markdown/renderer.rb +82 -0
- data/rails/guides/rails_guides/markdown.rb +167 -0
- data/rails/guides/rails_guides.rb +63 -0
- data/rails/guides/source/2_2_release_notes.md +435 -0
- data/rails/guides/source/2_3_release_notes.md +621 -0
- data/rails/guides/source/3_0_release_notes.md +611 -0
- data/rails/guides/source/3_1_release_notes.md +559 -0
- data/rails/guides/source/3_2_release_notes.md +568 -0
- data/rails/guides/source/4_0_release_notes.md +279 -0
- data/rails/guides/source/4_1_release_notes.md +730 -0
- data/rails/guides/source/4_2_release_notes.md +853 -0
- data/rails/guides/source/_license.html.erb +2 -0
- data/rails/guides/source/_welcome.html.erb +19 -0
- data/rails/guides/source/action_controller_overview.md +1192 -0
- data/rails/guides/source/action_mailer_basics.md +754 -0
- data/rails/guides/source/action_view_overview.md +1620 -0
- data/rails/guides/source/active_job_basics.md +318 -0
- data/rails/guides/source/active_model_basics.md +554 -0
- data/rails/guides/source/active_record_basics.md +374 -0
- data/rails/guides/source/active_record_callbacks.md +413 -0
- data/rails/guides/source/active_record_migrations.md +1018 -0
- data/rails/guides/source/active_record_postgresql.md +433 -0
- data/rails/guides/source/active_record_querying.md +1783 -0
- data/rails/guides/source/active_record_validations.md +1178 -0
- data/rails/guides/source/active_support_core_extensions.md +3904 -0
- data/rails/guides/source/active_support_instrumentation.md +499 -0
- data/rails/guides/source/api_documentation_guidelines.md +361 -0
- data/rails/guides/source/asset_pipeline.md +1360 -0
- data/rails/guides/source/association_basics.md +2235 -0
- data/rails/guides/source/autoloading_and_reloading_constants.md +1310 -0
- data/rails/guides/source/caching_with_rails.md +379 -0
- data/rails/guides/source/command_line.md +625 -0
- data/rails/guides/source/configuring.md +1045 -0
- data/rails/guides/source/contributing_to_ruby_on_rails.md +628 -0
- data/rails/guides/source/credits.html.erb +80 -0
- data/rails/guides/source/debugging_rails_applications.md +861 -0
- data/rails/guides/source/development_dependencies_install.md +289 -0
- data/rails/guides/source/documents.yaml +205 -0
- data/rails/guides/source/engines.md +1412 -0
- data/rails/guides/source/form_helpers.md +1024 -0
- data/rails/guides/source/generators.md +676 -0
- data/rails/guides/source/getting_started.md +2091 -0
- data/rails/guides/source/i18n.md +1087 -0
- data/rails/guides/source/index.html.erb +28 -0
- data/rails/guides/source/initialization.md +704 -0
- data/rails/guides/source/kindle/copyright.html.erb +1 -0
- data/rails/guides/source/kindle/layout.html.erb +27 -0
- data/rails/guides/source/kindle/rails_guides.opf.erb +52 -0
- data/rails/guides/source/kindle/toc.html.erb +24 -0
- data/rails/guides/source/kindle/toc.ncx.erb +64 -0
- data/rails/guides/source/kindle/welcome.html.erb +5 -0
- data/rails/guides/source/layout.html.erb +143 -0
- data/rails/guides/source/layouts_and_rendering.md +1227 -0
- data/rails/guides/source/maintenance_policy.md +78 -0
- data/rails/guides/source/nested_model_forms.md +228 -0
- data/rails/guides/source/plugins.md +444 -0
- data/rails/guides/source/rails_application_templates.md +266 -0
- data/rails/guides/source/rails_on_rack.md +336 -0
- data/rails/guides/source/routing.md +1141 -0
- data/rails/guides/source/ruby_on_rails_guides_guidelines.md +127 -0
- data/rails/guides/source/security.md +1024 -0
- data/rails/guides/source/testing.md +1132 -0
- data/rails/guides/source/upgrading_ruby_on_rails.md +1170 -0
- data/rails/guides/source/working_with_javascript_in_rails.md +407 -0
- data/rails/guides/w3c_validator.rb +97 -0
- data/rails/install.rb +16 -0
- data/rails/load_paths.rb +3 -0
- data/rails/rails.gemspec +32 -0
- data/rails/railties/.gitignore +1 -0
- data/rails/railties/CHANGELOG.md +233 -0
- data/rails/railties/MIT-LICENSE +20 -0
- data/rails/railties/RDOC_MAIN.rdoc +73 -0
- data/rails/railties/README.rdoc +41 -0
- data/rails/railties/Rakefile +50 -0
- data/rails/railties/bin/rails +9 -0
- data/rails/railties/lib/rails/all.rb +16 -0
- data/rails/railties/lib/rails/api/task.rb +170 -0
- data/rails/railties/lib/rails/app_rails_loader.rb +63 -0
- data/rails/railties/lib/rails/application/bootstrap.rb +94 -0
- data/rails/railties/lib/rails/application/configuration.rb +208 -0
- data/rails/railties/lib/rails/application/default_middleware_stack.rb +103 -0
- data/rails/railties/lib/rails/application/finisher.rb +113 -0
- data/rails/railties/lib/rails/application/routes_reloader.rb +56 -0
- data/rails/railties/lib/rails/application.rb +539 -0
- data/rails/railties/lib/rails/application_controller.rb +16 -0
- data/rails/railties/lib/rails/backtrace_cleaner.rb +32 -0
- data/rails/railties/lib/rails/cli.rb +15 -0
- data/rails/railties/lib/rails/code_statistics.rb +104 -0
- data/rails/railties/lib/rails/code_statistics_calculator.rb +79 -0
- data/rails/railties/lib/rails/commands/application.rb +17 -0
- data/rails/railties/lib/rails/commands/commands_tasks.rb +169 -0
- data/rails/railties/lib/rails/commands/console.rb +113 -0
- data/rails/railties/lib/rails/commands/dbconsole.rb +192 -0
- data/rails/railties/lib/rails/commands/destroy.rb +11 -0
- data/rails/railties/lib/rails/commands/generate.rb +13 -0
- data/rails/railties/lib/rails/commands/plugin.rb +23 -0
- data/rails/railties/lib/rails/commands/runner.rb +63 -0
- data/rails/railties/lib/rails/commands/server.rb +148 -0
- data/rails/railties/lib/rails/commands.rb +17 -0
- data/rails/railties/lib/rails/configuration.rb +119 -0
- data/rails/railties/lib/rails/console/app.rb +32 -0
- data/rails/railties/lib/rails/console/helpers.rb +17 -0
- data/rails/railties/lib/rails/deprecation.rb +19 -0
- data/rails/railties/lib/rails/engine/commands.rb +41 -0
- data/rails/railties/lib/rails/engine/configuration.rb +91 -0
- data/rails/railties/lib/rails/engine/railties.rb +21 -0
- data/rails/railties/lib/rails/engine.rb +694 -0
- data/rails/railties/lib/rails/gem_version.rb +15 -0
- data/rails/railties/lib/rails/generators/actions/create_migration.rb +69 -0
- data/rails/railties/lib/rails/generators/actions.rb +282 -0
- data/rails/railties/lib/rails/generators/active_model.rb +78 -0
- data/rails/railties/lib/rails/generators/app_base.rb +354 -0
- data/rails/railties/lib/rails/generators/base.rb +379 -0
- data/rails/railties/lib/rails/generators/css/assets/assets_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
- data/rails/railties/lib/rails/generators/css/scaffold/scaffold_generator.rb +16 -0
- data/rails/railties/lib/rails/generators/erb/controller/controller_generator.rb +22 -0
- data/rails/railties/lib/rails/generators/erb/controller/templates/view.html.erb +2 -0
- data/rails/railties/lib/rails/generators/erb/mailer/mailer_generator.rb +36 -0
- data/rails/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb +5 -0
- data/rails/railties/lib/rails/generators/erb/mailer/templates/layout.text.erb +1 -0
- data/rails/railties/lib/rails/generators/erb/mailer/templates/view.html.erb +5 -0
- data/rails/railties/lib/rails/generators/erb/mailer/templates/view.text.erb +3 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/scaffold_generator.rb +31 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/templates/_form.html.erb +32 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/templates/edit.html.erb +6 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/templates/index.html.erb +31 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb +5 -0
- data/rails/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb +11 -0
- data/rails/railties/lib/rails/generators/erb.rb +25 -0
- data/rails/railties/lib/rails/generators/generated_attribute.rb +170 -0
- data/rails/railties/lib/rails/generators/js/assets/assets_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/js/assets/templates/javascript.js +2 -0
- data/rails/railties/lib/rails/generators/migration.rb +69 -0
- data/rails/railties/lib/rails/generators/model_helpers.rb +28 -0
- data/rails/railties/lib/rails/generators/named_base.rb +205 -0
- data/rails/railties/lib/rails/generators/rails/app/USAGE +15 -0
- data/rails/railties/lib/rails/generators/rails/app/app_generator.rb +407 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/Gemfile +46 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/README.rdoc +28 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/Rakefile +6 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +20 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +15 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +5 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +23 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/bin/bundle +2 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/bin/rails +3 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/bin/rake +3 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/bin/setup +28 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/application.rb +41 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/boot.rb +3 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +49 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +85 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +68 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +52 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +68 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +23 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +58 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +58 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +85 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +25 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml +68 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/environment.rb +5 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +45 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +83 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +42 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +11 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb +3 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb +4 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +16 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +4 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +3 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/locales/en.yml +23 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/routes.rb +56 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config/secrets.yml +22 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/config.ru +4 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/gitignore +19 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/public/404.html +67 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/public/422.html +67 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/public/500.html +66 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/public/robots.txt +5 -0
- data/rails/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb +12 -0
- data/rails/railties/lib/rails/generators/rails/assets/USAGE +20 -0
- data/rails/railties/lib/rails/generators/rails/assets/assets_generator.rb +25 -0
- data/rails/railties/lib/rails/generators/rails/assets/templates/javascript.js +2 -0
- data/rails/railties/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
- data/rails/railties/lib/rails/generators/rails/controller/USAGE +18 -0
- data/rails/railties/lib/rails/generators/rails/controller/controller_generator.rb +58 -0
- data/rails/railties/lib/rails/generators/rails/controller/templates/controller.rb +13 -0
- data/rails/railties/lib/rails/generators/rails/generator/USAGE +13 -0
- data/rails/railties/lib/rails/generators/rails/generator/generator_generator.rb +27 -0
- data/rails/railties/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
- data/rails/railties/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
- data/rails/railties/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
- data/rails/railties/lib/rails/generators/rails/helper/USAGE +13 -0
- data/rails/railties/lib/rails/generators/rails/helper/helper_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/rails/helper/templates/helper.rb +4 -0
- data/rails/railties/lib/rails/generators/rails/integration_test/USAGE +10 -0
- data/rails/railties/lib/rails/generators/rails/integration_test/integration_test_generator.rb +7 -0
- data/rails/railties/lib/rails/generators/rails/migration/USAGE +35 -0
- data/rails/railties/lib/rails/generators/rails/migration/migration_generator.rb +8 -0
- data/rails/railties/lib/rails/generators/rails/model/USAGE +109 -0
- data/rails/railties/lib/rails/generators/rails/model/model_generator.rb +12 -0
- data/rails/railties/lib/rails/generators/rails/plugin/USAGE +10 -0
- data/rails/railties/lib/rails/generators/rails/plugin/plugin_generator.rb +393 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec +27 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/Gemfile +51 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE +20 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/README.rdoc +3 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/Rakefile +29 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/app/controllers/%name%/application_controller.rb.tt +4 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/app/helpers/%name%/application_helper.rb.tt +4 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/app/mailers/.empty_directory +0 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/app/models/.empty_directory +0 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/app/views/layouts/%name%/application.html.erb.tt +14 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt +11 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/config/routes.rb +6 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/gitignore +10 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/lib/%name%/engine.rb +7 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/lib/%name%/version.rb +3 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/lib/%name%.rb +6 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/lib/tasks/%name%_tasks.rake +4 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/rails/application.rb +18 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/rails/boot.rb +5 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/rails/javascripts.js +13 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/rails/routes.rb +4 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +15 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/test/%name%_test.rb +7 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb +12 -0
- data/rails/railties/lib/rails/generators/rails/plugin/templates/test/test_helper.rb +24 -0
- data/rails/railties/lib/rails/generators/rails/resource/USAGE +23 -0
- data/rails/railties/lib/rails/generators/rails/resource/resource_generator.rb +20 -0
- data/rails/railties/lib/rails/generators/rails/resource_route/resource_route_generator.rb +50 -0
- data/rails/railties/lib/rails/generators/rails/scaffold/USAGE +41 -0
- data/rails/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb +32 -0
- data/rails/railties/lib/rails/generators/rails/scaffold/templates/scaffold.css +56 -0
- data/rails/railties/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
- data/rails/railties/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +28 -0
- data/rails/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +68 -0
- data/rails/railties/lib/rails/generators/rails/task/USAGE +9 -0
- data/rails/railties/lib/rails/generators/rails/task/task_generator.rb +12 -0
- data/rails/railties/lib/rails/generators/rails/task/templates/task.rb +8 -0
- data/rails/railties/lib/rails/generators/resource_helpers.rb +82 -0
- data/rails/railties/lib/rails/generators/test_case.rb +36 -0
- data/rails/railties/lib/rails/generators/test_unit/controller/controller_generator.rb +15 -0
- data/rails/railties/lib/rails/generators/test_unit/controller/templates/functional_test.rb +19 -0
- data/rails/railties/lib/rails/generators/test_unit/generator/generator_generator.rb +26 -0
- data/rails/railties/lib/rails/generators/test_unit/generator/templates/generator_test.rb +16 -0
- data/rails/railties/lib/rails/generators/test_unit/helper/helper_generator.rb +9 -0
- data/rails/railties/lib/rails/generators/test_unit/integration/integration_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb +7 -0
- data/rails/railties/lib/rails/generators/test_unit/job/job_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/test_unit/job/templates/unit_test.rb.erb +9 -0
- data/rails/railties/lib/rails/generators/test_unit/mailer/mailer_generator.rb +21 -0
- data/rails/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +21 -0
- data/rails/railties/lib/rails/generators/test_unit/mailer/templates/preview.rb +13 -0
- data/rails/railties/lib/rails/generators/test_unit/model/model_generator.rb +36 -0
- data/rails/railties/lib/rails/generators/test_unit/model/templates/fixtures.yml +27 -0
- data/rails/railties/lib/rails/generators/test_unit/model/templates/unit_test.rb +9 -0
- data/rails/railties/lib/rails/generators/test_unit/plugin/plugin_generator.rb +13 -0
- data/rails/railties/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
- data/rails/railties/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +2 -0
- data/rails/railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +33 -0
- data/rails/railties/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +51 -0
- data/rails/railties/lib/rails/generators/test_unit.rb +8 -0
- data/rails/railties/lib/rails/generators/testing/assertions.rb +123 -0
- data/rails/railties/lib/rails/generators/testing/behaviour.rb +123 -0
- data/rails/railties/lib/rails/generators/testing/setup_and_teardown.rb +18 -0
- data/rails/railties/lib/rails/generators.rb +373 -0
- data/rails/railties/lib/rails/info.rb +102 -0
- data/rails/railties/lib/rails/info_controller.rb +23 -0
- data/rails/railties/lib/rails/initializable.rb +89 -0
- data/rails/railties/lib/rails/mailers_controller.rb +73 -0
- data/rails/railties/lib/rails/paths.rb +211 -0
- data/rails/railties/lib/rails/rack/debugger.rb +24 -0
- data/rails/railties/lib/rails/rack/log_tailer.rb +38 -0
- data/rails/railties/lib/rails/rack/logger.rb +86 -0
- data/rails/railties/lib/rails/rack.rb +7 -0
- data/rails/railties/lib/rails/railtie/configurable.rb +35 -0
- data/rails/railties/lib/rails/railtie/configuration.rb +100 -0
- data/rails/railties/lib/rails/railtie.rb +250 -0
- data/rails/railties/lib/rails/ruby_version_check.rb +13 -0
- data/rails/railties/lib/rails/source_annotation_extractor.rb +133 -0
- data/rails/railties/lib/rails/tasks/annotations.rake +20 -0
- data/rails/railties/lib/rails/tasks/documentation.rake +70 -0
- data/rails/railties/lib/rails/tasks/engine.rake +72 -0
- data/rails/railties/lib/rails/tasks/framework.rake +66 -0
- data/rails/railties/lib/rails/tasks/log.rake +23 -0
- data/rails/railties/lib/rails/tasks/middleware.rake +7 -0
- data/rails/railties/lib/rails/tasks/misc.rake +60 -0
- data/rails/railties/lib/rails/tasks/routes.rake +7 -0
- data/rails/railties/lib/rails/tasks/statistics.rake +29 -0
- data/rails/railties/lib/rails/tasks/tmp.rake +45 -0
- data/rails/railties/lib/rails/tasks.rb +14 -0
- data/rails/railties/lib/rails/templates/layouts/application.html.erb +36 -0
- data/rails/railties/lib/rails/templates/rails/info/properties.html.erb +1 -0
- data/rails/railties/lib/rails/templates/rails/info/routes.html.erb +9 -0
- data/rails/railties/lib/rails/templates/rails/mailers/email.html.erb +105 -0
- data/rails/railties/lib/rails/templates/rails/mailers/index.html.erb +8 -0
- data/rails/railties/lib/rails/templates/rails/mailers/mailer.html.erb +6 -0
- data/rails/railties/lib/rails/templates/rails/welcome/index.html.erb +261 -0
- data/rails/railties/lib/rails/test_help.rb +43 -0
- data/rails/railties/lib/rails/test_unit/railtie.rb +18 -0
- data/rails/railties/lib/rails/test_unit/sub_test_task.rb +126 -0
- data/rails/railties/lib/rails/test_unit/testing.rake +66 -0
- data/rails/railties/lib/rails/version.rb +8 -0
- data/rails/railties/lib/rails/welcome_controller.rb +8 -0
- data/rails/railties/lib/rails.rb +93 -0
- data/rails/railties/railties.gemspec +33 -0
- data/rails/railties/test/abstract_unit.rb +53 -0
- data/rails/railties/test/app_rails_loader_test.rb +89 -0
- data/rails/railties/test/application/asset_debugging_test.rb +64 -0
- data/rails/railties/test/application/assets_test.rb +493 -0
- data/rails/railties/test/application/build_original_fullpath_test.rb +27 -0
- data/rails/railties/test/application/configuration/base_test.rb +37 -0
- data/rails/railties/test/application/configuration/custom_test.rb +22 -0
- data/rails/railties/test/application/configuration_test.rb +1344 -0
- data/rails/railties/test/application/console_test.rb +153 -0
- data/rails/railties/test/application/generators_test.rb +129 -0
- data/rails/railties/test/application/initializers/frameworks_test.rb +231 -0
- data/rails/railties/test/application/initializers/hooks_test.rb +90 -0
- data/rails/railties/test/application/initializers/i18n_test.rb +216 -0
- data/rails/railties/test/application/initializers/load_path_test.rb +110 -0
- data/rails/railties/test/application/initializers/notifications_test.rb +56 -0
- data/rails/railties/test/application/loading_test.rb +341 -0
- data/rails/railties/test/application/mailer_previews_test.rb +494 -0
- data/rails/railties/test/application/middleware/cache_test.rb +180 -0
- data/rails/railties/test/application/middleware/cookies_test.rb +47 -0
- data/rails/railties/test/application/middleware/exceptions_test.rb +126 -0
- data/rails/railties/test/application/middleware/remote_ip_test.rb +78 -0
- data/rails/railties/test/application/middleware/sendfile_test.rb +74 -0
- data/rails/railties/test/application/middleware/session_test.rb +343 -0
- data/rails/railties/test/application/middleware/static_test.rb +31 -0
- data/rails/railties/test/application/middleware_test.rb +240 -0
- data/rails/railties/test/application/multiple_applications_test.rb +176 -0
- data/rails/railties/test/application/paths_test.rb +83 -0
- data/rails/railties/test/application/rack/logger_test.rb +56 -0
- data/rails/railties/test/application/rackup_test.rb +43 -0
- data/rails/railties/test/application/rake/dbs_test.rb +233 -0
- data/rails/railties/test/application/rake/migrations_test.rb +204 -0
- data/rails/railties/test/application/rake/notes_test.rb +156 -0
- data/rails/railties/test/application/rake_test.rb +286 -0
- data/rails/railties/test/application/rendering_test.rb +45 -0
- data/rails/railties/test/application/routing_test.rb +468 -0
- data/rails/railties/test/application/runner_test.rb +89 -0
- data/rails/railties/test/application/test_runner_test.rb +331 -0
- data/rails/railties/test/application/test_test.rb +322 -0
- data/rails/railties/test/application/url_generation_test.rb +46 -0
- data/rails/railties/test/backtrace_cleaner_test.rb +24 -0
- data/rails/railties/test/code_statistics_calculator_test.rb +288 -0
- data/rails/railties/test/commands/console_test.rb +176 -0
- data/rails/railties/test/commands/dbconsole_test.rb +274 -0
- data/rails/railties/test/commands/server_test.rb +88 -0
- data/rails/railties/test/configuration/middleware_stack_proxy_test.rb +61 -0
- data/rails/railties/test/engine_test.rb +25 -0
- data/rails/railties/test/env_helpers.rb +30 -0
- data/rails/railties/test/fixtures/about_yml_plugins/bad_about_yml/about.yml +1 -0
- data/rails/railties/test/fixtures/about_yml_plugins/bad_about_yml/init.rb +1 -0
- data/rails/railties/test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb +1 -0
- data/rails/railties/test/fixtures/lib/create_test_dummy_template.rb +1 -0
- data/rails/railties/test/fixtures/lib/generators/active_record/fixjour_generator.rb +8 -0
- data/rails/railties/test/fixtures/lib/generators/fixjour_generator.rb +2 -0
- data/rails/railties/test/fixtures/lib/generators/model_generator.rb +1 -0
- data/rails/railties/test/fixtures/lib/generators/usage_template/USAGE +1 -0
- data/rails/railties/test/fixtures/lib/generators/usage_template/usage_template_generator.rb +5 -0
- data/rails/railties/test/fixtures/lib/rails/generators/foobar/foobar_generator.rb +4 -0
- data/rails/railties/test/fixtures/lib/template.rb +1 -0
- data/rails/railties/test/generators/actions_test.rb +259 -0
- data/rails/railties/test/generators/app_generator_test.rb +528 -0
- data/rails/railties/test/generators/argv_scrubber_test.rb +136 -0
- data/rails/railties/test/generators/assets_generator_test.rb +19 -0
- data/rails/railties/test/generators/controller_generator_test.rb +101 -0
- data/rails/railties/test/generators/create_migration_test.rb +134 -0
- data/rails/railties/test/generators/generated_attribute_test.rb +152 -0
- data/rails/railties/test/generators/generator_generator_test.rb +71 -0
- data/rails/railties/test/generators/generator_test.rb +85 -0
- data/rails/railties/test/generators/generators_test_helper.rb +52 -0
- data/rails/railties/test/generators/helper_generator_test.rb +39 -0
- data/rails/railties/test/generators/integration_test_generator_test.rb +12 -0
- data/rails/railties/test/generators/mailer_generator_test.rb +170 -0
- data/rails/railties/test/generators/migration_generator_test.rb +288 -0
- data/rails/railties/test/generators/model_generator_test.rb +446 -0
- data/rails/railties/test/generators/named_base_test.rb +145 -0
- data/rails/railties/test/generators/namespaced_generators_test.rb +398 -0
- data/rails/railties/test/generators/orm_test.rb +38 -0
- data/rails/railties/test/generators/plugin_generator_test.rb +442 -0
- data/rails/railties/test/generators/resource_generator_test.rb +88 -0
- data/rails/railties/test/generators/scaffold_controller_generator_test.rb +177 -0
- data/rails/railties/test/generators/scaffold_generator_test.rb +386 -0
- data/rails/railties/test/generators/shared_generator_tests.rb +144 -0
- data/rails/railties/test/generators/task_generator_test.rb +24 -0
- data/rails/railties/test/generators_test.rb +234 -0
- data/rails/railties/test/initializable_test.rb +230 -0
- data/rails/railties/test/isolation/abstract_unit.rb +359 -0
- data/rails/railties/test/path_generation_test.rb +88 -0
- data/rails/railties/test/paths_test.rb +234 -0
- data/rails/railties/test/rack_logger_test.rb +75 -0
- data/rails/railties/test/rails_info_controller_test.rb +57 -0
- data/rails/railties/test/rails_info_test.rb +71 -0
- data/rails/railties/test/railties/engine_test.rb +1317 -0
- data/rails/railties/test/railties/generators_test.rb +126 -0
- data/rails/railties/test/railties/mounted_engine_test.rb +274 -0
- data/rails/railties/test/railties/railtie_test.rb +208 -0
- data/rails/railties/test/test_info_test.rb +60 -0
- data/rails/railties/test/version_test.rb +12 -0
- data/rails/tasks/release.rb +128 -0
- data/rails/tools/README.md +7 -0
- data/rails/tools/console +7 -0
- data/rails/tools/line_statistics +42 -0
- data/rails/tools/profile +136 -0
- data/rails/version.rb +15 -0
- data/test/cases/lock_test.rb +29 -0
- data/test/helper.rb +30 -0
- data/test/integration/lock_queuing_test.rb +43 -0
- metadata +3007 -0
@@ -0,0 +1,1688 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
require 'active_support/core_ext/hash'
|
3
|
+
require 'bigdecimal'
|
4
|
+
require 'active_support/core_ext/string/access'
|
5
|
+
require 'active_support/ordered_hash'
|
6
|
+
require 'active_support/core_ext/object/conversions'
|
7
|
+
require 'active_support/core_ext/object/deep_dup'
|
8
|
+
require 'active_support/inflections'
|
9
|
+
|
10
|
+
class HashExtTest < ActiveSupport::TestCase
|
11
|
+
class IndifferentHash < ActiveSupport::HashWithIndifferentAccess
|
12
|
+
end
|
13
|
+
|
14
|
+
class SubclassingArray < Array
|
15
|
+
end
|
16
|
+
|
17
|
+
class SubclassingHash < Hash
|
18
|
+
end
|
19
|
+
|
20
|
+
class NonIndifferentHash < Hash
|
21
|
+
def nested_under_indifferent_access
|
22
|
+
self
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
class HashByConversion
|
27
|
+
def initialize(hash)
|
28
|
+
@hash = hash
|
29
|
+
end
|
30
|
+
|
31
|
+
def to_hash
|
32
|
+
@hash
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def setup
|
37
|
+
@strings = { 'a' => 1, 'b' => 2 }
|
38
|
+
@nested_strings = { 'a' => { 'b' => { 'c' => 3 } } }
|
39
|
+
@symbols = { :a => 1, :b => 2 }
|
40
|
+
@nested_symbols = { :a => { :b => { :c => 3 } } }
|
41
|
+
@mixed = { :a => 1, 'b' => 2 }
|
42
|
+
@nested_mixed = { 'a' => { :b => { 'c' => 3 } } }
|
43
|
+
@fixnums = { 0 => 1, 1 => 2 }
|
44
|
+
@nested_fixnums = { 0 => { 1 => { 2 => 3} } }
|
45
|
+
@illegal_symbols = { [] => 3 }
|
46
|
+
@nested_illegal_symbols = { [] => { [] => 3} }
|
47
|
+
@upcase_strings = { 'A' => 1, 'B' => 2 }
|
48
|
+
@nested_upcase_strings = { 'A' => { 'B' => { 'C' => 3 } } }
|
49
|
+
@string_array_of_hashes = { 'a' => [ { 'b' => 2 }, { 'c' => 3 }, 4 ] }
|
50
|
+
@symbol_array_of_hashes = { :a => [ { :b => 2 }, { :c => 3 }, 4 ] }
|
51
|
+
@mixed_array_of_hashes = { :a => [ { :b => 2 }, { 'c' => 3 }, 4 ] }
|
52
|
+
@upcase_array_of_hashes = { 'A' => [ { 'B' => 2 }, { 'C' => 3 }, 4 ] }
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_methods
|
56
|
+
h = {}
|
57
|
+
assert_respond_to h, :transform_keys
|
58
|
+
assert_respond_to h, :transform_keys!
|
59
|
+
assert_respond_to h, :deep_transform_keys
|
60
|
+
assert_respond_to h, :deep_transform_keys!
|
61
|
+
assert_respond_to h, :symbolize_keys
|
62
|
+
assert_respond_to h, :symbolize_keys!
|
63
|
+
assert_respond_to h, :deep_symbolize_keys
|
64
|
+
assert_respond_to h, :deep_symbolize_keys!
|
65
|
+
assert_respond_to h, :stringify_keys
|
66
|
+
assert_respond_to h, :stringify_keys!
|
67
|
+
assert_respond_to h, :deep_stringify_keys
|
68
|
+
assert_respond_to h, :deep_stringify_keys!
|
69
|
+
assert_respond_to h, :to_options
|
70
|
+
assert_respond_to h, :to_options!
|
71
|
+
assert_respond_to h, :compact
|
72
|
+
assert_respond_to h, :compact!
|
73
|
+
assert_respond_to h, :except
|
74
|
+
assert_respond_to h, :except!
|
75
|
+
end
|
76
|
+
|
77
|
+
def test_transform_keys
|
78
|
+
assert_equal @upcase_strings, @strings.transform_keys{ |key| key.to_s.upcase }
|
79
|
+
assert_equal @upcase_strings, @symbols.transform_keys{ |key| key.to_s.upcase }
|
80
|
+
assert_equal @upcase_strings, @mixed.transform_keys{ |key| key.to_s.upcase }
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_transform_keys_not_mutates
|
84
|
+
transformed_hash = @mixed.dup
|
85
|
+
transformed_hash.transform_keys{ |key| key.to_s.upcase }
|
86
|
+
assert_equal @mixed, transformed_hash
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_deep_transform_keys
|
90
|
+
assert_equal @nested_upcase_strings, @nested_symbols.deep_transform_keys{ |key| key.to_s.upcase }
|
91
|
+
assert_equal @nested_upcase_strings, @nested_strings.deep_transform_keys{ |key| key.to_s.upcase }
|
92
|
+
assert_equal @nested_upcase_strings, @nested_mixed.deep_transform_keys{ |key| key.to_s.upcase }
|
93
|
+
assert_equal @upcase_array_of_hashes, @string_array_of_hashes.deep_transform_keys{ |key| key.to_s.upcase }
|
94
|
+
assert_equal @upcase_array_of_hashes, @symbol_array_of_hashes.deep_transform_keys{ |key| key.to_s.upcase }
|
95
|
+
assert_equal @upcase_array_of_hashes, @mixed_array_of_hashes.deep_transform_keys{ |key| key.to_s.upcase }
|
96
|
+
end
|
97
|
+
|
98
|
+
def test_deep_transform_keys_not_mutates
|
99
|
+
transformed_hash = @nested_mixed.deep_dup
|
100
|
+
transformed_hash.deep_transform_keys{ |key| key.to_s.upcase }
|
101
|
+
assert_equal @nested_mixed, transformed_hash
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_transform_keys!
|
105
|
+
assert_equal @upcase_strings, @symbols.dup.transform_keys!{ |key| key.to_s.upcase }
|
106
|
+
assert_equal @upcase_strings, @strings.dup.transform_keys!{ |key| key.to_s.upcase }
|
107
|
+
assert_equal @upcase_strings, @mixed.dup.transform_keys!{ |key| key.to_s.upcase }
|
108
|
+
end
|
109
|
+
|
110
|
+
def test_transform_keys_with_bang_mutates
|
111
|
+
transformed_hash = @mixed.dup
|
112
|
+
transformed_hash.transform_keys!{ |key| key.to_s.upcase }
|
113
|
+
assert_equal @upcase_strings, transformed_hash
|
114
|
+
assert_equal @mixed, { :a => 1, "b" => 2 }
|
115
|
+
end
|
116
|
+
|
117
|
+
def test_deep_transform_keys!
|
118
|
+
assert_equal @nested_upcase_strings, @nested_symbols.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
119
|
+
assert_equal @nested_upcase_strings, @nested_strings.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
120
|
+
assert_equal @nested_upcase_strings, @nested_mixed.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
121
|
+
assert_equal @upcase_array_of_hashes, @string_array_of_hashes.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
122
|
+
assert_equal @upcase_array_of_hashes, @symbol_array_of_hashes.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
123
|
+
assert_equal @upcase_array_of_hashes, @mixed_array_of_hashes.deep_dup.deep_transform_keys!{ |key| key.to_s.upcase }
|
124
|
+
end
|
125
|
+
|
126
|
+
def test_deep_transform_keys_with_bang_mutates
|
127
|
+
transformed_hash = @nested_mixed.deep_dup
|
128
|
+
transformed_hash.deep_transform_keys!{ |key| key.to_s.upcase }
|
129
|
+
assert_equal @nested_upcase_strings, transformed_hash
|
130
|
+
assert_equal @nested_mixed, { 'a' => { :b => { 'c' => 3 } } }
|
131
|
+
end
|
132
|
+
|
133
|
+
def test_symbolize_keys
|
134
|
+
assert_equal @symbols, @symbols.symbolize_keys
|
135
|
+
assert_equal @symbols, @strings.symbolize_keys
|
136
|
+
assert_equal @symbols, @mixed.symbolize_keys
|
137
|
+
end
|
138
|
+
|
139
|
+
def test_symbolize_keys_not_mutates
|
140
|
+
transformed_hash = @mixed.dup
|
141
|
+
transformed_hash.symbolize_keys
|
142
|
+
assert_equal @mixed, transformed_hash
|
143
|
+
end
|
144
|
+
|
145
|
+
def test_deep_symbolize_keys
|
146
|
+
assert_equal @nested_symbols, @nested_symbols.deep_symbolize_keys
|
147
|
+
assert_equal @nested_symbols, @nested_strings.deep_symbolize_keys
|
148
|
+
assert_equal @nested_symbols, @nested_mixed.deep_symbolize_keys
|
149
|
+
assert_equal @symbol_array_of_hashes, @string_array_of_hashes.deep_symbolize_keys
|
150
|
+
assert_equal @symbol_array_of_hashes, @symbol_array_of_hashes.deep_symbolize_keys
|
151
|
+
assert_equal @symbol_array_of_hashes, @mixed_array_of_hashes.deep_symbolize_keys
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_deep_symbolize_keys_not_mutates
|
155
|
+
transformed_hash = @nested_mixed.deep_dup
|
156
|
+
transformed_hash.deep_symbolize_keys
|
157
|
+
assert_equal @nested_mixed, transformed_hash
|
158
|
+
end
|
159
|
+
|
160
|
+
def test_symbolize_keys!
|
161
|
+
assert_equal @symbols, @symbols.dup.symbolize_keys!
|
162
|
+
assert_equal @symbols, @strings.dup.symbolize_keys!
|
163
|
+
assert_equal @symbols, @mixed.dup.symbolize_keys!
|
164
|
+
end
|
165
|
+
|
166
|
+
def test_symbolize_keys_with_bang_mutates
|
167
|
+
transformed_hash = @mixed.dup
|
168
|
+
transformed_hash.deep_symbolize_keys!
|
169
|
+
assert_equal @symbols, transformed_hash
|
170
|
+
assert_equal @mixed, { :a => 1, "b" => 2 }
|
171
|
+
end
|
172
|
+
|
173
|
+
def test_deep_symbolize_keys!
|
174
|
+
assert_equal @nested_symbols, @nested_symbols.deep_dup.deep_symbolize_keys!
|
175
|
+
assert_equal @nested_symbols, @nested_strings.deep_dup.deep_symbolize_keys!
|
176
|
+
assert_equal @nested_symbols, @nested_mixed.deep_dup.deep_symbolize_keys!
|
177
|
+
assert_equal @symbol_array_of_hashes, @string_array_of_hashes.deep_dup.deep_symbolize_keys!
|
178
|
+
assert_equal @symbol_array_of_hashes, @symbol_array_of_hashes.deep_dup.deep_symbolize_keys!
|
179
|
+
assert_equal @symbol_array_of_hashes, @mixed_array_of_hashes.deep_dup.deep_symbolize_keys!
|
180
|
+
end
|
181
|
+
|
182
|
+
def test_deep_symbolize_keys_with_bang_mutates
|
183
|
+
transformed_hash = @nested_mixed.deep_dup
|
184
|
+
transformed_hash.deep_symbolize_keys!
|
185
|
+
assert_equal @nested_symbols, transformed_hash
|
186
|
+
assert_equal @nested_mixed, { 'a' => { :b => { 'c' => 3 } } }
|
187
|
+
end
|
188
|
+
|
189
|
+
def test_symbolize_keys_preserves_keys_that_cant_be_symbolized
|
190
|
+
assert_equal @illegal_symbols, @illegal_symbols.symbolize_keys
|
191
|
+
assert_equal @illegal_symbols, @illegal_symbols.dup.symbolize_keys!
|
192
|
+
end
|
193
|
+
|
194
|
+
def test_deep_symbolize_keys_preserves_keys_that_cant_be_symbolized
|
195
|
+
assert_equal @nested_illegal_symbols, @nested_illegal_symbols.deep_symbolize_keys
|
196
|
+
assert_equal @nested_illegal_symbols, @nested_illegal_symbols.deep_dup.deep_symbolize_keys!
|
197
|
+
end
|
198
|
+
|
199
|
+
def test_symbolize_keys_preserves_fixnum_keys
|
200
|
+
assert_equal @fixnums, @fixnums.symbolize_keys
|
201
|
+
assert_equal @fixnums, @fixnums.dup.symbolize_keys!
|
202
|
+
end
|
203
|
+
|
204
|
+
def test_deep_symbolize_keys_preserves_fixnum_keys
|
205
|
+
assert_equal @nested_fixnums, @nested_fixnums.deep_symbolize_keys
|
206
|
+
assert_equal @nested_fixnums, @nested_fixnums.deep_dup.deep_symbolize_keys!
|
207
|
+
end
|
208
|
+
|
209
|
+
def test_stringify_keys
|
210
|
+
assert_equal @strings, @symbols.stringify_keys
|
211
|
+
assert_equal @strings, @strings.stringify_keys
|
212
|
+
assert_equal @strings, @mixed.stringify_keys
|
213
|
+
end
|
214
|
+
|
215
|
+
def test_stringify_keys_not_mutates
|
216
|
+
transformed_hash = @mixed.dup
|
217
|
+
transformed_hash.stringify_keys
|
218
|
+
assert_equal @mixed, transformed_hash
|
219
|
+
end
|
220
|
+
|
221
|
+
def test_deep_stringify_keys
|
222
|
+
assert_equal @nested_strings, @nested_symbols.deep_stringify_keys
|
223
|
+
assert_equal @nested_strings, @nested_strings.deep_stringify_keys
|
224
|
+
assert_equal @nested_strings, @nested_mixed.deep_stringify_keys
|
225
|
+
assert_equal @string_array_of_hashes, @string_array_of_hashes.deep_stringify_keys
|
226
|
+
assert_equal @string_array_of_hashes, @symbol_array_of_hashes.deep_stringify_keys
|
227
|
+
assert_equal @string_array_of_hashes, @mixed_array_of_hashes.deep_stringify_keys
|
228
|
+
end
|
229
|
+
|
230
|
+
def test_deep_stringify_keys_not_mutates
|
231
|
+
transformed_hash = @nested_mixed.deep_dup
|
232
|
+
transformed_hash.deep_stringify_keys
|
233
|
+
assert_equal @nested_mixed, transformed_hash
|
234
|
+
end
|
235
|
+
|
236
|
+
def test_stringify_keys!
|
237
|
+
assert_equal @strings, @symbols.dup.stringify_keys!
|
238
|
+
assert_equal @strings, @strings.dup.stringify_keys!
|
239
|
+
assert_equal @strings, @mixed.dup.stringify_keys!
|
240
|
+
end
|
241
|
+
|
242
|
+
def test_stringify_keys_with_bang_mutates
|
243
|
+
transformed_hash = @mixed.dup
|
244
|
+
transformed_hash.stringify_keys!
|
245
|
+
assert_equal @strings, transformed_hash
|
246
|
+
assert_equal @mixed, { :a => 1, "b" => 2 }
|
247
|
+
end
|
248
|
+
|
249
|
+
def test_deep_stringify_keys!
|
250
|
+
assert_equal @nested_strings, @nested_symbols.deep_dup.deep_stringify_keys!
|
251
|
+
assert_equal @nested_strings, @nested_strings.deep_dup.deep_stringify_keys!
|
252
|
+
assert_equal @nested_strings, @nested_mixed.deep_dup.deep_stringify_keys!
|
253
|
+
assert_equal @string_array_of_hashes, @string_array_of_hashes.deep_dup.deep_stringify_keys!
|
254
|
+
assert_equal @string_array_of_hashes, @symbol_array_of_hashes.deep_dup.deep_stringify_keys!
|
255
|
+
assert_equal @string_array_of_hashes, @mixed_array_of_hashes.deep_dup.deep_stringify_keys!
|
256
|
+
end
|
257
|
+
|
258
|
+
def test_deep_stringify_keys_with_bang_mutates
|
259
|
+
transformed_hash = @nested_mixed.deep_dup
|
260
|
+
transformed_hash.deep_stringify_keys!
|
261
|
+
assert_equal @nested_strings, transformed_hash
|
262
|
+
assert_equal @nested_mixed, { 'a' => { :b => { 'c' => 3 } } }
|
263
|
+
end
|
264
|
+
|
265
|
+
def test_symbolize_keys_for_hash_with_indifferent_access
|
266
|
+
assert_instance_of Hash, @symbols.with_indifferent_access.symbolize_keys
|
267
|
+
assert_equal @symbols, @symbols.with_indifferent_access.symbolize_keys
|
268
|
+
assert_equal @symbols, @strings.with_indifferent_access.symbolize_keys
|
269
|
+
assert_equal @symbols, @mixed.with_indifferent_access.symbolize_keys
|
270
|
+
end
|
271
|
+
|
272
|
+
def test_deep_symbolize_keys_for_hash_with_indifferent_access
|
273
|
+
assert_instance_of Hash, @nested_symbols.with_indifferent_access.deep_symbolize_keys
|
274
|
+
assert_equal @nested_symbols, @nested_symbols.with_indifferent_access.deep_symbolize_keys
|
275
|
+
assert_equal @nested_symbols, @nested_strings.with_indifferent_access.deep_symbolize_keys
|
276
|
+
assert_equal @nested_symbols, @nested_mixed.with_indifferent_access.deep_symbolize_keys
|
277
|
+
end
|
278
|
+
|
279
|
+
|
280
|
+
def test_symbolize_keys_bang_for_hash_with_indifferent_access
|
281
|
+
assert_raise(NoMethodError) { @symbols.with_indifferent_access.dup.symbolize_keys! }
|
282
|
+
assert_raise(NoMethodError) { @strings.with_indifferent_access.dup.symbolize_keys! }
|
283
|
+
assert_raise(NoMethodError) { @mixed.with_indifferent_access.dup.symbolize_keys! }
|
284
|
+
end
|
285
|
+
|
286
|
+
def test_deep_symbolize_keys_bang_for_hash_with_indifferent_access
|
287
|
+
assert_raise(NoMethodError) { @nested_symbols.with_indifferent_access.deep_dup.deep_symbolize_keys! }
|
288
|
+
assert_raise(NoMethodError) { @nested_strings.with_indifferent_access.deep_dup.deep_symbolize_keys! }
|
289
|
+
assert_raise(NoMethodError) { @nested_mixed.with_indifferent_access.deep_dup.deep_symbolize_keys! }
|
290
|
+
end
|
291
|
+
|
292
|
+
def test_symbolize_keys_preserves_keys_that_cant_be_symbolized_for_hash_with_indifferent_access
|
293
|
+
assert_equal @illegal_symbols, @illegal_symbols.with_indifferent_access.symbolize_keys
|
294
|
+
assert_raise(NoMethodError) { @illegal_symbols.with_indifferent_access.dup.symbolize_keys! }
|
295
|
+
end
|
296
|
+
|
297
|
+
def test_deep_symbolize_keys_preserves_keys_that_cant_be_symbolized_for_hash_with_indifferent_access
|
298
|
+
assert_equal @nested_illegal_symbols, @nested_illegal_symbols.with_indifferent_access.deep_symbolize_keys
|
299
|
+
assert_raise(NoMethodError) { @nested_illegal_symbols.with_indifferent_access.deep_dup.deep_symbolize_keys! }
|
300
|
+
end
|
301
|
+
|
302
|
+
def test_symbolize_keys_preserves_fixnum_keys_for_hash_with_indifferent_access
|
303
|
+
assert_equal @fixnums, @fixnums.with_indifferent_access.symbolize_keys
|
304
|
+
assert_raise(NoMethodError) { @fixnums.with_indifferent_access.dup.symbolize_keys! }
|
305
|
+
end
|
306
|
+
|
307
|
+
def test_deep_symbolize_keys_preserves_fixnum_keys_for_hash_with_indifferent_access
|
308
|
+
assert_equal @nested_fixnums, @nested_fixnums.with_indifferent_access.deep_symbolize_keys
|
309
|
+
assert_raise(NoMethodError) { @nested_fixnums.with_indifferent_access.deep_dup.deep_symbolize_keys! }
|
310
|
+
end
|
311
|
+
|
312
|
+
def test_stringify_keys_for_hash_with_indifferent_access
|
313
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, @symbols.with_indifferent_access.stringify_keys
|
314
|
+
assert_equal @strings, @symbols.with_indifferent_access.stringify_keys
|
315
|
+
assert_equal @strings, @strings.with_indifferent_access.stringify_keys
|
316
|
+
assert_equal @strings, @mixed.with_indifferent_access.stringify_keys
|
317
|
+
end
|
318
|
+
|
319
|
+
def test_deep_stringify_keys_for_hash_with_indifferent_access
|
320
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, @nested_symbols.with_indifferent_access.deep_stringify_keys
|
321
|
+
assert_equal @nested_strings, @nested_symbols.with_indifferent_access.deep_stringify_keys
|
322
|
+
assert_equal @nested_strings, @nested_strings.with_indifferent_access.deep_stringify_keys
|
323
|
+
assert_equal @nested_strings, @nested_mixed.with_indifferent_access.deep_stringify_keys
|
324
|
+
end
|
325
|
+
|
326
|
+
def test_stringify_keys_bang_for_hash_with_indifferent_access
|
327
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, @symbols.with_indifferent_access.dup.stringify_keys!
|
328
|
+
assert_equal @strings, @symbols.with_indifferent_access.dup.stringify_keys!
|
329
|
+
assert_equal @strings, @strings.with_indifferent_access.dup.stringify_keys!
|
330
|
+
assert_equal @strings, @mixed.with_indifferent_access.dup.stringify_keys!
|
331
|
+
end
|
332
|
+
|
333
|
+
def test_deep_stringify_keys_bang_for_hash_with_indifferent_access
|
334
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, @nested_symbols.with_indifferent_access.dup.deep_stringify_keys!
|
335
|
+
assert_equal @nested_strings, @nested_symbols.with_indifferent_access.deep_dup.deep_stringify_keys!
|
336
|
+
assert_equal @nested_strings, @nested_strings.with_indifferent_access.deep_dup.deep_stringify_keys!
|
337
|
+
assert_equal @nested_strings, @nested_mixed.with_indifferent_access.deep_dup.deep_stringify_keys!
|
338
|
+
end
|
339
|
+
|
340
|
+
def test_nested_under_indifferent_access
|
341
|
+
foo = { "foo" => SubclassingHash.new.tap { |h| h["bar"] = "baz" } }.with_indifferent_access
|
342
|
+
assert_kind_of ActiveSupport::HashWithIndifferentAccess, foo["foo"]
|
343
|
+
|
344
|
+
foo = { "foo" => NonIndifferentHash.new.tap { |h| h["bar"] = "baz" } }.with_indifferent_access
|
345
|
+
assert_kind_of NonIndifferentHash, foo["foo"]
|
346
|
+
|
347
|
+
foo = { "foo" => IndifferentHash.new.tap { |h| h["bar"] = "baz" } }.with_indifferent_access
|
348
|
+
assert_kind_of IndifferentHash, foo["foo"]
|
349
|
+
end
|
350
|
+
|
351
|
+
def test_indifferent_assorted
|
352
|
+
@strings = @strings.with_indifferent_access
|
353
|
+
@symbols = @symbols.with_indifferent_access
|
354
|
+
@mixed = @mixed.with_indifferent_access
|
355
|
+
|
356
|
+
assert_equal 'a', @strings.__send__(:convert_key, :a)
|
357
|
+
|
358
|
+
assert_equal 1, @strings.fetch('a')
|
359
|
+
assert_equal 1, @strings.fetch(:a.to_s)
|
360
|
+
assert_equal 1, @strings.fetch(:a)
|
361
|
+
|
362
|
+
hashes = { :@strings => @strings, :@symbols => @symbols, :@mixed => @mixed }
|
363
|
+
method_map = { :'[]' => 1, :fetch => 1, :values_at => [1],
|
364
|
+
:has_key? => true, :include? => true, :key? => true,
|
365
|
+
:member? => true }
|
366
|
+
|
367
|
+
hashes.each do |name, hash|
|
368
|
+
method_map.sort_by { |m| m.to_s }.each do |meth, expected|
|
369
|
+
assert_equal(expected, hash.__send__(meth, 'a'),
|
370
|
+
"Calling #{name}.#{meth} 'a'")
|
371
|
+
assert_equal(expected, hash.__send__(meth, :a),
|
372
|
+
"Calling #{name}.#{meth} :a")
|
373
|
+
end
|
374
|
+
end
|
375
|
+
|
376
|
+
assert_equal [1, 2], @strings.values_at('a', 'b')
|
377
|
+
assert_equal [1, 2], @strings.values_at(:a, :b)
|
378
|
+
assert_equal [1, 2], @symbols.values_at('a', 'b')
|
379
|
+
assert_equal [1, 2], @symbols.values_at(:a, :b)
|
380
|
+
assert_equal [1, 2], @mixed.values_at('a', 'b')
|
381
|
+
assert_equal [1, 2], @mixed.values_at(:a, :b)
|
382
|
+
end
|
383
|
+
|
384
|
+
def test_indifferent_reading
|
385
|
+
hash = HashWithIndifferentAccess.new
|
386
|
+
hash["a"] = 1
|
387
|
+
hash["b"] = true
|
388
|
+
hash["c"] = false
|
389
|
+
hash["d"] = nil
|
390
|
+
|
391
|
+
assert_equal 1, hash[:a]
|
392
|
+
assert_equal true, hash[:b]
|
393
|
+
assert_equal false, hash[:c]
|
394
|
+
assert_equal nil, hash[:d]
|
395
|
+
assert_equal nil, hash[:e]
|
396
|
+
end
|
397
|
+
|
398
|
+
def test_indifferent_reading_with_nonnil_default
|
399
|
+
hash = HashWithIndifferentAccess.new(1)
|
400
|
+
hash["a"] = 1
|
401
|
+
hash["b"] = true
|
402
|
+
hash["c"] = false
|
403
|
+
hash["d"] = nil
|
404
|
+
|
405
|
+
assert_equal 1, hash[:a]
|
406
|
+
assert_equal true, hash[:b]
|
407
|
+
assert_equal false, hash[:c]
|
408
|
+
assert_equal nil, hash[:d]
|
409
|
+
assert_equal 1, hash[:e]
|
410
|
+
end
|
411
|
+
|
412
|
+
def test_indifferent_writing
|
413
|
+
hash = HashWithIndifferentAccess.new
|
414
|
+
hash[:a] = 1
|
415
|
+
hash['b'] = 2
|
416
|
+
hash[3] = 3
|
417
|
+
|
418
|
+
assert_equal hash['a'], 1
|
419
|
+
assert_equal hash['b'], 2
|
420
|
+
assert_equal hash[:a], 1
|
421
|
+
assert_equal hash[:b], 2
|
422
|
+
assert_equal hash[3], 3
|
423
|
+
end
|
424
|
+
|
425
|
+
def test_indifferent_update
|
426
|
+
hash = HashWithIndifferentAccess.new
|
427
|
+
hash[:a] = 'a'
|
428
|
+
hash['b'] = 'b'
|
429
|
+
|
430
|
+
updated_with_strings = hash.update(@strings)
|
431
|
+
updated_with_symbols = hash.update(@symbols)
|
432
|
+
updated_with_mixed = hash.update(@mixed)
|
433
|
+
|
434
|
+
assert_equal updated_with_strings[:a], 1
|
435
|
+
assert_equal updated_with_strings['a'], 1
|
436
|
+
assert_equal updated_with_strings['b'], 2
|
437
|
+
|
438
|
+
assert_equal updated_with_symbols[:a], 1
|
439
|
+
assert_equal updated_with_symbols['b'], 2
|
440
|
+
assert_equal updated_with_symbols[:b], 2
|
441
|
+
|
442
|
+
assert_equal updated_with_mixed[:a], 1
|
443
|
+
assert_equal updated_with_mixed['b'], 2
|
444
|
+
|
445
|
+
assert [updated_with_strings, updated_with_symbols, updated_with_mixed].all? { |h| h.keys.size == 2 }
|
446
|
+
end
|
447
|
+
|
448
|
+
def test_update_with_to_hash_conversion
|
449
|
+
hash = HashWithIndifferentAccess.new
|
450
|
+
hash.update HashByConversion.new({ :a => 1 })
|
451
|
+
assert_equal hash['a'], 1
|
452
|
+
end
|
453
|
+
|
454
|
+
def test_indifferent_merging
|
455
|
+
hash = HashWithIndifferentAccess.new
|
456
|
+
hash[:a] = 'failure'
|
457
|
+
hash['b'] = 'failure'
|
458
|
+
|
459
|
+
other = { 'a' => 1, :b => 2 }
|
460
|
+
|
461
|
+
merged = hash.merge(other)
|
462
|
+
|
463
|
+
assert_equal HashWithIndifferentAccess, merged.class
|
464
|
+
assert_equal 1, merged[:a]
|
465
|
+
assert_equal 2, merged['b']
|
466
|
+
|
467
|
+
hash.update(other)
|
468
|
+
|
469
|
+
assert_equal 1, hash[:a]
|
470
|
+
assert_equal 2, hash['b']
|
471
|
+
end
|
472
|
+
|
473
|
+
def test_merge_with_to_hash_conversion
|
474
|
+
hash = HashWithIndifferentAccess.new
|
475
|
+
merged = hash.merge HashByConversion.new({ :a => 1 })
|
476
|
+
assert_equal merged['a'], 1
|
477
|
+
end
|
478
|
+
|
479
|
+
def test_indifferent_replace
|
480
|
+
hash = HashWithIndifferentAccess.new
|
481
|
+
hash[:a] = 42
|
482
|
+
|
483
|
+
replaced = hash.replace(b: 12)
|
484
|
+
|
485
|
+
assert hash.key?('b')
|
486
|
+
assert !hash.key?(:a)
|
487
|
+
assert_equal 12, hash[:b]
|
488
|
+
assert_same hash, replaced
|
489
|
+
end
|
490
|
+
|
491
|
+
def test_replace_with_to_hash_conversion
|
492
|
+
hash = HashWithIndifferentAccess.new
|
493
|
+
hash[:a] = 42
|
494
|
+
|
495
|
+
replaced = hash.replace(HashByConversion.new(b: 12))
|
496
|
+
|
497
|
+
assert hash.key?('b')
|
498
|
+
assert !hash.key?(:a)
|
499
|
+
assert_equal 12, hash[:b]
|
500
|
+
assert_same hash, replaced
|
501
|
+
end
|
502
|
+
|
503
|
+
def test_indifferent_merging_with_block
|
504
|
+
hash = HashWithIndifferentAccess.new
|
505
|
+
hash[:a] = 1
|
506
|
+
hash['b'] = 3
|
507
|
+
|
508
|
+
other = { 'a' => 4, :b => 2, 'c' => 10 }
|
509
|
+
|
510
|
+
merged = hash.merge(other) { |key, old, new| old > new ? old : new }
|
511
|
+
|
512
|
+
assert_equal HashWithIndifferentAccess, merged.class
|
513
|
+
assert_equal 4, merged[:a]
|
514
|
+
assert_equal 3, merged['b']
|
515
|
+
assert_equal 10, merged[:c]
|
516
|
+
|
517
|
+
other_indifferent = HashWithIndifferentAccess.new('a' => 9, :b => 2)
|
518
|
+
|
519
|
+
merged = hash.merge(other_indifferent) { |key, old, new| old + new }
|
520
|
+
|
521
|
+
assert_equal HashWithIndifferentAccess, merged.class
|
522
|
+
assert_equal 10, merged[:a]
|
523
|
+
assert_equal 5, merged[:b]
|
524
|
+
end
|
525
|
+
|
526
|
+
def test_indifferent_reverse_merging
|
527
|
+
hash = HashWithIndifferentAccess.new('some' => 'value', 'other' => 'value')
|
528
|
+
hash.reverse_merge!(:some => 'noclobber', :another => 'clobber')
|
529
|
+
assert_equal 'value', hash[:some]
|
530
|
+
assert_equal 'clobber', hash[:another]
|
531
|
+
end
|
532
|
+
|
533
|
+
def test_indifferent_deleting
|
534
|
+
get_hash = proc{ { :a => 'foo' }.with_indifferent_access }
|
535
|
+
hash = get_hash.call
|
536
|
+
assert_equal hash.delete(:a), 'foo'
|
537
|
+
assert_equal hash.delete(:a), nil
|
538
|
+
hash = get_hash.call
|
539
|
+
assert_equal hash.delete('a'), 'foo'
|
540
|
+
assert_equal hash.delete('a'), nil
|
541
|
+
end
|
542
|
+
|
543
|
+
def test_indifferent_select
|
544
|
+
hash = ActiveSupport::HashWithIndifferentAccess.new(@strings).select {|k,v| v == 1}
|
545
|
+
|
546
|
+
assert_equal({ 'a' => 1 }, hash)
|
547
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, hash
|
548
|
+
end
|
549
|
+
|
550
|
+
def test_indifferent_select_returns_a_hash_when_unchanged
|
551
|
+
hash = ActiveSupport::HashWithIndifferentAccess.new(@strings).select {|k,v| true}
|
552
|
+
|
553
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, hash
|
554
|
+
end
|
555
|
+
|
556
|
+
def test_indifferent_select_bang
|
557
|
+
indifferent_strings = ActiveSupport::HashWithIndifferentAccess.new(@strings)
|
558
|
+
indifferent_strings.select! {|k,v| v == 1}
|
559
|
+
|
560
|
+
assert_equal({ 'a' => 1 }, indifferent_strings)
|
561
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, indifferent_strings
|
562
|
+
end
|
563
|
+
|
564
|
+
def test_indifferent_reject
|
565
|
+
hash = ActiveSupport::HashWithIndifferentAccess.new(@strings).reject {|k,v| v != 1}
|
566
|
+
|
567
|
+
assert_equal({ 'a' => 1 }, hash)
|
568
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, hash
|
569
|
+
end
|
570
|
+
|
571
|
+
def test_indifferent_reject_bang
|
572
|
+
indifferent_strings = ActiveSupport::HashWithIndifferentAccess.new(@strings)
|
573
|
+
indifferent_strings.reject! {|k,v| v != 1}
|
574
|
+
|
575
|
+
assert_equal({ 'a' => 1 }, indifferent_strings)
|
576
|
+
assert_instance_of ActiveSupport::HashWithIndifferentAccess, indifferent_strings
|
577
|
+
end
|
578
|
+
|
579
|
+
def test_indifferent_to_hash
|
580
|
+
# Should convert to a Hash with String keys.
|
581
|
+
assert_equal @strings, @mixed.with_indifferent_access.to_hash
|
582
|
+
|
583
|
+
# Should preserve the default value.
|
584
|
+
mixed_with_default = @mixed.dup
|
585
|
+
mixed_with_default.default = '1234'
|
586
|
+
roundtrip = mixed_with_default.with_indifferent_access.to_hash
|
587
|
+
assert_equal @strings, roundtrip
|
588
|
+
assert_equal '1234', roundtrip.default
|
589
|
+
|
590
|
+
# Ensure nested hashes are not HashWithIndiffereneAccess
|
591
|
+
new_to_hash = @nested_mixed.with_indifferent_access.to_hash
|
592
|
+
assert_not new_to_hash.instance_of?(HashWithIndifferentAccess)
|
593
|
+
assert_not new_to_hash["a"].instance_of?(HashWithIndifferentAccess)
|
594
|
+
assert_not new_to_hash["a"]["b"].instance_of?(HashWithIndifferentAccess)
|
595
|
+
end
|
596
|
+
|
597
|
+
def test_lookup_returns_the_same_object_that_is_stored_in_hash_indifferent_access
|
598
|
+
hash = HashWithIndifferentAccess.new {|h, k| h[k] = []}
|
599
|
+
hash[:a] << 1
|
600
|
+
|
601
|
+
assert_equal [1], hash[:a]
|
602
|
+
end
|
603
|
+
|
604
|
+
def test_with_indifferent_access_has_no_side_effects_on_existing_hash
|
605
|
+
hash = {content: [{:foo => :bar, 'bar' => 'baz'}]}
|
606
|
+
hash.with_indifferent_access
|
607
|
+
|
608
|
+
assert_equal [:foo, "bar"], hash[:content].first.keys
|
609
|
+
end
|
610
|
+
|
611
|
+
def test_indifferent_hash_with_array_of_hashes
|
612
|
+
hash = { "urls" => { "url" => [ { "address" => "1" }, { "address" => "2" } ] }}.with_indifferent_access
|
613
|
+
assert_equal "1", hash[:urls][:url].first[:address]
|
614
|
+
|
615
|
+
hash = hash.to_hash
|
616
|
+
assert_not hash.instance_of?(HashWithIndifferentAccess)
|
617
|
+
assert_not hash["urls"].instance_of?(HashWithIndifferentAccess)
|
618
|
+
assert_not hash["urls"]["url"].first.instance_of?(HashWithIndifferentAccess)
|
619
|
+
end
|
620
|
+
|
621
|
+
def test_should_preserve_array_subclass_when_value_is_array
|
622
|
+
array = SubclassingArray.new
|
623
|
+
array << { "address" => "1" }
|
624
|
+
hash = { "urls" => { "url" => array }}.with_indifferent_access
|
625
|
+
assert_equal SubclassingArray, hash[:urls][:url].class
|
626
|
+
end
|
627
|
+
|
628
|
+
def test_should_preserve_array_class_when_hash_value_is_frozen_array
|
629
|
+
array = SubclassingArray.new
|
630
|
+
array << { "address" => "1" }
|
631
|
+
hash = { "urls" => { "url" => array.freeze }}.with_indifferent_access
|
632
|
+
assert_equal SubclassingArray, hash[:urls][:url].class
|
633
|
+
end
|
634
|
+
|
635
|
+
def test_stringify_and_symbolize_keys_on_indifferent_preserves_hash
|
636
|
+
h = HashWithIndifferentAccess.new
|
637
|
+
h[:first] = 1
|
638
|
+
h = h.stringify_keys
|
639
|
+
assert_equal 1, h['first']
|
640
|
+
h = HashWithIndifferentAccess.new
|
641
|
+
h['first'] = 1
|
642
|
+
h = h.symbolize_keys
|
643
|
+
assert_equal 1, h[:first]
|
644
|
+
end
|
645
|
+
|
646
|
+
def test_deep_stringify_and_deep_symbolize_keys_on_indifferent_preserves_hash
|
647
|
+
h = HashWithIndifferentAccess.new
|
648
|
+
h[:first] = 1
|
649
|
+
h = h.deep_stringify_keys
|
650
|
+
assert_equal 1, h['first']
|
651
|
+
h = HashWithIndifferentAccess.new
|
652
|
+
h['first'] = 1
|
653
|
+
h = h.deep_symbolize_keys
|
654
|
+
assert_equal 1, h[:first]
|
655
|
+
end
|
656
|
+
|
657
|
+
def test_to_options_on_indifferent_preserves_hash
|
658
|
+
h = HashWithIndifferentAccess.new
|
659
|
+
h['first'] = 1
|
660
|
+
h.to_options!
|
661
|
+
assert_equal 1, h['first']
|
662
|
+
end
|
663
|
+
|
664
|
+
def test_to_options_on_indifferent_preserves_works_as_hash_with_dup
|
665
|
+
h = HashWithIndifferentAccess.new({ a: { b: 'b' } })
|
666
|
+
dup = h.dup
|
667
|
+
|
668
|
+
dup[:a][:c] = 'c'
|
669
|
+
assert_equal 'c', h[:a][:c]
|
670
|
+
end
|
671
|
+
|
672
|
+
def test_indifferent_sub_hashes
|
673
|
+
h = {'user' => {'id' => 5}}.with_indifferent_access
|
674
|
+
['user', :user].each {|user| [:id, 'id'].each {|id| assert_equal 5, h[user][id], "h[#{user.inspect}][#{id.inspect}] should be 5"}}
|
675
|
+
|
676
|
+
h = {:user => {:id => 5}}.with_indifferent_access
|
677
|
+
['user', :user].each {|user| [:id, 'id'].each {|id| assert_equal 5, h[user][id], "h[#{user.inspect}][#{id.inspect}] should be 5"}}
|
678
|
+
end
|
679
|
+
|
680
|
+
def test_indifferent_duplication
|
681
|
+
# Should preserve default value
|
682
|
+
h = HashWithIndifferentAccess.new
|
683
|
+
h.default = '1234'
|
684
|
+
assert_equal h.default, h.dup.default
|
685
|
+
|
686
|
+
# Should preserve class for subclasses
|
687
|
+
h = IndifferentHash.new
|
688
|
+
assert_equal h.class, h.dup.class
|
689
|
+
end
|
690
|
+
|
691
|
+
def test_assert_valid_keys
|
692
|
+
assert_nothing_raised do
|
693
|
+
{ :failure => "stuff", :funny => "business" }.assert_valid_keys([ :failure, :funny ])
|
694
|
+
{ :failure => "stuff", :funny => "business" }.assert_valid_keys(:failure, :funny)
|
695
|
+
end
|
696
|
+
# not all valid keys are required to be present
|
697
|
+
assert_nothing_raised do
|
698
|
+
{ :failure => "stuff", :funny => "business" }.assert_valid_keys([ :failure, :funny, :sunny ])
|
699
|
+
{ :failure => "stuff", :funny => "business" }.assert_valid_keys(:failure, :funny, :sunny)
|
700
|
+
end
|
701
|
+
|
702
|
+
exception = assert_raise ArgumentError do
|
703
|
+
{ :failore => "stuff", :funny => "business" }.assert_valid_keys([ :failure, :funny ])
|
704
|
+
end
|
705
|
+
assert_equal "Unknown key: :failore. Valid keys are: :failure, :funny", exception.message
|
706
|
+
|
707
|
+
exception = assert_raise ArgumentError do
|
708
|
+
{ :failore => "stuff", :funny => "business" }.assert_valid_keys(:failure, :funny)
|
709
|
+
end
|
710
|
+
assert_equal "Unknown key: :failore. Valid keys are: :failure, :funny", exception.message
|
711
|
+
|
712
|
+
exception = assert_raise ArgumentError do
|
713
|
+
{ :failore => "stuff", :funny => "business" }.assert_valid_keys([ :failure ])
|
714
|
+
end
|
715
|
+
assert_equal "Unknown key: :failore. Valid keys are: :failure", exception.message
|
716
|
+
|
717
|
+
exception = assert_raise ArgumentError do
|
718
|
+
{ :failore => "stuff", :funny => "business" }.assert_valid_keys(:failure)
|
719
|
+
end
|
720
|
+
assert_equal "Unknown key: :failore. Valid keys are: :failure", exception.message
|
721
|
+
end
|
722
|
+
|
723
|
+
def test_assorted_keys_not_stringified
|
724
|
+
original = {Object.new => 2, 1 => 2, [] => true}
|
725
|
+
indiff = original.with_indifferent_access
|
726
|
+
assert(!indiff.keys.any? {|k| k.kind_of? String}, "A key was converted to a string!")
|
727
|
+
end
|
728
|
+
|
729
|
+
def test_deep_merge
|
730
|
+
hash_1 = { :a => "a", :b => "b", :c => { :c1 => "c1", :c2 => "c2", :c3 => { :d1 => "d1" } } }
|
731
|
+
hash_2 = { :a => 1, :c => { :c1 => 2, :c3 => { :d2 => "d2" } } }
|
732
|
+
expected = { :a => 1, :b => "b", :c => { :c1 => 2, :c2 => "c2", :c3 => { :d1 => "d1", :d2 => "d2" } } }
|
733
|
+
assert_equal expected, hash_1.deep_merge(hash_2)
|
734
|
+
|
735
|
+
hash_1.deep_merge!(hash_2)
|
736
|
+
assert_equal expected, hash_1
|
737
|
+
end
|
738
|
+
|
739
|
+
def test_deep_merge_with_block
|
740
|
+
hash_1 = { :a => "a", :b => "b", :c => { :c1 => "c1", :c2 => "c2", :c3 => { :d1 => "d1" } } }
|
741
|
+
hash_2 = { :a => 1, :c => { :c1 => 2, :c3 => { :d2 => "d2" } } }
|
742
|
+
expected = { :a => [:a, "a", 1], :b => "b", :c => { :c1 => [:c1, "c1", 2], :c2 => "c2", :c3 => { :d1 => "d1", :d2 => "d2" } } }
|
743
|
+
assert_equal(expected, hash_1.deep_merge(hash_2) { |k,o,n| [k, o, n] })
|
744
|
+
|
745
|
+
hash_1.deep_merge!(hash_2) { |k,o,n| [k, o, n] }
|
746
|
+
assert_equal expected, hash_1
|
747
|
+
end
|
748
|
+
|
749
|
+
def test_deep_merge_with_falsey_values
|
750
|
+
hash_1 = { e: false }
|
751
|
+
hash_2 = { e: 'e' }
|
752
|
+
expected = { e: [:e, false, 'e'] }
|
753
|
+
assert_equal(expected, hash_1.deep_merge(hash_2) { |k, o, n| [k, o, n] })
|
754
|
+
|
755
|
+
hash_1.deep_merge!(hash_2) { |k, o, n| [k, o, n] }
|
756
|
+
assert_equal expected, hash_1
|
757
|
+
end
|
758
|
+
|
759
|
+
def test_deep_merge_on_indifferent_access
|
760
|
+
hash_1 = HashWithIndifferentAccess.new({ :a => "a", :b => "b", :c => { :c1 => "c1", :c2 => "c2", :c3 => { :d1 => "d1" } } })
|
761
|
+
hash_2 = HashWithIndifferentAccess.new({ :a => 1, :c => { :c1 => 2, :c3 => { :d2 => "d2" } } })
|
762
|
+
hash_3 = { :a => 1, :c => { :c1 => 2, :c3 => { :d2 => "d2" } } }
|
763
|
+
expected = { "a" => 1, "b" => "b", "c" => { "c1" => 2, "c2" => "c2", "c3" => { "d1" => "d1", "d2" => "d2" } } }
|
764
|
+
assert_equal expected, hash_1.deep_merge(hash_2)
|
765
|
+
assert_equal expected, hash_1.deep_merge(hash_3)
|
766
|
+
|
767
|
+
hash_1.deep_merge!(hash_2)
|
768
|
+
assert_equal expected, hash_1
|
769
|
+
end
|
770
|
+
|
771
|
+
def test_store_on_indifferent_access
|
772
|
+
hash = HashWithIndifferentAccess.new
|
773
|
+
hash.store(:test1, 1)
|
774
|
+
hash.store('test1', 11)
|
775
|
+
hash[:test2] = 2
|
776
|
+
hash['test2'] = 22
|
777
|
+
expected = { "test1" => 11, "test2" => 22 }
|
778
|
+
assert_equal expected, hash
|
779
|
+
end
|
780
|
+
|
781
|
+
def test_constructor_on_indifferent_access
|
782
|
+
hash = HashWithIndifferentAccess[:foo, 1]
|
783
|
+
assert_equal 1, hash[:foo]
|
784
|
+
assert_equal 1, hash['foo']
|
785
|
+
hash[:foo] = 3
|
786
|
+
assert_equal 3, hash[:foo]
|
787
|
+
assert_equal 3, hash['foo']
|
788
|
+
end
|
789
|
+
|
790
|
+
def test_reverse_merge
|
791
|
+
defaults = { :a => "x", :b => "y", :c => 10 }.freeze
|
792
|
+
options = { :a => 1, :b => 2 }
|
793
|
+
expected = { :a => 1, :b => 2, :c => 10 }
|
794
|
+
|
795
|
+
# Should merge defaults into options, creating a new hash.
|
796
|
+
assert_equal expected, options.reverse_merge(defaults)
|
797
|
+
assert_not_equal expected, options
|
798
|
+
|
799
|
+
# Should merge! defaults into options, replacing options.
|
800
|
+
merged = options.dup
|
801
|
+
assert_equal expected, merged.reverse_merge!(defaults)
|
802
|
+
assert_equal expected, merged
|
803
|
+
|
804
|
+
# Should be an alias for reverse_merge!
|
805
|
+
merged = options.dup
|
806
|
+
assert_equal expected, merged.reverse_update(defaults)
|
807
|
+
assert_equal expected, merged
|
808
|
+
end
|
809
|
+
|
810
|
+
def test_slice
|
811
|
+
original = { :a => 'x', :b => 'y', :c => 10 }
|
812
|
+
expected = { :a => 'x', :b => 'y' }
|
813
|
+
|
814
|
+
# Should return a new hash with only the given keys.
|
815
|
+
assert_equal expected, original.slice(:a, :b)
|
816
|
+
assert_not_equal expected, original
|
817
|
+
end
|
818
|
+
|
819
|
+
def test_slice_inplace
|
820
|
+
original = { :a => 'x', :b => 'y', :c => 10 }
|
821
|
+
expected = { :c => 10 }
|
822
|
+
|
823
|
+
# Should replace the hash with only the given keys.
|
824
|
+
assert_equal expected, original.slice!(:a, :b)
|
825
|
+
end
|
826
|
+
|
827
|
+
def test_slice_with_an_array_key
|
828
|
+
original = { :a => 'x', :b => 'y', :c => 10, [:a, :b] => "an array key" }
|
829
|
+
expected = { [:a, :b] => "an array key", :c => 10 }
|
830
|
+
|
831
|
+
# Should return a new hash with only the given keys when given an array key.
|
832
|
+
assert_equal expected, original.slice([:a, :b], :c)
|
833
|
+
assert_not_equal expected, original
|
834
|
+
end
|
835
|
+
|
836
|
+
def test_slice_inplace_with_an_array_key
|
837
|
+
original = { :a => 'x', :b => 'y', :c => 10, [:a, :b] => "an array key" }
|
838
|
+
expected = { :a => 'x', :b => 'y' }
|
839
|
+
|
840
|
+
# Should replace the hash with only the given keys when given an array key.
|
841
|
+
assert_equal expected, original.slice!([:a, :b], :c)
|
842
|
+
end
|
843
|
+
|
844
|
+
def test_slice_with_splatted_keys
|
845
|
+
original = { :a => 'x', :b => 'y', :c => 10, [:a, :b] => "an array key" }
|
846
|
+
expected = { :a => 'x', :b => "y" }
|
847
|
+
|
848
|
+
# Should grab each of the splatted keys.
|
849
|
+
assert_equal expected, original.slice(*[:a, :b])
|
850
|
+
end
|
851
|
+
|
852
|
+
def test_indifferent_slice
|
853
|
+
original = { :a => 'x', :b => 'y', :c => 10 }.with_indifferent_access
|
854
|
+
expected = { :a => 'x', :b => 'y' }.with_indifferent_access
|
855
|
+
|
856
|
+
[['a', 'b'], [:a, :b]].each do |keys|
|
857
|
+
# Should return a new hash with only the given keys.
|
858
|
+
assert_equal expected, original.slice(*keys), keys.inspect
|
859
|
+
assert_not_equal expected, original
|
860
|
+
end
|
861
|
+
end
|
862
|
+
|
863
|
+
def test_indifferent_slice_inplace
|
864
|
+
original = { :a => 'x', :b => 'y', :c => 10 }.with_indifferent_access
|
865
|
+
expected = { :c => 10 }.with_indifferent_access
|
866
|
+
|
867
|
+
[['a', 'b'], [:a, :b]].each do |keys|
|
868
|
+
# Should replace the hash with only the given keys.
|
869
|
+
copy = original.dup
|
870
|
+
assert_equal expected, copy.slice!(*keys)
|
871
|
+
end
|
872
|
+
end
|
873
|
+
|
874
|
+
def test_indifferent_slice_access_with_symbols
|
875
|
+
original = {'login' => 'bender', 'password' => 'shiny', 'stuff' => 'foo'}
|
876
|
+
original = original.with_indifferent_access
|
877
|
+
|
878
|
+
slice = original.slice(:login, :password)
|
879
|
+
|
880
|
+
assert_equal 'bender', slice[:login]
|
881
|
+
assert_equal 'bender', slice['login']
|
882
|
+
end
|
883
|
+
|
884
|
+
def test_slice_bang_does_not_override_default
|
885
|
+
hash = Hash.new(0)
|
886
|
+
hash.update(a: 1, b: 2)
|
887
|
+
|
888
|
+
hash.slice!(:a)
|
889
|
+
|
890
|
+
assert_equal 0, hash[:c]
|
891
|
+
end
|
892
|
+
|
893
|
+
def test_slice_bang_does_not_override_default_proc
|
894
|
+
hash = Hash.new { |h, k| h[k] = [] }
|
895
|
+
hash.update(a: 1, b: 2)
|
896
|
+
|
897
|
+
hash.slice!(:a)
|
898
|
+
|
899
|
+
assert_equal [], hash[:c]
|
900
|
+
end
|
901
|
+
|
902
|
+
def test_extract
|
903
|
+
original = {:a => 1, :b => 2, :c => 3, :d => 4}
|
904
|
+
expected = {:a => 1, :b => 2}
|
905
|
+
remaining = {:c => 3, :d => 4}
|
906
|
+
|
907
|
+
assert_equal expected, original.extract!(:a, :b, :x)
|
908
|
+
assert_equal remaining, original
|
909
|
+
end
|
910
|
+
|
911
|
+
def test_extract_nils
|
912
|
+
original = {:a => nil, :b => nil}
|
913
|
+
expected = {:a => nil}
|
914
|
+
extracted = original.extract!(:a, :x)
|
915
|
+
|
916
|
+
assert_equal expected, extracted
|
917
|
+
assert_equal nil, extracted[:a]
|
918
|
+
assert_equal nil, extracted[:x]
|
919
|
+
end
|
920
|
+
|
921
|
+
def test_indifferent_extract
|
922
|
+
original = {:a => 1, 'b' => 2, :c => 3, 'd' => 4}.with_indifferent_access
|
923
|
+
expected = {:a => 1, :b => 2}.with_indifferent_access
|
924
|
+
remaining = {:c => 3, :d => 4}.with_indifferent_access
|
925
|
+
|
926
|
+
[['a', 'b'], [:a, :b]].each do |keys|
|
927
|
+
copy = original.dup
|
928
|
+
assert_equal expected, copy.extract!(*keys)
|
929
|
+
assert_equal remaining, copy
|
930
|
+
end
|
931
|
+
end
|
932
|
+
|
933
|
+
def test_except
|
934
|
+
original = { :a => 'x', :b => 'y', :c => 10 }
|
935
|
+
expected = { :a => 'x', :b => 'y' }
|
936
|
+
|
937
|
+
# Should return a new hash without the given keys.
|
938
|
+
assert_equal expected, original.except(:c)
|
939
|
+
assert_not_equal expected, original
|
940
|
+
|
941
|
+
# Should replace the hash without the given keys.
|
942
|
+
assert_equal expected, original.except!(:c)
|
943
|
+
assert_equal expected, original
|
944
|
+
end
|
945
|
+
|
946
|
+
def test_except_with_more_than_one_argument
|
947
|
+
original = { :a => 'x', :b => 'y', :c => 10 }
|
948
|
+
expected = { :a => 'x' }
|
949
|
+
|
950
|
+
assert_equal expected, original.except(:b, :c)
|
951
|
+
|
952
|
+
assert_equal expected, original.except!(:b, :c)
|
953
|
+
assert_equal expected, original
|
954
|
+
end
|
955
|
+
|
956
|
+
def test_except_with_original_frozen
|
957
|
+
original = { :a => 'x', :b => 'y' }
|
958
|
+
original.freeze
|
959
|
+
assert_nothing_raised { original.except(:a) }
|
960
|
+
|
961
|
+
assert_raise(RuntimeError) { original.except!(:a) }
|
962
|
+
end
|
963
|
+
|
964
|
+
def test_except_with_mocha_expectation_on_original
|
965
|
+
original = { :a => 'x', :b => 'y' }
|
966
|
+
original.expects(:delete).never
|
967
|
+
original.except(:a)
|
968
|
+
end
|
969
|
+
|
970
|
+
def test_compact
|
971
|
+
hash_contain_nil_value = @symbols.merge(z: nil)
|
972
|
+
hash_with_only_nil_values = { a: nil, b: nil }
|
973
|
+
|
974
|
+
h = hash_contain_nil_value.dup
|
975
|
+
assert_equal(@symbols, h.compact)
|
976
|
+
assert_equal(hash_contain_nil_value, h)
|
977
|
+
|
978
|
+
h = hash_with_only_nil_values.dup
|
979
|
+
assert_equal({}, h.compact)
|
980
|
+
assert_equal(hash_with_only_nil_values, h)
|
981
|
+
end
|
982
|
+
|
983
|
+
def test_compact!
|
984
|
+
hash_contain_nil_value = @symbols.merge(z: nil)
|
985
|
+
hash_with_only_nil_values = { a: nil, b: nil }
|
986
|
+
|
987
|
+
h = hash_contain_nil_value.dup
|
988
|
+
assert_equal(@symbols, h.compact!)
|
989
|
+
assert_equal(@symbols, h)
|
990
|
+
|
991
|
+
h = hash_with_only_nil_values.dup
|
992
|
+
assert_equal({}, h.compact!)
|
993
|
+
assert_equal({}, h)
|
994
|
+
end
|
995
|
+
|
996
|
+
def test_new_with_to_hash_conversion
|
997
|
+
hash = HashWithIndifferentAccess.new(HashByConversion.new(a: 1))
|
998
|
+
assert hash.key?('a')
|
999
|
+
assert_equal 1, hash[:a]
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class IWriteMyOwnXML
|
1004
|
+
def to_xml(options = {})
|
1005
|
+
options[:indent] ||= 2
|
1006
|
+
xml = options[:builder] ||= Builder::XmlMarkup.new(:indent => options[:indent])
|
1007
|
+
xml.instruct! unless options[:skip_instruct]
|
1008
|
+
xml.level_one do
|
1009
|
+
xml.tag!(:second_level, 'content')
|
1010
|
+
end
|
1011
|
+
end
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class HashExtToParamTests < ActiveSupport::TestCase
|
1015
|
+
class ToParam < String
|
1016
|
+
def to_param
|
1017
|
+
"#{self}-1"
|
1018
|
+
end
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
def test_string_hash
|
1022
|
+
assert_equal '', {}.to_param
|
1023
|
+
assert_equal 'hello=world', { :hello => "world" }.to_param
|
1024
|
+
assert_equal 'hello=10', { "hello" => 10 }.to_param
|
1025
|
+
assert_equal 'hello=world&say_bye=true', {:hello => "world", "say_bye" => true}.to_param
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
def test_number_hash
|
1029
|
+
assert_equal '10=20&30=40&50=60', {10 => 20, 30 => 40, 50 => 60}.to_param
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
def test_to_param_hash
|
1033
|
+
assert_equal 'custom-1=param-1&custom2-1=param2-1', {ToParam.new('custom') => ToParam.new('param'), ToParam.new('custom2') => ToParam.new('param2')}.to_param
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
def test_to_param_hash_escapes_its_keys_and_values
|
1037
|
+
assert_equal 'param+1=A+string+with+%2F+characters+%26+that+should+be+%3F+escaped', { 'param 1' => 'A string with / characters & that should be ? escaped' }.to_param
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
def test_to_param_orders_by_key_in_ascending_order
|
1041
|
+
assert_equal 'a=2&b=1&c=0', Hash[*%w(b 1 c 0 a 2)].to_param
|
1042
|
+
end
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class HashToXmlTest < ActiveSupport::TestCase
|
1046
|
+
def setup
|
1047
|
+
@xml_options = { :root => :person, :skip_instruct => true, :indent => 0 }
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
def test_one_level
|
1051
|
+
xml = { :name => "David", :street => "Paulina" }.to_xml(@xml_options)
|
1052
|
+
assert_equal "<person>", xml.first(8)
|
1053
|
+
assert xml.include?(%(<street>Paulina</street>))
|
1054
|
+
assert xml.include?(%(<name>David</name>))
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
def test_one_level_dasherize_false
|
1058
|
+
xml = { :name => "David", :street_name => "Paulina" }.to_xml(@xml_options.merge(:dasherize => false))
|
1059
|
+
assert_equal "<person>", xml.first(8)
|
1060
|
+
assert xml.include?(%(<street_name>Paulina</street_name>))
|
1061
|
+
assert xml.include?(%(<name>David</name>))
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
def test_one_level_dasherize_true
|
1065
|
+
xml = { :name => "David", :street_name => "Paulina" }.to_xml(@xml_options.merge(:dasherize => true))
|
1066
|
+
assert_equal "<person>", xml.first(8)
|
1067
|
+
assert xml.include?(%(<street-name>Paulina</street-name>))
|
1068
|
+
assert xml.include?(%(<name>David</name>))
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
def test_one_level_camelize_true
|
1072
|
+
xml = { :name => "David", :street_name => "Paulina" }.to_xml(@xml_options.merge(:camelize => true))
|
1073
|
+
assert_equal "<Person>", xml.first(8)
|
1074
|
+
assert xml.include?(%(<StreetName>Paulina</StreetName>))
|
1075
|
+
assert xml.include?(%(<Name>David</Name>))
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
def test_one_level_camelize_lower
|
1079
|
+
xml = { :name => "David", :street_name => "Paulina" }.to_xml(@xml_options.merge(:camelize => :lower))
|
1080
|
+
assert_equal "<person>", xml.first(8)
|
1081
|
+
assert xml.include?(%(<streetName>Paulina</streetName>))
|
1082
|
+
assert xml.include?(%(<name>David</name>))
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
def test_one_level_with_types
|
1086
|
+
xml = { :name => "David", :street => "Paulina", :age => 26, :age_in_millis => 820497600000, :moved_on => Date.new(2005, 11, 15), :resident => :yes }.to_xml(@xml_options)
|
1087
|
+
assert_equal "<person>", xml.first(8)
|
1088
|
+
assert xml.include?(%(<street>Paulina</street>))
|
1089
|
+
assert xml.include?(%(<name>David</name>))
|
1090
|
+
assert xml.include?(%(<age type="integer">26</age>))
|
1091
|
+
assert xml.include?(%(<age-in-millis type="integer">820497600000</age-in-millis>))
|
1092
|
+
assert xml.include?(%(<moved-on type="date">2005-11-15</moved-on>))
|
1093
|
+
assert xml.include?(%(<resident type="symbol">yes</resident>))
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
def test_one_level_with_nils
|
1097
|
+
xml = { :name => "David", :street => "Paulina", :age => nil }.to_xml(@xml_options)
|
1098
|
+
assert_equal "<person>", xml.first(8)
|
1099
|
+
assert xml.include?(%(<street>Paulina</street>))
|
1100
|
+
assert xml.include?(%(<name>David</name>))
|
1101
|
+
assert xml.include?(%(<age nil="true"/>))
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
def test_one_level_with_skipping_types
|
1105
|
+
xml = { :name => "David", :street => "Paulina", :age => nil }.to_xml(@xml_options.merge(:skip_types => true))
|
1106
|
+
assert_equal "<person>", xml.first(8)
|
1107
|
+
assert xml.include?(%(<street>Paulina</street>))
|
1108
|
+
assert xml.include?(%(<name>David</name>))
|
1109
|
+
assert xml.include?(%(<age nil="true"/>))
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
def test_one_level_with_yielding
|
1113
|
+
xml = { :name => "David", :street => "Paulina" }.to_xml(@xml_options) do |x|
|
1114
|
+
x.creator("Rails")
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
assert_equal "<person>", xml.first(8)
|
1118
|
+
assert xml.include?(%(<street>Paulina</street>))
|
1119
|
+
assert xml.include?(%(<name>David</name>))
|
1120
|
+
assert xml.include?(%(<creator>Rails</creator>))
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
def test_two_levels
|
1124
|
+
xml = { :name => "David", :address => { :street => "Paulina" } }.to_xml(@xml_options)
|
1125
|
+
assert_equal "<person>", xml.first(8)
|
1126
|
+
assert xml.include?(%(<address><street>Paulina</street></address>))
|
1127
|
+
assert xml.include?(%(<name>David</name>))
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
def test_two_levels_with_second_level_overriding_to_xml
|
1131
|
+
xml = { :name => "David", :address => { :street => "Paulina" }, :child => IWriteMyOwnXML.new }.to_xml(@xml_options)
|
1132
|
+
assert_equal "<person>", xml.first(8)
|
1133
|
+
assert xml.include?(%(<address><street>Paulina</street></address>))
|
1134
|
+
assert xml.include?(%(<level_one><second_level>content</second_level></level_one>))
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
def test_two_levels_with_array
|
1138
|
+
xml = { :name => "David", :addresses => [{ :street => "Paulina" }, { :street => "Evergreen" }] }.to_xml(@xml_options)
|
1139
|
+
assert_equal "<person>", xml.first(8)
|
1140
|
+
assert xml.include?(%(<addresses type="array"><address>))
|
1141
|
+
assert xml.include?(%(<address><street>Paulina</street></address>))
|
1142
|
+
assert xml.include?(%(<address><street>Evergreen</street></address>))
|
1143
|
+
assert xml.include?(%(<name>David</name>))
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
def test_three_levels_with_array
|
1147
|
+
xml = { :name => "David", :addresses => [{ :streets => [ { :name => "Paulina" }, { :name => "Paulina" } ] } ] }.to_xml(@xml_options)
|
1148
|
+
assert xml.include?(%(<addresses type="array"><address><streets type="array"><street><name>))
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
def test_timezoned_attributes
|
1152
|
+
xml = {
|
1153
|
+
:created_at => Time.utc(1999,2,2),
|
1154
|
+
:local_created_at => Time.utc(1999,2,2).in_time_zone('Eastern Time (US & Canada)')
|
1155
|
+
}.to_xml(@xml_options)
|
1156
|
+
assert_match %r{<created-at type=\"dateTime\">1999-02-02T00:00:00Z</created-at>}, xml
|
1157
|
+
assert_match %r{<local-created-at type=\"dateTime\">1999-02-01T19:00:00-05:00</local-created-at>}, xml
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
def test_multiple_records_from_xml_with_attributes_other_than_type_ignores_them_without_exploding
|
1161
|
+
topics_xml = <<-EOT
|
1162
|
+
<topics type="array" page="1" page-count="1000" per-page="2">
|
1163
|
+
<topic>
|
1164
|
+
<title>The First Topic</title>
|
1165
|
+
<author-name>David</author-name>
|
1166
|
+
<id type="integer">1</id>
|
1167
|
+
<approved type="boolean">false</approved>
|
1168
|
+
<replies-count type="integer">0</replies-count>
|
1169
|
+
<replies-close-in type="integer">2592000000</replies-close-in>
|
1170
|
+
<written-on type="date">2003-07-16</written-on>
|
1171
|
+
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
|
1172
|
+
<content>Have a nice day</content>
|
1173
|
+
<author-email-address>david@loudthinking.com</author-email-address>
|
1174
|
+
<parent-id nil="true"></parent-id>
|
1175
|
+
</topic>
|
1176
|
+
<topic>
|
1177
|
+
<title>The Second Topic</title>
|
1178
|
+
<author-name>Jason</author-name>
|
1179
|
+
<id type="integer">1</id>
|
1180
|
+
<approved type="boolean">false</approved>
|
1181
|
+
<replies-count type="integer">0</replies-count>
|
1182
|
+
<replies-close-in type="integer">2592000000</replies-close-in>
|
1183
|
+
<written-on type="date">2003-07-16</written-on>
|
1184
|
+
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
|
1185
|
+
<content>Have a nice day</content>
|
1186
|
+
<author-email-address>david@loudthinking.com</author-email-address>
|
1187
|
+
<parent-id></parent-id>
|
1188
|
+
</topic>
|
1189
|
+
</topics>
|
1190
|
+
EOT
|
1191
|
+
|
1192
|
+
expected_topic_hash = {
|
1193
|
+
:title => "The First Topic",
|
1194
|
+
:author_name => "David",
|
1195
|
+
:id => 1,
|
1196
|
+
:approved => false,
|
1197
|
+
:replies_count => 0,
|
1198
|
+
:replies_close_in => 2592000000,
|
1199
|
+
:written_on => Date.new(2003, 7, 16),
|
1200
|
+
:viewed_at => Time.utc(2003, 7, 16, 9, 28),
|
1201
|
+
:content => "Have a nice day",
|
1202
|
+
:author_email_address => "david@loudthinking.com",
|
1203
|
+
:parent_id => nil
|
1204
|
+
}.stringify_keys
|
1205
|
+
|
1206
|
+
assert_equal expected_topic_hash, Hash.from_xml(topics_xml)["topics"].first
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
def test_single_record_from_xml
|
1210
|
+
topic_xml = <<-EOT
|
1211
|
+
<topic>
|
1212
|
+
<title>The First Topic</title>
|
1213
|
+
<author-name>David</author-name>
|
1214
|
+
<id type="integer">1</id>
|
1215
|
+
<approved type="boolean"> true </approved>
|
1216
|
+
<replies-count type="integer">0</replies-count>
|
1217
|
+
<replies-close-in type="integer">2592000000</replies-close-in>
|
1218
|
+
<written-on type="date">2003-07-16</written-on>
|
1219
|
+
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
|
1220
|
+
<author-email-address>david@loudthinking.com</author-email-address>
|
1221
|
+
<parent-id></parent-id>
|
1222
|
+
<ad-revenue type="decimal">1.5</ad-revenue>
|
1223
|
+
<optimum-viewing-angle type="float">135</optimum-viewing-angle>
|
1224
|
+
</topic>
|
1225
|
+
EOT
|
1226
|
+
|
1227
|
+
expected_topic_hash = {
|
1228
|
+
:title => "The First Topic",
|
1229
|
+
:author_name => "David",
|
1230
|
+
:id => 1,
|
1231
|
+
:approved => true,
|
1232
|
+
:replies_count => 0,
|
1233
|
+
:replies_close_in => 2592000000,
|
1234
|
+
:written_on => Date.new(2003, 7, 16),
|
1235
|
+
:viewed_at => Time.utc(2003, 7, 16, 9, 28),
|
1236
|
+
:author_email_address => "david@loudthinking.com",
|
1237
|
+
:parent_id => nil,
|
1238
|
+
:ad_revenue => BigDecimal("1.50"),
|
1239
|
+
:optimum_viewing_angle => 135.0,
|
1240
|
+
}.stringify_keys
|
1241
|
+
|
1242
|
+
assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["topic"]
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
def test_single_record_from_xml_with_nil_values
|
1246
|
+
topic_xml = <<-EOT
|
1247
|
+
<topic>
|
1248
|
+
<title></title>
|
1249
|
+
<id type="integer"></id>
|
1250
|
+
<approved type="boolean"></approved>
|
1251
|
+
<written-on type="date"></written-on>
|
1252
|
+
<viewed-at type="datetime"></viewed-at>
|
1253
|
+
<parent-id></parent-id>
|
1254
|
+
</topic>
|
1255
|
+
EOT
|
1256
|
+
|
1257
|
+
expected_topic_hash = {
|
1258
|
+
:title => nil,
|
1259
|
+
:id => nil,
|
1260
|
+
:approved => nil,
|
1261
|
+
:written_on => nil,
|
1262
|
+
:viewed_at => nil,
|
1263
|
+
:parent_id => nil
|
1264
|
+
}.stringify_keys
|
1265
|
+
|
1266
|
+
assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["topic"]
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
def test_multiple_records_from_xml
|
1270
|
+
topics_xml = <<-EOT
|
1271
|
+
<topics type="array">
|
1272
|
+
<topic>
|
1273
|
+
<title>The First Topic</title>
|
1274
|
+
<author-name>David</author-name>
|
1275
|
+
<id type="integer">1</id>
|
1276
|
+
<approved type="boolean">false</approved>
|
1277
|
+
<replies-count type="integer">0</replies-count>
|
1278
|
+
<replies-close-in type="integer">2592000000</replies-close-in>
|
1279
|
+
<written-on type="date">2003-07-16</written-on>
|
1280
|
+
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
|
1281
|
+
<content>Have a nice day</content>
|
1282
|
+
<author-email-address>david@loudthinking.com</author-email-address>
|
1283
|
+
<parent-id nil="true"></parent-id>
|
1284
|
+
</topic>
|
1285
|
+
<topic>
|
1286
|
+
<title>The Second Topic</title>
|
1287
|
+
<author-name>Jason</author-name>
|
1288
|
+
<id type="integer">1</id>
|
1289
|
+
<approved type="boolean">false</approved>
|
1290
|
+
<replies-count type="integer">0</replies-count>
|
1291
|
+
<replies-close-in type="integer">2592000000</replies-close-in>
|
1292
|
+
<written-on type="date">2003-07-16</written-on>
|
1293
|
+
<viewed-at type="datetime">2003-07-16T09:28:00+0000</viewed-at>
|
1294
|
+
<content>Have a nice day</content>
|
1295
|
+
<author-email-address>david@loudthinking.com</author-email-address>
|
1296
|
+
<parent-id></parent-id>
|
1297
|
+
</topic>
|
1298
|
+
</topics>
|
1299
|
+
EOT
|
1300
|
+
|
1301
|
+
expected_topic_hash = {
|
1302
|
+
:title => "The First Topic",
|
1303
|
+
:author_name => "David",
|
1304
|
+
:id => 1,
|
1305
|
+
:approved => false,
|
1306
|
+
:replies_count => 0,
|
1307
|
+
:replies_close_in => 2592000000,
|
1308
|
+
:written_on => Date.new(2003, 7, 16),
|
1309
|
+
:viewed_at => Time.utc(2003, 7, 16, 9, 28),
|
1310
|
+
:content => "Have a nice day",
|
1311
|
+
:author_email_address => "david@loudthinking.com",
|
1312
|
+
:parent_id => nil
|
1313
|
+
}.stringify_keys
|
1314
|
+
|
1315
|
+
assert_equal expected_topic_hash, Hash.from_xml(topics_xml)["topics"].first
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
def test_single_record_from_xml_with_attributes_other_than_type
|
1319
|
+
topic_xml = <<-EOT
|
1320
|
+
<rsp stat="ok">
|
1321
|
+
<photos page="1" pages="1" perpage="100" total="16">
|
1322
|
+
<photo id="175756086" owner="55569174@N00" secret="0279bf37a1" server="76" title="Colored Pencil PhotoBooth Fun" ispublic="1" isfriend="0" isfamily="0"/>
|
1323
|
+
</photos>
|
1324
|
+
</rsp>
|
1325
|
+
EOT
|
1326
|
+
|
1327
|
+
expected_topic_hash = {
|
1328
|
+
:id => "175756086",
|
1329
|
+
:owner => "55569174@N00",
|
1330
|
+
:secret => "0279bf37a1",
|
1331
|
+
:server => "76",
|
1332
|
+
:title => "Colored Pencil PhotoBooth Fun",
|
1333
|
+
:ispublic => "1",
|
1334
|
+
:isfriend => "0",
|
1335
|
+
:isfamily => "0",
|
1336
|
+
}.stringify_keys
|
1337
|
+
|
1338
|
+
assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["rsp"]["photos"]["photo"]
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
def test_all_caps_key_from_xml
|
1342
|
+
test_xml = <<-EOT
|
1343
|
+
<ABC3XYZ>
|
1344
|
+
<TEST>Lorem Ipsum</TEST>
|
1345
|
+
</ABC3XYZ>
|
1346
|
+
EOT
|
1347
|
+
|
1348
|
+
expected_hash = {
|
1349
|
+
"ABC3XYZ" => {
|
1350
|
+
"TEST" => "Lorem Ipsum"
|
1351
|
+
}
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
assert_equal expected_hash, Hash.from_xml(test_xml)
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
def test_empty_array_from_xml
|
1358
|
+
blog_xml = <<-XML
|
1359
|
+
<blog>
|
1360
|
+
<posts type="array"></posts>
|
1361
|
+
</blog>
|
1362
|
+
XML
|
1363
|
+
expected_blog_hash = {"blog" => {"posts" => []}}
|
1364
|
+
assert_equal expected_blog_hash, Hash.from_xml(blog_xml)
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
def test_empty_array_with_whitespace_from_xml
|
1368
|
+
blog_xml = <<-XML
|
1369
|
+
<blog>
|
1370
|
+
<posts type="array">
|
1371
|
+
</posts>
|
1372
|
+
</blog>
|
1373
|
+
XML
|
1374
|
+
expected_blog_hash = {"blog" => {"posts" => []}}
|
1375
|
+
assert_equal expected_blog_hash, Hash.from_xml(blog_xml)
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
def test_array_with_one_entry_from_xml
|
1379
|
+
blog_xml = <<-XML
|
1380
|
+
<blog>
|
1381
|
+
<posts type="array">
|
1382
|
+
<post>a post</post>
|
1383
|
+
</posts>
|
1384
|
+
</blog>
|
1385
|
+
XML
|
1386
|
+
expected_blog_hash = {"blog" => {"posts" => ["a post"]}}
|
1387
|
+
assert_equal expected_blog_hash, Hash.from_xml(blog_xml)
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
def test_array_with_multiple_entries_from_xml
|
1391
|
+
blog_xml = <<-XML
|
1392
|
+
<blog>
|
1393
|
+
<posts type="array">
|
1394
|
+
<post>a post</post>
|
1395
|
+
<post>another post</post>
|
1396
|
+
</posts>
|
1397
|
+
</blog>
|
1398
|
+
XML
|
1399
|
+
expected_blog_hash = {"blog" => {"posts" => ["a post", "another post"]}}
|
1400
|
+
assert_equal expected_blog_hash, Hash.from_xml(blog_xml)
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
def test_file_from_xml
|
1404
|
+
blog_xml = <<-XML
|
1405
|
+
<blog>
|
1406
|
+
<logo type="file" name="logo.png" content_type="image/png">
|
1407
|
+
</logo>
|
1408
|
+
</blog>
|
1409
|
+
XML
|
1410
|
+
hash = Hash.from_xml(blog_xml)
|
1411
|
+
assert hash.has_key?('blog')
|
1412
|
+
assert hash['blog'].has_key?('logo')
|
1413
|
+
|
1414
|
+
file = hash['blog']['logo']
|
1415
|
+
assert_equal 'logo.png', file.original_filename
|
1416
|
+
assert_equal 'image/png', file.content_type
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
def test_file_from_xml_with_defaults
|
1420
|
+
blog_xml = <<-XML
|
1421
|
+
<blog>
|
1422
|
+
<logo type="file">
|
1423
|
+
</logo>
|
1424
|
+
</blog>
|
1425
|
+
XML
|
1426
|
+
file = Hash.from_xml(blog_xml)['blog']['logo']
|
1427
|
+
assert_equal 'untitled', file.original_filename
|
1428
|
+
assert_equal 'application/octet-stream', file.content_type
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
def test_tag_with_attrs_and_whitespace
|
1432
|
+
xml = <<-XML
|
1433
|
+
<blog name="bacon is the best">
|
1434
|
+
</blog>
|
1435
|
+
XML
|
1436
|
+
hash = Hash.from_xml(xml)
|
1437
|
+
assert_equal "bacon is the best", hash['blog']['name']
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
def test_empty_cdata_from_xml
|
1441
|
+
xml = "<data><![CDATA[]]></data>"
|
1442
|
+
|
1443
|
+
assert_equal "", Hash.from_xml(xml)["data"]
|
1444
|
+
end
|
1445
|
+
|
1446
|
+
def test_xsd_like_types_from_xml
|
1447
|
+
bacon_xml = <<-EOT
|
1448
|
+
<bacon>
|
1449
|
+
<weight type="double">0.5</weight>
|
1450
|
+
<price type="decimal">12.50</price>
|
1451
|
+
<chunky type="boolean"> 1 </chunky>
|
1452
|
+
<expires-at type="dateTime">2007-12-25T12:34:56+0000</expires-at>
|
1453
|
+
<notes type="string"></notes>
|
1454
|
+
<illustration type="base64Binary">YmFiZS5wbmc=</illustration>
|
1455
|
+
<caption type="binary" encoding="base64">VGhhdCdsbCBkbywgcGlnLg==</caption>
|
1456
|
+
</bacon>
|
1457
|
+
EOT
|
1458
|
+
|
1459
|
+
expected_bacon_hash = {
|
1460
|
+
:weight => 0.5,
|
1461
|
+
:chunky => true,
|
1462
|
+
:price => BigDecimal("12.50"),
|
1463
|
+
:expires_at => Time.utc(2007,12,25,12,34,56),
|
1464
|
+
:notes => "",
|
1465
|
+
:illustration => "babe.png",
|
1466
|
+
:caption => "That'll do, pig."
|
1467
|
+
}.stringify_keys
|
1468
|
+
|
1469
|
+
assert_equal expected_bacon_hash, Hash.from_xml(bacon_xml)["bacon"]
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
def test_type_trickles_through_when_unknown
|
1473
|
+
product_xml = <<-EOT
|
1474
|
+
<product>
|
1475
|
+
<weight type="double">0.5</weight>
|
1476
|
+
<image type="ProductImage"><filename>image.gif</filename></image>
|
1477
|
+
|
1478
|
+
</product>
|
1479
|
+
EOT
|
1480
|
+
|
1481
|
+
expected_product_hash = {
|
1482
|
+
:weight => 0.5,
|
1483
|
+
:image => {'type' => 'ProductImage', 'filename' => 'image.gif' },
|
1484
|
+
}.stringify_keys
|
1485
|
+
|
1486
|
+
assert_equal expected_product_hash, Hash.from_xml(product_xml)["product"]
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
def test_from_xml_raises_on_disallowed_type_attributes
|
1490
|
+
assert_raise ActiveSupport::XMLConverter::DisallowedType do
|
1491
|
+
Hash.from_xml '<product><name type="foo">value</name></product>', %w(foo)
|
1492
|
+
end
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
def test_from_xml_disallows_symbol_and_yaml_types_by_default
|
1496
|
+
assert_raise ActiveSupport::XMLConverter::DisallowedType do
|
1497
|
+
Hash.from_xml '<product><name type="symbol">value</name></product>'
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
assert_raise ActiveSupport::XMLConverter::DisallowedType do
|
1501
|
+
Hash.from_xml '<product><name type="yaml">value</name></product>'
|
1502
|
+
end
|
1503
|
+
end
|
1504
|
+
|
1505
|
+
def test_from_xml_array_one
|
1506
|
+
expected = { 'numbers' => { 'type' => 'Array', 'value' => '1' }}
|
1507
|
+
assert_equal expected, Hash.from_xml('<numbers type="Array"><value>1</value></numbers>')
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
def test_from_xml_array_many
|
1511
|
+
expected = { 'numbers' => { 'type' => 'Array', 'value' => [ '1', '2' ] }}
|
1512
|
+
assert_equal expected, Hash.from_xml('<numbers type="Array"><value>1</value><value>2</value></numbers>')
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
def test_from_trusted_xml_allows_symbol_and_yaml_types
|
1516
|
+
expected = { 'product' => { 'name' => :value }}
|
1517
|
+
assert_equal expected, Hash.from_trusted_xml('<product><name type="symbol">value</name></product>')
|
1518
|
+
assert_equal expected, Hash.from_trusted_xml('<product><name type="yaml">:value</name></product>')
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
def test_should_use_default_proc_for_unknown_key
|
1522
|
+
hash_wia = HashWithIndifferentAccess.new { 1 + 2 }
|
1523
|
+
assert_equal 3, hash_wia[:new_key]
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
def test_should_use_default_proc_if_no_key_is_supplied
|
1527
|
+
hash_wia = HashWithIndifferentAccess.new { 1 + 2 }
|
1528
|
+
assert_equal 3, hash_wia.default
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
def test_should_use_default_value_for_unknown_key
|
1532
|
+
hash_wia = HashWithIndifferentAccess.new(3)
|
1533
|
+
assert_equal 3, hash_wia[:new_key]
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
def test_should_use_default_value_if_no_key_is_supplied
|
1537
|
+
hash_wia = HashWithIndifferentAccess.new(3)
|
1538
|
+
assert_equal 3, hash_wia.default
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
def test_should_nil_if_no_default_value_is_supplied
|
1542
|
+
hash_wia = HashWithIndifferentAccess.new
|
1543
|
+
assert_nil hash_wia.default
|
1544
|
+
end
|
1545
|
+
|
1546
|
+
def test_should_return_dup_for_with_indifferent_access
|
1547
|
+
hash_wia = HashWithIndifferentAccess.new
|
1548
|
+
assert_equal hash_wia, hash_wia.with_indifferent_access
|
1549
|
+
assert_not_same hash_wia, hash_wia.with_indifferent_access
|
1550
|
+
end
|
1551
|
+
|
1552
|
+
def test_should_copy_the_default_value_when_converting_to_hash_with_indifferent_access
|
1553
|
+
hash = Hash.new(3)
|
1554
|
+
hash_wia = hash.with_indifferent_access
|
1555
|
+
assert_equal 3, hash_wia.default
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
def test_should_copy_the_default_proc_when_converting_to_hash_with_indifferent_access
|
1559
|
+
hash = Hash.new do
|
1560
|
+
2 + 1
|
1561
|
+
end
|
1562
|
+
assert_equal 3, hash[:foo]
|
1563
|
+
|
1564
|
+
hash_wia = hash.with_indifferent_access
|
1565
|
+
assert_equal 3, hash_wia[:foo]
|
1566
|
+
assert_equal 3, hash_wia[:bar]
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
# The XML builder seems to fail miserably when trying to tag something
|
1570
|
+
# with the same name as a Kernel method (throw, test, loop, select ...)
|
1571
|
+
def test_kernel_method_names_to_xml
|
1572
|
+
hash = { :throw => { :ball => 'red' } }
|
1573
|
+
expected = '<person><throw><ball>red</ball></throw></person>'
|
1574
|
+
|
1575
|
+
assert_nothing_raised do
|
1576
|
+
assert_equal expected, hash.to_xml(@xml_options)
|
1577
|
+
end
|
1578
|
+
end
|
1579
|
+
|
1580
|
+
def test_empty_string_works_for_typecast_xml_value
|
1581
|
+
assert_nothing_raised do
|
1582
|
+
ActiveSupport::XMLConverter.new("").to_h
|
1583
|
+
end
|
1584
|
+
end
|
1585
|
+
|
1586
|
+
def test_escaping_to_xml
|
1587
|
+
hash = {
|
1588
|
+
:bare_string => 'First & Last Name',
|
1589
|
+
:pre_escaped_string => 'First & Last Name'
|
1590
|
+
}.stringify_keys
|
1591
|
+
|
1592
|
+
expected_xml = '<person><bare-string>First & Last Name</bare-string><pre-escaped-string>First &amp; Last Name</pre-escaped-string></person>'
|
1593
|
+
assert_equal expected_xml, hash.to_xml(@xml_options)
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
def test_unescaping_from_xml
|
1597
|
+
xml_string = '<person><bare-string>First & Last Name</bare-string><pre-escaped-string>First &amp; Last Name</pre-escaped-string></person>'
|
1598
|
+
expected_hash = {
|
1599
|
+
:bare_string => 'First & Last Name',
|
1600
|
+
:pre_escaped_string => 'First & Last Name'
|
1601
|
+
}.stringify_keys
|
1602
|
+
assert_equal expected_hash, Hash.from_xml(xml_string)['person']
|
1603
|
+
end
|
1604
|
+
|
1605
|
+
def test_roundtrip_to_xml_from_xml
|
1606
|
+
hash = {
|
1607
|
+
:bare_string => 'First & Last Name',
|
1608
|
+
:pre_escaped_string => 'First & Last Name'
|
1609
|
+
}.stringify_keys
|
1610
|
+
|
1611
|
+
assert_equal hash, Hash.from_xml(hash.to_xml(@xml_options))['person']
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
def test_datetime_xml_type_with_utc_time
|
1615
|
+
alert_xml = <<-XML
|
1616
|
+
<alert>
|
1617
|
+
<alert_at type="datetime">2008-02-10T15:30:45Z</alert_at>
|
1618
|
+
</alert>
|
1619
|
+
XML
|
1620
|
+
alert_at = Hash.from_xml(alert_xml)['alert']['alert_at']
|
1621
|
+
assert alert_at.utc?
|
1622
|
+
assert_equal Time.utc(2008, 2, 10, 15, 30, 45), alert_at
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
def test_datetime_xml_type_with_non_utc_time
|
1626
|
+
alert_xml = <<-XML
|
1627
|
+
<alert>
|
1628
|
+
<alert_at type="datetime">2008-02-10T10:30:45-05:00</alert_at>
|
1629
|
+
</alert>
|
1630
|
+
XML
|
1631
|
+
alert_at = Hash.from_xml(alert_xml)['alert']['alert_at']
|
1632
|
+
assert alert_at.utc?
|
1633
|
+
assert_equal Time.utc(2008, 2, 10, 15, 30, 45), alert_at
|
1634
|
+
end
|
1635
|
+
|
1636
|
+
def test_datetime_xml_type_with_far_future_date
|
1637
|
+
alert_xml = <<-XML
|
1638
|
+
<alert>
|
1639
|
+
<alert_at type="datetime">2050-02-10T15:30:45Z</alert_at>
|
1640
|
+
</alert>
|
1641
|
+
XML
|
1642
|
+
alert_at = Hash.from_xml(alert_xml)['alert']['alert_at']
|
1643
|
+
assert alert_at.utc?
|
1644
|
+
assert_equal 2050, alert_at.year
|
1645
|
+
assert_equal 2, alert_at.month
|
1646
|
+
assert_equal 10, alert_at.day
|
1647
|
+
assert_equal 15, alert_at.hour
|
1648
|
+
assert_equal 30, alert_at.min
|
1649
|
+
assert_equal 45, alert_at.sec
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
def test_to_xml_dups_options
|
1653
|
+
options = {:skip_instruct => true}
|
1654
|
+
{}.to_xml(options)
|
1655
|
+
# :builder, etc, shouldn't be added to options
|
1656
|
+
assert_equal({:skip_instruct => true}, options)
|
1657
|
+
end
|
1658
|
+
|
1659
|
+
def test_expansion_count_is_limited
|
1660
|
+
expected =
|
1661
|
+
case ActiveSupport::XmlMini.backend.name
|
1662
|
+
when 'ActiveSupport::XmlMini_REXML'; RuntimeError
|
1663
|
+
when 'ActiveSupport::XmlMini_Nokogiri'; Nokogiri::XML::SyntaxError
|
1664
|
+
when 'ActiveSupport::XmlMini_NokogiriSAX'; RuntimeError
|
1665
|
+
when 'ActiveSupport::XmlMini_LibXML'; LibXML::XML::Error
|
1666
|
+
when 'ActiveSupport::XmlMini_LibXMLSAX'; LibXML::XML::Error
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
assert_raise expected do
|
1670
|
+
attack_xml = <<-EOT
|
1671
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
1672
|
+
<!DOCTYPE member [
|
1673
|
+
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
1674
|
+
<!ENTITY b "&c;&c;&c;&c;&c;&c;&c;&c;&c;&c;">
|
1675
|
+
<!ENTITY c "&d;&d;&d;&d;&d;&d;&d;&d;&d;&d;">
|
1676
|
+
<!ENTITY d "&e;&e;&e;&e;&e;&e;&e;&e;&e;&e;">
|
1677
|
+
<!ENTITY e "&f;&f;&f;&f;&f;&f;&f;&f;&f;&f;">
|
1678
|
+
<!ENTITY f "&g;&g;&g;&g;&g;&g;&g;&g;&g;&g;">
|
1679
|
+
<!ENTITY g "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
|
1680
|
+
]>
|
1681
|
+
<member>
|
1682
|
+
&a;
|
1683
|
+
</member>
|
1684
|
+
EOT
|
1685
|
+
Hash.from_xml(attack_xml)
|
1686
|
+
end
|
1687
|
+
end
|
1688
|
+
end
|