ruby-on-quails 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.codeclimate.yml +13 -0
- data/.gitattributes +2 -0
- data/.github/issue_template.md +15 -0
- data/.github/pull_request_template.md +21 -0
- data/.github/stale.yml +28 -0
- data/.gitignore +24 -0
- data/.rubocop.yml +137 -0
- data/.travis.yml +123 -0
- data/.yardopts +4 -0
- data/CODE_OF_CONDUCT.md +12 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +168 -0
- data/Gemfile.lock +547 -0
- data/MIT-LICENSE +20 -0
- data/RAILS_VERSION +1 -0
- data/README.md +97 -0
- data/RELEASING_RAILS.md +225 -0
- data/Rakefile +72 -0
- data/actioncable/.gitignore +2 -0
- data/actioncable/CHANGELOG.md +26 -0
- data/actioncable/MIT-LICENSE +20 -0
- data/actioncable/README.md +567 -0
- data/actioncable/Rakefile +76 -0
- data/actioncable/actioncable.gemspec +32 -0
- data/actioncable/app/assets/javascripts/action_cable.coffee.erb +38 -0
- data/actioncable/app/assets/javascripts/action_cable/connection.coffee +116 -0
- data/actioncable/app/assets/javascripts/action_cable/connection_monitor.coffee +95 -0
- data/actioncable/app/assets/javascripts/action_cable/consumer.coffee +46 -0
- data/actioncable/app/assets/javascripts/action_cable/subscription.coffee +72 -0
- data/actioncable/app/assets/javascripts/action_cable/subscriptions.coffee +66 -0
- data/actioncable/bin/test +5 -0
- data/actioncable/blade.yml +34 -0
- data/actioncable/lib/action_cable.rb +54 -0
- data/actioncable/lib/action_cable/channel.rb +16 -0
- data/actioncable/lib/action_cable/channel/base.rb +305 -0
- data/actioncable/lib/action_cable/channel/broadcasting.rb +31 -0
- data/actioncable/lib/action_cable/channel/callbacks.rb +37 -0
- data/actioncable/lib/action_cable/channel/naming.rb +25 -0
- data/actioncable/lib/action_cable/channel/periodic_timers.rb +78 -0
- data/actioncable/lib/action_cable/channel/streams.rb +176 -0
- data/actioncable/lib/action_cable/connection.rb +21 -0
- data/actioncable/lib/action_cable/connection/authorization.rb +15 -0
- data/actioncable/lib/action_cable/connection/base.rb +260 -0
- data/actioncable/lib/action_cable/connection/client_socket.rb +157 -0
- data/actioncable/lib/action_cable/connection/identification.rb +47 -0
- data/actioncable/lib/action_cable/connection/internal_channel.rb +45 -0
- data/actioncable/lib/action_cable/connection/message_buffer.rb +57 -0
- data/actioncable/lib/action_cable/connection/stream.rb +115 -0
- data/actioncable/lib/action_cable/connection/stream_event_loop.rb +136 -0
- data/actioncable/lib/action_cable/connection/subscriptions.rb +83 -0
- data/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb +42 -0
- data/actioncable/lib/action_cable/connection/web_socket.rb +43 -0
- data/actioncable/lib/action_cable/engine.rb +79 -0
- data/actioncable/lib/action_cable/gem_version.rb +17 -0
- data/actioncable/lib/action_cable/helpers/action_cable_helper.rb +42 -0
- data/actioncable/lib/action_cable/remote_connections.rb +69 -0
- data/actioncable/lib/action_cable/server.rb +17 -0
- data/actioncable/lib/action_cable/server/base.rb +89 -0
- data/actioncable/lib/action_cable/server/broadcasting.rb +54 -0
- data/actioncable/lib/action_cable/server/configuration.rb +43 -0
- data/actioncable/lib/action_cable/server/connections.rb +36 -0
- data/actioncable/lib/action_cable/server/worker.rb +77 -0
- data/actioncable/lib/action_cable/server/worker/active_record_connection_management.rb +21 -0
- data/actioncable/lib/action_cable/subscription_adapter.rb +11 -0
- data/actioncable/lib/action_cable/subscription_adapter/async.rb +29 -0
- data/actioncable/lib/action_cable/subscription_adapter/base.rb +30 -0
- data/actioncable/lib/action_cable/subscription_adapter/channel_prefix.rb +28 -0
- data/actioncable/lib/action_cable/subscription_adapter/evented_redis.rb +89 -0
- data/actioncable/lib/action_cable/subscription_adapter/inline.rb +37 -0
- data/actioncable/lib/action_cable/subscription_adapter/postgresql.rb +114 -0
- data/actioncable/lib/action_cable/subscription_adapter/redis.rb +178 -0
- data/actioncable/lib/action_cable/subscription_adapter/subscriber_map.rb +59 -0
- data/actioncable/lib/action_cable/version.rb +10 -0
- data/actioncable/lib/rails/generators/channel/USAGE +14 -0
- data/actioncable/lib/rails/generators/channel/channel_generator.rb +49 -0
- data/actioncable/lib/rails/generators/channel/templates/application_cable/channel.rb +4 -0
- data/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb +4 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/cable.js +13 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/channel.coffee +14 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/channel.js +18 -0
- data/actioncable/lib/rails/generators/channel/templates/channel.rb +16 -0
- data/actioncable/package.json +24 -0
- data/actioncable/test/channel/base_test.rb +272 -0
- data/actioncable/test/channel/broadcasting_test.rb +31 -0
- data/actioncable/test/channel/naming_test.rb +12 -0
- data/actioncable/test/channel/periodic_timers_test.rb +74 -0
- data/actioncable/test/channel/rejection_test.rb +43 -0
- data/actioncable/test/channel/stream_test.rb +208 -0
- data/actioncable/test/client_test.rb +313 -0
- data/actioncable/test/connection/authorization_test.rb +33 -0
- data/actioncable/test/connection/base_test.rb +141 -0
- data/actioncable/test/connection/client_socket_test.rb +84 -0
- data/actioncable/test/connection/cross_site_forgery_test.rb +92 -0
- data/actioncable/test/connection/identifier_test.rb +77 -0
- data/actioncable/test/connection/multiple_identifiers_test.rb +39 -0
- data/actioncable/test/connection/stream_test.rb +66 -0
- data/actioncable/test/connection/string_identifier_test.rb +41 -0
- data/actioncable/test/connection/subscriptions_test.rb +116 -0
- data/actioncable/test/javascript/src/test.coffee +3 -0
- data/actioncable/test/javascript/src/test_helpers/consumer_test_helper.coffee +47 -0
- data/actioncable/test/javascript/src/test_helpers/index.coffee +11 -0
- data/actioncable/test/javascript/src/unit/action_cable_test.coffee +41 -0
- data/actioncable/test/javascript/src/unit/consumer_test.coffee +14 -0
- data/actioncable/test/javascript/src/unit/subscription_test.coffee +40 -0
- data/actioncable/test/javascript/src/unit/subscriptions_test.coffee +25 -0
- data/actioncable/test/javascript/vendor/mock-socket.js +4533 -0
- data/actioncable/test/server/base_test.rb +35 -0
- data/actioncable/test/server/broadcasting_test.rb +62 -0
- data/actioncable/test/stubs/global_id.rb +10 -0
- data/actioncable/test/stubs/room.rb +18 -0
- data/actioncable/test/stubs/test_adapter.rb +12 -0
- data/actioncable/test/stubs/test_connection.rb +35 -0
- data/actioncable/test/stubs/test_server.rb +32 -0
- data/actioncable/test/stubs/user.rb +17 -0
- data/actioncable/test/subscription_adapter/async_test.rb +19 -0
- data/actioncable/test/subscription_adapter/base_test.rb +65 -0
- data/actioncable/test/subscription_adapter/channel_prefix.rb +38 -0
- data/actioncable/test/subscription_adapter/common.rb +131 -0
- data/actioncable/test/subscription_adapter/evented_redis_test.rb +61 -0
- data/actioncable/test/subscription_adapter/inline_test.rb +19 -0
- data/actioncable/test/subscription_adapter/postgresql_test.rb +42 -0
- data/actioncable/test/subscription_adapter/redis_test.rb +28 -0
- data/actioncable/test/subscription_adapter/subscriber_map_test.rb +19 -0
- data/actioncable/test/test_helper.rb +37 -0
- data/actioncable/test/worker_test.rb +46 -0
- data/actionmailer/CHANGELOG.md +12 -0
- data/actionmailer/MIT-LICENSE +21 -0
- data/actionmailer/README.rdoc +175 -0
- data/actionmailer/Rakefile +25 -0
- data/actionmailer/actionmailer.gemspec +35 -0
- data/actionmailer/bin/test +5 -0
- data/actionmailer/lib/action_mailer.rb +62 -0
- data/actionmailer/lib/action_mailer/base.rb +981 -0
- data/actionmailer/lib/action_mailer/collector.rb +32 -0
- data/actionmailer/lib/action_mailer/delivery_job.rb +36 -0
- data/actionmailer/lib/action_mailer/delivery_methods.rb +82 -0
- data/actionmailer/lib/action_mailer/gem_version.rb +17 -0
- data/actionmailer/lib/action_mailer/inline_preview_interceptor.rb +59 -0
- data/actionmailer/lib/action_mailer/log_subscriber.rb +41 -0
- data/actionmailer/lib/action_mailer/mail_helper.rb +72 -0
- data/actionmailer/lib/action_mailer/message_delivery.rb +144 -0
- data/actionmailer/lib/action_mailer/parameterized.rb +154 -0
- data/actionmailer/lib/action_mailer/preview.rb +126 -0
- data/actionmailer/lib/action_mailer/railtie.rb +82 -0
- data/actionmailer/lib/action_mailer/rescuable.rb +29 -0
- data/actionmailer/lib/action_mailer/test_case.rb +123 -0
- data/actionmailer/lib/action_mailer/test_helper.rb +115 -0
- data/actionmailer/lib/action_mailer/version.rb +11 -0
- data/actionmailer/lib/rails/generators/mailer/USAGE +17 -0
- data/actionmailer/lib/rails/generators/mailer/mailer_generator.rb +38 -0
- data/actionmailer/lib/rails/generators/mailer/templates/application_mailer.rb +6 -0
- data/actionmailer/lib/rails/generators/mailer/templates/mailer.rb +17 -0
- data/actionmailer/test/abstract_unit.rb +47 -0
- data/actionmailer/test/assert_select_email_test.rb +49 -0
- data/actionmailer/test/asset_host_test.rb +39 -0
- data/actionmailer/test/base_test.rb +987 -0
- data/actionmailer/test/caching_test.rb +271 -0
- data/actionmailer/test/delivery_methods_test.rb +248 -0
- data/actionmailer/test/fixtures/anonymous/welcome.erb +1 -0
- data/actionmailer/test/fixtures/another.path/base_mailer/welcome.erb +1 -0
- data/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/actionmailer/test/fixtures/asset_mailer/welcome.html.erb +1 -0
- data/actionmailer/test/fixtures/attachments/foo.jpg +0 -0
- data/actionmailer/test/fixtures/attachments/test.jpg +0 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/multipart.html.erb +1 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_content.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_hash.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_hash_default_encoding.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/different_layout.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/different_layout.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/email_with_translations.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_with_one_template.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/html_only.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_multipart.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_multipart.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.de-AT.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.de.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.en.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.pl.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/inline_attachment.html.erb +5 -0
- data/actionmailer/test/fixtures/base_mailer/inline_attachment.text.erb +4 -0
- data/actionmailer/test/fixtures/base_mailer/plain_text_only.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/welcome.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/welcome_with_headers.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/without_mail_call.erb +1 -0
- data/actionmailer/test/fixtures/base_test/after_action_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/before_action_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/default_inline_attachment_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/late_inline_attachment_mailer/on_render.erb +7 -0
- data/actionmailer/test/fixtures/caching_mailer/_partial.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_cache.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_cache_in_partials.html.erb +1 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/skip_fragment_cache_digesting.html.erb +3 -0
- data/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/actionmailer/test/fixtures/i18n_test_mailer/mail_with_i18n_subject.erb +4 -0
- data/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/actionmailer/test/fixtures/layouts/different_layout.html.erb +1 -0
- data/actionmailer/test/fixtures/layouts/different_layout.text.erb +1 -0
- data/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
- data/actionmailer/test/fixtures/mail_delivery_test/delivery_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb +1 -0
- data/actionmailer/test/fixtures/proc_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/raw_email +14 -0
- data/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/actionmailer/test/fixtures/test_helper_mailer/welcome +1 -0
- data/actionmailer/test/fixtures/url_test_mailer/exercise_url_for.erb +1 -0
- data/actionmailer/test/fixtures/url_test_mailer/signed_up_with_url.erb +5 -0
- data/actionmailer/test/i18n_with_controller_test.rb +77 -0
- data/actionmailer/test/log_subscriber_test.rb +49 -0
- data/actionmailer/test/mail_helper_test.rb +125 -0
- data/actionmailer/test/mail_layout_test.rb +97 -0
- data/actionmailer/test/mailers/asset_mailer.rb +9 -0
- data/actionmailer/test/mailers/base_mailer.rb +138 -0
- data/actionmailer/test/mailers/caching_mailer.rb +25 -0
- data/actionmailer/test/mailers/delayed_mailer.rb +28 -0
- data/actionmailer/test/mailers/params_mailer.rb +13 -0
- data/actionmailer/test/mailers/proc_mailer.rb +18 -0
- data/actionmailer/test/message_delivery_test.rb +167 -0
- data/actionmailer/test/parameterized_test.rb +56 -0
- data/actionmailer/test/test_case_test.rb +68 -0
- data/actionmailer/test/test_helper_test.rb +223 -0
- data/actionmailer/test/url_test.rb +144 -0
- data/actionpack/CHANGELOG.md +75 -0
- data/actionpack/MIT-LICENSE +21 -0
- data/actionpack/README.rdoc +57 -0
- data/actionpack/Rakefile +40 -0
- data/actionpack/actionpack.gemspec +38 -0
- data/actionpack/bin/test +5 -0
- data/actionpack/lib/abstract_controller.rb +26 -0
- data/actionpack/lib/abstract_controller/asset_paths.rb +12 -0
- data/actionpack/lib/abstract_controller/base.rb +267 -0
- data/actionpack/lib/abstract_controller/caching.rb +66 -0
- data/actionpack/lib/abstract_controller/caching/fragments.rb +166 -0
- data/actionpack/lib/abstract_controller/callbacks.rb +212 -0
- data/actionpack/lib/abstract_controller/collector.rb +43 -0
- data/actionpack/lib/abstract_controller/error.rb +6 -0
- data/actionpack/lib/abstract_controller/helpers.rb +194 -0
- data/actionpack/lib/abstract_controller/logger.rb +14 -0
- data/actionpack/lib/abstract_controller/railties/routes_helpers.rb +20 -0
- data/actionpack/lib/abstract_controller/rendering.rb +136 -0
- data/actionpack/lib/abstract_controller/translation.rb +31 -0
- data/actionpack/lib/abstract_controller/url_for.rb +35 -0
- data/actionpack/lib/action_controller.rb +65 -0
- data/actionpack/lib/action_controller/api.rb +149 -0
- data/actionpack/lib/action_controller/api/api_rendering.rb +16 -0
- data/actionpack/lib/action_controller/base.rb +275 -0
- data/actionpack/lib/action_controller/caching.rb +46 -0
- data/actionpack/lib/action_controller/form_builder.rb +50 -0
- data/actionpack/lib/action_controller/log_subscriber.rb +78 -0
- data/actionpack/lib/action_controller/metal.rb +258 -0
- data/actionpack/lib/action_controller/metal/basic_implicit_render.rb +13 -0
- data/actionpack/lib/action_controller/metal/conditional_get.rb +274 -0
- data/actionpack/lib/action_controller/metal/cookies.rb +16 -0
- data/actionpack/lib/action_controller/metal/data_streaming.rb +152 -0
- data/actionpack/lib/action_controller/metal/etag_with_flash.rb +18 -0
- data/actionpack/lib/action_controller/metal/etag_with_template_digest.rb +57 -0
- data/actionpack/lib/action_controller/metal/exceptions.rb +56 -0
- data/actionpack/lib/action_controller/metal/flash.rb +61 -0
- data/actionpack/lib/action_controller/metal/force_ssl.rb +99 -0
- data/actionpack/lib/action_controller/metal/head.rb +60 -0
- data/actionpack/lib/action_controller/metal/helpers.rb +123 -0
- data/actionpack/lib/action_controller/metal/http_authentication.rb +522 -0
- data/actionpack/lib/action_controller/metal/implicit_render.rb +73 -0
- data/actionpack/lib/action_controller/metal/instrumentation.rb +111 -0
- data/actionpack/lib/action_controller/metal/live.rb +312 -0
- data/actionpack/lib/action_controller/metal/mime_responds.rb +313 -0
- data/actionpack/lib/action_controller/metal/parameter_encoding.rb +51 -0
- data/actionpack/lib/action_controller/metal/params_wrapper.rb +285 -0
- data/actionpack/lib/action_controller/metal/redirecting.rb +124 -0
- data/actionpack/lib/action_controller/metal/renderers.rb +181 -0
- data/actionpack/lib/action_controller/metal/rendering.rb +124 -0
- data/actionpack/lib/action_controller/metal/request_forgery_protection.rb +433 -0
- data/actionpack/lib/action_controller/metal/rescue.rb +28 -0
- data/actionpack/lib/action_controller/metal/streaming.rb +223 -0
- data/actionpack/lib/action_controller/metal/strong_parameters.rb +1085 -0
- data/actionpack/lib/action_controller/metal/testing.rb +22 -0
- data/actionpack/lib/action_controller/metal/url_for.rb +58 -0
- data/actionpack/lib/action_controller/railtie.rb +89 -0
- data/actionpack/lib/action_controller/railties/helpers.rb +24 -0
- data/actionpack/lib/action_controller/renderer.rb +117 -0
- data/actionpack/lib/action_controller/template_assertions.rb +11 -0
- data/actionpack/lib/action_controller/test_case.rb +626 -0
- data/actionpack/lib/action_dispatch.rb +111 -0
- data/actionpack/lib/action_dispatch/http/cache.rb +216 -0
- data/actionpack/lib/action_dispatch/http/filter_parameters.rb +84 -0
- data/actionpack/lib/action_dispatch/http/filter_redirect.rb +37 -0
- data/actionpack/lib/action_dispatch/http/headers.rb +132 -0
- data/actionpack/lib/action_dispatch/http/mime_negotiation.rb +173 -0
- data/actionpack/lib/action_dispatch/http/mime_type.rb +342 -0
- data/actionpack/lib/action_dispatch/http/mime_types.rb +37 -0
- data/actionpack/lib/action_dispatch/http/parameter_filter.rb +86 -0
- data/actionpack/lib/action_dispatch/http/parameters.rb +131 -0
- data/actionpack/lib/action_dispatch/http/rack_cache.rb +63 -0
- data/actionpack/lib/action_dispatch/http/request.rb +412 -0
- data/actionpack/lib/action_dispatch/http/response.rb +519 -0
- data/actionpack/lib/action_dispatch/http/upload.rb +84 -0
- data/actionpack/lib/action_dispatch/http/url.rb +350 -0
- data/actionpack/lib/action_dispatch/journey.rb +7 -0
- data/actionpack/lib/action_dispatch/journey/formatter.rb +189 -0
- data/actionpack/lib/action_dispatch/journey/gtg/builder.rb +164 -0
- data/actionpack/lib/action_dispatch/journey/gtg/simulator.rb +41 -0
- data/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb +158 -0
- data/actionpack/lib/action_dispatch/journey/nfa/builder.rb +78 -0
- data/actionpack/lib/action_dispatch/journey/nfa/dot.rb +36 -0
- data/actionpack/lib/action_dispatch/journey/nfa/simulator.rb +49 -0
- data/actionpack/lib/action_dispatch/journey/nfa/transition_table.rb +120 -0
- data/actionpack/lib/action_dispatch/journey/nodes/node.rb +140 -0
- data/actionpack/lib/action_dispatch/journey/parser.rb +199 -0
- data/actionpack/lib/action_dispatch/journey/parser.y +50 -0
- data/actionpack/lib/action_dispatch/journey/parser_extras.rb +31 -0
- data/actionpack/lib/action_dispatch/journey/path/pattern.rb +198 -0
- data/actionpack/lib/action_dispatch/journey/route.rb +203 -0
- data/actionpack/lib/action_dispatch/journey/router.rb +156 -0
- data/actionpack/lib/action_dispatch/journey/router/utils.rb +102 -0
- data/actionpack/lib/action_dispatch/journey/routes.rb +81 -0
- data/actionpack/lib/action_dispatch/journey/scanner.rb +64 -0
- data/actionpack/lib/action_dispatch/journey/visitors.rb +268 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
- data/actionpack/lib/action_dispatch/middleware/callbacks.rb +36 -0
- data/actionpack/lib/action_dispatch/middleware/cookies.rb +686 -0
- data/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb +205 -0
- data/actionpack/lib/action_dispatch/middleware/debug_locks.rb +124 -0
- data/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb +146 -0
- data/actionpack/lib/action_dispatch/middleware/executor.rb +21 -0
- data/actionpack/lib/action_dispatch/middleware/flash.rb +300 -0
- data/actionpack/lib/action_dispatch/middleware/public_exceptions.rb +57 -0
- data/actionpack/lib/action_dispatch/middleware/reloader.rb +12 -0
- data/actionpack/lib/action_dispatch/middleware/remote_ip.rb +183 -0
- data/actionpack/lib/action_dispatch/middleware/request_id.rb +43 -0
- data/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb +92 -0
- data/actionpack/lib/action_dispatch/middleware/session/cache_store.rb +54 -0
- data/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb +131 -0
- data/actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb +28 -0
- data/actionpack/lib/action_dispatch/middleware/show_exceptions.rb +62 -0
- data/actionpack/lib/action_dispatch/middleware/ssl.rb +144 -0
- data/actionpack/lib/action_dispatch/middleware/stack.rb +116 -0
- data/actionpack/lib/action_dispatch/middleware/static.rb +130 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +22 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +27 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +8 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +52 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +16 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/layout.erb +160 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
- data/actionpack/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
- data/actionpack/lib/action_dispatch/middleware/templates/routes/_table.html.erb +200 -0
- data/actionpack/lib/action_dispatch/railtie.rb +50 -0
- data/actionpack/lib/action_dispatch/request/session.rb +233 -0
- data/actionpack/lib/action_dispatch/request/utils.rb +76 -0
- data/actionpack/lib/action_dispatch/routing.rb +260 -0
- data/actionpack/lib/action_dispatch/routing/endpoint.rb +12 -0
- data/actionpack/lib/action_dispatch/routing/inspector.rb +225 -0
- data/actionpack/lib/action_dispatch/routing/mapper.rb +2256 -0
- data/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb +352 -0
- data/actionpack/lib/action_dispatch/routing/redirection.rb +201 -0
- data/actionpack/lib/action_dispatch/routing/route_set.rb +870 -0
- data/actionpack/lib/action_dispatch/routing/routes_proxy.rb +69 -0
- data/actionpack/lib/action_dispatch/routing/url_for.rb +218 -0
- data/actionpack/lib/action_dispatch/system_test_case.rb +133 -0
- data/actionpack/lib/action_dispatch/system_testing/driver.rb +55 -0
- data/actionpack/lib/action_dispatch/system_testing/server.rb +45 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +100 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +27 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/undef_methods.rb +26 -0
- data/actionpack/lib/action_dispatch/testing/assertion_response.rb +47 -0
- data/actionpack/lib/action_dispatch/testing/assertions.rb +24 -0
- data/actionpack/lib/action_dispatch/testing/assertions/response.rb +107 -0
- data/actionpack/lib/action_dispatch/testing/assertions/routing.rb +222 -0
- data/actionpack/lib/action_dispatch/testing/integration.rb +652 -0
- data/actionpack/lib/action_dispatch/testing/request_encoder.rb +55 -0
- data/actionpack/lib/action_dispatch/testing/test_process.rb +50 -0
- data/actionpack/lib/action_dispatch/testing/test_request.rb +71 -0
- data/actionpack/lib/action_dispatch/testing/test_response.rb +53 -0
- data/actionpack/lib/action_pack.rb +26 -0
- data/actionpack/lib/action_pack/gem_version.rb +17 -0
- data/actionpack/lib/action_pack/version.rb +10 -0
- data/actionpack/test/abstract/callbacks_test.rb +270 -0
- data/actionpack/test/abstract/collector_test.rb +65 -0
- data/actionpack/test/abstract/translation_test.rb +79 -0
- data/actionpack/test/abstract_unit.rb +451 -0
- data/actionpack/test/assertions/response_assertions_test.rb +141 -0
- data/actionpack/test/controller/action_pack_assertions_test.rb +493 -0
- data/actionpack/test/controller/api/conditional_get_test.rb +59 -0
- data/actionpack/test/controller/api/data_streaming_test.rb +28 -0
- data/actionpack/test/controller/api/force_ssl_test.rb +22 -0
- data/actionpack/test/controller/api/implicit_render_test.rb +17 -0
- data/actionpack/test/controller/api/params_wrapper_test.rb +28 -0
- data/actionpack/test/controller/api/redirect_to_test.rb +21 -0
- data/actionpack/test/controller/api/renderers_test.rb +50 -0
- data/actionpack/test/controller/api/url_for_test.rb +22 -0
- data/actionpack/test/controller/api/with_cookies_test.rb +23 -0
- data/actionpack/test/controller/api/with_helpers_test.rb +44 -0
- data/actionpack/test/controller/base_test.rb +323 -0
- data/actionpack/test/controller/caching_test.rb +503 -0
- data/actionpack/test/controller/content_type_test.rb +169 -0
- data/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/actionpack/test/controller/default_url_options_with_before_action_test.rb +28 -0
- data/actionpack/test/controller/filters_test.rb +1050 -0
- data/actionpack/test/controller/flash_hash_test.rb +216 -0
- data/actionpack/test/controller/flash_test.rb +371 -0
- data/actionpack/test/controller/force_ssl_test.rb +333 -0
- data/actionpack/test/controller/form_builder_test.rb +19 -0
- data/actionpack/test/controller/helper_test.rb +295 -0
- data/actionpack/test/controller/http_basic_authentication_test.rb +179 -0
- data/actionpack/test/controller/http_digest_authentication_test.rb +282 -0
- data/actionpack/test/controller/http_token_authentication_test.rb +216 -0
- data/actionpack/test/controller/integration_test.rb +1122 -0
- data/actionpack/test/controller/live_stream_test.rb +518 -0
- data/actionpack/test/controller/localized_templates_test.rb +48 -0
- data/actionpack/test/controller/log_subscriber_test.rb +371 -0
- data/actionpack/test/controller/metal/renderers_test.rb +50 -0
- data/actionpack/test/controller/metal_test.rb +32 -0
- data/actionpack/test/controller/mime/accept_format_test.rb +94 -0
- data/actionpack/test/controller/mime/respond_to_test.rb +843 -0
- data/actionpack/test/controller/new_base/bare_metal_test.rb +184 -0
- data/actionpack/test/controller/new_base/base_test.rb +134 -0
- data/actionpack/test/controller/new_base/content_negotiation_test.rb +28 -0
- data/actionpack/test/controller/new_base/content_type_test.rb +116 -0
- data/actionpack/test/controller/new_base/middleware_test.rb +112 -0
- data/actionpack/test/controller/new_base/render_action_test.rb +314 -0
- data/actionpack/test/controller/new_base/render_body_test.rb +172 -0
- data/actionpack/test/controller/new_base/render_context_test.rb +54 -0
- data/actionpack/test/controller/new_base/render_file_test.rb +72 -0
- data/actionpack/test/controller/new_base/render_html_test.rb +192 -0
- data/actionpack/test/controller/new_base/render_implicit_action_test.rb +59 -0
- data/actionpack/test/controller/new_base/render_layout_test.rb +128 -0
- data/actionpack/test/controller/new_base/render_partial_test.rb +62 -0
- data/actionpack/test/controller/new_base/render_plain_test.rb +170 -0
- data/actionpack/test/controller/new_base/render_streaming_test.rb +116 -0
- data/actionpack/test/controller/new_base/render_template_test.rb +240 -0
- data/actionpack/test/controller/new_base/render_test.rb +142 -0
- data/actionpack/test/controller/new_base/render_xml_test.rb +12 -0
- data/actionpack/test/controller/output_escaping_test.rb +17 -0
- data/actionpack/test/controller/parameter_encoding_test.rb +52 -0
- data/actionpack/test/controller/parameters/accessors_test.rb +279 -0
- data/actionpack/test/controller/parameters/always_permitted_parameters_test.rb +30 -0
- data/actionpack/test/controller/parameters/dup_test.rb +67 -0
- data/actionpack/test/controller/parameters/log_on_unpermitted_params_test.rb +70 -0
- data/actionpack/test/controller/parameters/multi_parameter_attributes_test.rb +39 -0
- data/actionpack/test/controller/parameters/mutators_test.rb +122 -0
- data/actionpack/test/controller/parameters/nested_parameters_permit_test.rb +184 -0
- data/actionpack/test/controller/parameters/parameters_permit_test.rb +513 -0
- data/actionpack/test/controller/parameters/raise_on_unpermitted_params_test.rb +33 -0
- data/actionpack/test/controller/parameters/serialization_test.rb +55 -0
- data/actionpack/test/controller/params_wrapper_test.rb +408 -0
- data/actionpack/test/controller/permitted_params_test.rb +27 -0
- data/actionpack/test/controller/redirect_test.rb +358 -0
- data/actionpack/test/controller/render_js_test.rb +36 -0
- data/actionpack/test/controller/render_json_test.rb +137 -0
- data/actionpack/test/controller/render_test.rb +810 -0
- data/actionpack/test/controller/render_xml_test.rb +102 -0
- data/actionpack/test/controller/renderer_test.rb +136 -0
- data/actionpack/test/controller/renderers_test.rb +91 -0
- data/actionpack/test/controller/request/test_request_test.rb +42 -0
- data/actionpack/test/controller/request_forgery_protection_test.rb +998 -0
- data/actionpack/test/controller/required_params_test.rb +100 -0
- data/actionpack/test/controller/rescue_test.rb +364 -0
- data/actionpack/test/controller/resources_test.rb +1369 -0
- data/actionpack/test/controller/routing_test.rb +2108 -0
- data/actionpack/test/controller/runner_test.rb +24 -0
- data/actionpack/test/controller/send_file_test.rb +259 -0
- data/actionpack/test/controller/show_exceptions_test.rb +114 -0
- data/actionpack/test/controller/streaming_test.rb +28 -0
- data/actionpack/test/controller/test_case_test.rb +1120 -0
- data/actionpack/test/controller/url_for_integration_test.rb +193 -0
- data/actionpack/test/controller/url_for_test.rb +519 -0
- data/actionpack/test/controller/url_rewriter_test.rb +92 -0
- data/actionpack/test/controller/webservice_test.rb +135 -0
- data/actionpack/test/dispatch/callbacks_test.rb +47 -0
- data/actionpack/test/dispatch/cookies_test.rb +1288 -0
- data/actionpack/test/dispatch/debug_exceptions_test.rb +502 -0
- data/actionpack/test/dispatch/debug_locks_test.rb +38 -0
- data/actionpack/test/dispatch/exception_wrapper_test.rb +120 -0
- data/actionpack/test/dispatch/executor_test.rb +136 -0
- data/actionpack/test/dispatch/header_test.rb +169 -0
- data/actionpack/test/dispatch/live_response_test.rb +98 -0
- data/actionpack/test/dispatch/mapper_test.rb +210 -0
- data/actionpack/test/dispatch/middleware_stack_test.rb +115 -0
- data/actionpack/test/dispatch/mime_type_test.rb +187 -0
- data/actionpack/test/dispatch/mount_test.rb +95 -0
- data/actionpack/test/dispatch/prefix_generation_test.rb +463 -0
- data/actionpack/test/dispatch/rack_cache_test.rb +23 -0
- data/actionpack/test/dispatch/reloader_test.rb +167 -0
- data/actionpack/test/dispatch/request/json_params_parsing_test.rb +207 -0
- data/actionpack/test/dispatch/request/multipart_params_parsing_test.rb +202 -0
- data/actionpack/test/dispatch/request/query_string_parsing_test.rb +176 -0
- data/actionpack/test/dispatch/request/session_test.rb +164 -0
- data/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb +181 -0
- data/actionpack/test/dispatch/request_id_test.rb +70 -0
- data/actionpack/test/dispatch/request_test.rb +1306 -0
- data/actionpack/test/dispatch/response_test.rb +536 -0
- data/actionpack/test/dispatch/routing/concerns_test.rb +124 -0
- data/actionpack/test/dispatch/routing/custom_url_helpers_test.rb +333 -0
- data/actionpack/test/dispatch/routing/inspector_test.rb +425 -0
- data/actionpack/test/dispatch/routing/ipv6_redirect_test.rb +46 -0
- data/actionpack/test/dispatch/routing/route_set_test.rb +166 -0
- data/actionpack/test/dispatch/routing_assertions_test.rb +132 -0
- data/actionpack/test/dispatch/routing_test.rb +5055 -0
- data/actionpack/test/dispatch/runner_test.rb +19 -0
- data/actionpack/test/dispatch/session/abstract_store_test.rb +58 -0
- data/actionpack/test/dispatch/session/cache_store_test.rb +183 -0
- data/actionpack/test/dispatch/session/cookie_store_test.rb +370 -0
- data/actionpack/test/dispatch/session/mem_cache_store_test.rb +205 -0
- data/actionpack/test/dispatch/session/test_session_test.rb +65 -0
- data/actionpack/test/dispatch/show_exceptions_test.rb +138 -0
- data/actionpack/test/dispatch/ssl_test.rb +220 -0
- data/actionpack/test/dispatch/static_test.rb +309 -0
- data/actionpack/test/dispatch/system_testing/driver_test.rb +37 -0
- data/actionpack/test/dispatch/system_testing/screenshot_helper_test.rb +74 -0
- data/actionpack/test/dispatch/system_testing/server_test.rb +19 -0
- data/actionpack/test/dispatch/system_testing/system_test_case_test.rb +67 -0
- data/actionpack/test/dispatch/test_request_test.rb +131 -0
- data/actionpack/test/dispatch/test_response_test.rb +37 -0
- data/actionpack/test/dispatch/uploaded_file_test.rb +113 -0
- data/actionpack/test/dispatch/url_generation_test.rb +141 -0
- data/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +5 -0
- data/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/actionpack/test/fixtures/collection_cache/index.html.erb +1 -0
- data/actionpack/test/fixtures/company.rb +11 -0
- data/actionpack/test/fixtures/customers/_commented_customer.html.erb +5 -0
- data/actionpack/test/fixtures/customers/_customer.html.erb +4 -0
- data/actionpack/test/fixtures/filter_test/implicit_actions/edit.html.erb +1 -0
- data/actionpack/test/fixtures/filter_test/implicit_actions/show.html.erb +1 -0
- data/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached_with_variant.html+phone.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached_without_digest.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers/fun/games_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers/just_me_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers/me_too_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers1_pack/pack1_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers2_pack/pack2_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb +6 -0
- data/actionpack/test/fixtures/implicit_render_test/empty_action_with_mobile_variant.html+mobile.erb +1 -0
- data/actionpack/test/fixtures/implicit_render_test/empty_action_with_template.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/_customers.erb +1 -0
- data/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/actionpack/test/fixtures/layouts/standard.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/actionpack/test/fixtures/layouts/with_html_partial.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/actionpack/test/fixtures/load_me.rb +4 -0
- data/actionpack/test/fixtures/localized/hello_world.de.html +1 -0
- data/actionpack/test/fixtures/localized/hello_world.en.html +1 -0
- data/actionpack/test/fixtures/localized/hello_world.it.erb +1 -0
- data/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/actionpack/test/fixtures/multipart/bracketed_utf8_param +5 -0
- data/actionpack/test/fixtures/multipart/empty +10 -0
- data/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/actionpack/test/fixtures/multipart/none +9 -0
- data/actionpack/test/fixtures/multipart/ruby_on_rails.jpg +0 -0
- data/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/actionpack/test/fixtures/multipart/single_utf8_param +5 -0
- data/actionpack/test/fixtures/multipart/text_file +10 -0
- data/actionpack/test/fixtures/multipart/utf8_filename +10 -0
- data/actionpack/test/fixtures/namespaced/implicit_render_test/hello_world.erb +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_content_types_for_respond_to.xml.erb +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_for_builder.builder +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_for_erb.erb +1 -0
- data/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/actionpack/test/fixtures/public/400.html +1 -0
- data/actionpack/test/fixtures/public/404.html +1 -0
- data/actionpack/test/fixtures/public/500.da.html +1 -0
- data/actionpack/test/fixtures/public/500.html +1 -0
- data/actionpack/test/fixtures/public/bar.html +1 -0
- data/actionpack/test/fixtures/public/bar/index.html +1 -0
- data/actionpack/test/fixtures/public/foo/bar.html +1 -0
- data/actionpack/test/fixtures/public/foo/baz.css +3 -0
- data/actionpack/test/fixtures/public/foo/index.html +1 -0
- data/actionpack/test/fixtures/public/foo/other-index.html +1 -0
- data/actionpack/test/fixtures/public/foo//343/201/223/343/202/223/343/201/253/343/201/241/343/201/257.html +1 -0
- data/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/actionpack/test/fixtures/public/gzip/foo.zoo +4 -0
- data/actionpack/test/fixtures/public/gzip/foo.zoo.gz +0 -0
- data/actionpack/test/fixtures/public/index.html +1 -0
- data/actionpack/test/fixtures/public/other-index.html +1 -0
- data/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+phablet.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+tablet.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_inline_syntax_without_block.html+phone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_with_implicit_template_rendering.html+mobile.erb +1 -0
- data/actionpack/test/fixtures/ruby_template.ruby +2 -0
- data/actionpack/test/fixtures/session_autoload_test/session_autoload_test/foo.rb +12 -0
- data/actionpack/test/fixtures/shared.html.erb +1 -0
- data/actionpack/test/fixtures/star_star_mime/index.js.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/actionpack/test/fixtures/test/hello/hello.erb +1 -0
- data/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/actionpack/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/actionpack/test/fixtures/test/with_implicit_template.erb +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/bar.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/bar/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/bar.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/baz.css +3 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/other-index.html +1 -0
- data/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/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo +4 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo.gz +0 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/other-index.html +1 -0
- data/actionpack/test/journey/gtg/builder_test.rb +81 -0
- data/actionpack/test/journey/gtg/transition_table_test.rb +125 -0
- data/actionpack/test/journey/nfa/simulator_test.rb +100 -0
- data/actionpack/test/journey/nfa/transition_table_test.rb +74 -0
- data/actionpack/test/journey/nodes/symbol_test.rb +19 -0
- data/actionpack/test/journey/path/pattern_test.rb +286 -0
- data/actionpack/test/journey/route/definition/parser_test.rb +112 -0
- data/actionpack/test/journey/route/definition/scanner_test.rb +71 -0
- data/actionpack/test/journey/route_test.rb +113 -0
- data/actionpack/test/journey/router/utils_test.rb +48 -0
- data/actionpack/test/journey/router_test.rb +535 -0
- data/actionpack/test/journey/routes_test.rb +62 -0
- data/actionpack/test/lib/controller/fake_controllers.rb +37 -0
- data/actionpack/test/lib/controller/fake_models.rb +79 -0
- data/actionpack/test/routing/helper_test.rb +33 -0
- data/actionview/.gitignore +2 -0
- data/actionview/CHANGELOG.md +35 -0
- data/actionview/MIT-LICENSE +21 -0
- data/actionview/README.rdoc +38 -0
- data/actionview/RUNNING_UJS_TESTS.rdoc +7 -0
- data/actionview/RUNNING_UNIT_TESTS.rdoc +27 -0
- data/actionview/Rakefile +136 -0
- data/actionview/actionview.gemspec +38 -0
- data/actionview/app/assets/javascripts/MIT-LICENSE +20 -0
- data/actionview/app/assets/javascripts/README.md +60 -0
- data/actionview/app/assets/javascripts/rails-ujs.coffee +39 -0
- data/actionview/app/assets/javascripts/rails-ujs/BANNER.js +5 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/confirm.coffee +26 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/disable.coffee +82 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/method.coffee +34 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/remote.coffee +90 -0
- data/actionview/app/assets/javascripts/rails-ujs/start.coffee +70 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/ajax.coffee +96 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/csrf.coffee +25 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/dom.coffee +28 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/event.coffee +40 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/form.coffee +36 -0
- data/actionview/bin/test +5 -0
- data/actionview/blade.yml +11 -0
- data/actionview/coffeelint.json +135 -0
- data/actionview/lib/action_view.rb +98 -0
- data/actionview/lib/action_view/base.rb +215 -0
- data/actionview/lib/action_view/buffers.rb +52 -0
- data/actionview/lib/action_view/context.rb +38 -0
- data/actionview/lib/action_view/dependency_tracker.rb +175 -0
- data/actionview/lib/action_view/digestor.rb +128 -0
- data/actionview/lib/action_view/flows.rb +76 -0
- data/actionview/lib/action_view/gem_version.rb +17 -0
- data/actionview/lib/action_view/helpers.rb +66 -0
- data/actionview/lib/action_view/helpers/active_model_helper.rb +51 -0
- data/actionview/lib/action_view/helpers/asset_tag_helper.rb +400 -0
- data/actionview/lib/action_view/helpers/asset_url_helper.rb +469 -0
- data/actionview/lib/action_view/helpers/atom_feed_helper.rb +205 -0
- data/actionview/lib/action_view/helpers/cache_helper.rb +263 -0
- data/actionview/lib/action_view/helpers/capture_helper.rb +212 -0
- data/actionview/lib/action_view/helpers/controller_helper.rb +36 -0
- data/actionview/lib/action_view/helpers/csrf_helper.rb +35 -0
- data/actionview/lib/action_view/helpers/date_helper.rb +1156 -0
- data/actionview/lib/action_view/helpers/debug_helper.rb +36 -0
- data/actionview/lib/action_view/helpers/form_helper.rb +2355 -0
- data/actionview/lib/action_view/helpers/form_options_helper.rb +883 -0
- data/actionview/lib/action_view/helpers/form_tag_helper.rb +916 -0
- data/actionview/lib/action_view/helpers/javascript_helper.rb +83 -0
- data/actionview/lib/action_view/helpers/number_helper.rb +451 -0
- data/actionview/lib/action_view/helpers/output_safety_helper.rb +70 -0
- data/actionview/lib/action_view/helpers/record_tag_helper.rb +23 -0
- data/actionview/lib/action_view/helpers/rendering_helper.rb +100 -0
- data/actionview/lib/action_view/helpers/sanitize_helper.rb +177 -0
- data/actionview/lib/action_view/helpers/tag_helper.rb +313 -0
- data/actionview/lib/action_view/helpers/tags.rb +44 -0
- data/actionview/lib/action_view/helpers/tags/base.rb +192 -0
- data/actionview/lib/action_view/helpers/tags/check_box.rb +66 -0
- data/actionview/lib/action_view/helpers/tags/checkable.rb +18 -0
- data/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb +36 -0
- data/actionview/lib/action_view/helpers/tags/collection_helpers.rb +119 -0
- data/actionview/lib/action_view/helpers/tags/collection_radio_buttons.rb +31 -0
- data/actionview/lib/action_view/helpers/tags/collection_select.rb +30 -0
- data/actionview/lib/action_view/helpers/tags/color_field.rb +27 -0
- data/actionview/lib/action_view/helpers/tags/date_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/date_select.rb +74 -0
- data/actionview/lib/action_view/helpers/tags/datetime_field.rb +32 -0
- data/actionview/lib/action_view/helpers/tags/datetime_local_field.rb +21 -0
- data/actionview/lib/action_view/helpers/tags/datetime_select.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/email_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/file_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/grouped_collection_select.rb +31 -0
- data/actionview/lib/action_view/helpers/tags/hidden_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/label.rb +85 -0
- data/actionview/lib/action_view/helpers/tags/month_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/number_field.rb +20 -0
- data/actionview/lib/action_view/helpers/tags/password_field.rb +14 -0
- data/actionview/lib/action_view/helpers/tags/placeholderable.rb +24 -0
- data/actionview/lib/action_view/helpers/tags/radio_button.rb +33 -0
- data/actionview/lib/action_view/helpers/tags/range_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/search_field.rb +27 -0
- data/actionview/lib/action_view/helpers/tags/select.rb +43 -0
- data/actionview/lib/action_view/helpers/tags/tel_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/text_area.rb +24 -0
- data/actionview/lib/action_view/helpers/tags/text_field.rb +34 -0
- data/actionview/lib/action_view/helpers/tags/time_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/time_select.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/time_zone_select.rb +22 -0
- data/actionview/lib/action_view/helpers/tags/translator.rb +44 -0
- data/actionview/lib/action_view/helpers/tags/url_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/week_field.rb +15 -0
- data/actionview/lib/action_view/helpers/text_helper.rb +486 -0
- data/actionview/lib/action_view/helpers/translation_helper.rb +141 -0
- data/actionview/lib/action_view/helpers/url_helper.rb +654 -0
- data/actionview/lib/action_view/layouts.rb +433 -0
- data/actionview/lib/action_view/locale/en.yml +56 -0
- data/actionview/lib/action_view/log_subscriber.rb +96 -0
- data/actionview/lib/action_view/lookup_context.rb +274 -0
- data/actionview/lib/action_view/model_naming.rb +14 -0
- data/actionview/lib/action_view/path_set.rb +100 -0
- data/actionview/lib/action_view/railtie.rb +75 -0
- data/actionview/lib/action_view/record_identifier.rb +112 -0
- data/actionview/lib/action_view/renderer/abstract_renderer.rb +55 -0
- data/actionview/lib/action_view/renderer/partial_renderer.rb +552 -0
- data/actionview/lib/action_view/renderer/partial_renderer/collection_caching.rb +57 -0
- data/actionview/lib/action_view/renderer/renderer.rb +56 -0
- data/actionview/lib/action_view/renderer/streaming_template_renderer.rb +103 -0
- data/actionview/lib/action_view/renderer/template_renderer.rb +102 -0
- data/actionview/lib/action_view/rendering.rb +155 -0
- data/actionview/lib/action_view/routing_url_for.rb +145 -0
- data/actionview/lib/action_view/tasks/cache_digests.rake +25 -0
- data/actionview/lib/action_view/template.rb +361 -0
- data/actionview/lib/action_view/template/error.rb +144 -0
- data/actionview/lib/action_view/template/handlers.rb +66 -0
- data/actionview/lib/action_view/template/handlers/builder.rb +25 -0
- data/actionview/lib/action_view/template/handlers/erb.rb +77 -0
- data/actionview/lib/action_view/template/handlers/erb/deprecated_erubis.rb +11 -0
- data/actionview/lib/action_view/template/handlers/erb/erubi.rb +83 -0
- data/actionview/lib/action_view/template/handlers/erb/erubis.rb +83 -0
- data/actionview/lib/action_view/template/handlers/html.rb +11 -0
- data/actionview/lib/action_view/template/handlers/raw.rb +11 -0
- data/actionview/lib/action_view/template/html.rb +34 -0
- data/actionview/lib/action_view/template/resolver.rb +391 -0
- data/actionview/lib/action_view/template/text.rb +33 -0
- data/actionview/lib/action_view/template/types.rb +57 -0
- data/actionview/lib/action_view/test_case.rb +300 -0
- data/actionview/lib/action_view/testing/resolvers.rb +54 -0
- data/actionview/lib/action_view/version.rb +10 -0
- data/actionview/lib/action_view/view_paths.rb +105 -0
- data/actionview/package.json +36 -0
- data/actionview/test/abstract_unit.rb +287 -0
- data/actionview/test/actionpack/abstract/abstract_controller_test.rb +292 -0
- data/actionview/test/actionpack/abstract/helper_test.rb +128 -0
- data/actionview/test/actionpack/abstract/layouts_test.rb +568 -0
- data/actionview/test/actionpack/abstract/render_test.rb +103 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/formatted.html.erb +1 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me4/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/action_with_ivars.erb +1 -0
- data/actionview/test/actionpack/abstract/views/helper_test.erb +1 -0
- data/actionview/test/actionpack/abstract/views/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/layouts/abstract_controller/testing/me4.erb +1 -0
- data/actionview/test/actionpack/abstract/views/layouts/application.erb +1 -0
- data/actionview/test/actionpack/abstract/views/naked_render.erb +1 -0
- data/actionview/test/actionpack/controller/capture_test.rb +83 -0
- data/actionview/test/actionpack/controller/layout_test.rb +270 -0
- data/actionview/test/actionpack/controller/render_test.rb +1294 -0
- data/actionview/test/actionpack/controller/view_paths_test.rb +174 -0
- data/actionview/test/active_record_unit.rb +92 -0
- data/actionview/test/activerecord/controller_runtime_test.rb +95 -0
- data/actionview/test/activerecord/debug_helper_test.rb +19 -0
- data/actionview/test/activerecord/form_helper_activerecord_test.rb +90 -0
- data/actionview/test/activerecord/polymorphic_routes_test.rb +780 -0
- data/actionview/test/activerecord/relation_cache_test.rb +23 -0
- data/actionview/test/activerecord/render_partial_with_record_identification_test.rb +198 -0
- data/actionview/test/fixtures/_top_level_partial.html.erb +1 -0
- data/actionview/test/fixtures/_top_level_partial_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/bad_customers/_bad_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/customers/_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/fun/games/_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/fun/games/hello_world.erb +1 -0
- data/actionview/test/fixtures/actionpack/good_customers/_good_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/hello.html +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/alt/layouts/alt.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/controller_name_space/nested.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/item.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/layout_test.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/symlinked/symlinked_layout.erb +5 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/views/goodbye.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/views/hello.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_column.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/_customers.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_partial_and_yield.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/_yield_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_yield_with_params.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb +3 -0
- data/actionview/test/fixtures/actionpack/layouts/builder.builder +3 -0
- data/actionview/test/fixtures/actionpack/layouts/partial_with_layout.erb +3 -0
- data/actionview/test/fixtures/actionpack/layouts/standard.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/standard.text.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/streaming.erb +4 -0
- data/actionview/test/fixtures/actionpack/layouts/talk_from_action.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/with_html_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/xhr.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield_with_render_inline_inside.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield_with_render_partial_inside.erb +2 -0
- data/actionview/test/fixtures/actionpack/quiz/questions/_question.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/shared.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_changing_priority.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_changing_priority.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_counter.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_counter.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_counter_with_as.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_greeting.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_iteration.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_iteration_with_as.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_with_var.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_directory/_partial_with_locales.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_first_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_hash_greeting.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_hash_object.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_hello.builder +1 -0
- data/actionview/test/fixtures/actionpack/test/_json_change_priority.json.erb +0 -0
- data/actionview/test/fixtures/actionpack/test/_labelling_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_layout_for_partial.html.erb +3 -0
- data/actionview/test/fixtures/actionpack/test/_partial.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial.js.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_for_use_in_layout.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_html_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_name_local_variable.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_only_html.html +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_with_partial.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_person.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_raise_indentation.html.erb +13 -0
- data/actionview/test/fixtures/actionpack/test/_second_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/action_talk_to_layout.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/calling_partial_with_layout.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/capturing.erb +4 -0
- data/actionview/test/fixtures/actionpack/test/change_priority.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/content_for.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/content_for_concatenated.erb +3 -0
- data/actionview/test/fixtures/actionpack/test/content_for_with_parameter.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_html_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.builder +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.xml.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/greeting.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/greeting.xml.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello,world.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello.builder +4 -0
- data/actionview/test/fixtures/actionpack/test/hello/hello.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_container.builder +3 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_from_rxml.builder +3 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_with_layout_false.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_with_partial.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/hello_xml_world.builder +11 -0
- data/actionview/test/fixtures/actionpack/test/html_template.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hyphen-ated.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/implicit_content_type.atom.builder +2 -0
- data/actionview/test/fixtures/actionpack/test/list.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/non_erb_block_content_for.builder +4 -0
- data/actionview/test/fixtures/actionpack/test/potential_conflicts.erb +4 -0
- data/actionview/test/fixtures/actionpack/test/proper_block_detection.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_from_template.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_locals.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_locals_and_default.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_partial_inside_directory.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_to_string_test.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_two_partials.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/using_layout_around_block.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_html_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_partial.text.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_xml_template.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.de.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.html+grid.erb +1 -0
- data/actionview/test/fixtures/comments/empty.html.builder +1 -0
- data/actionview/test/fixtures/comments/empty.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.xml.erb +1 -0
- data/actionview/test/fixtures/companies.yml +24 -0
- data/actionview/test/fixtures/company.rb +11 -0
- data/actionview/test/fixtures/custom_pattern/another.html.erb +1 -0
- data/actionview/test/fixtures/custom_pattern/html/another.erb +1 -0
- data/actionview/test/fixtures/custom_pattern/html/path.erb +1 -0
- data/actionview/test/fixtures/customers/_customer.html.erb +1 -0
- data/actionview/test/fixtures/customers/_customer.xml.erb +1 -0
- data/actionview/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/actionview/test/fixtures/developer.rb +8 -0
- data/actionview/test/fixtures/developers.yml +21 -0
- data/actionview/test/fixtures/developers/_developer.erb +1 -0
- data/actionview/test/fixtures/developers_projects.yml +13 -0
- data/actionview/test/fixtures/digestor/api/comments/_comment.json.erb +1 -0
- data/actionview/test/fixtures/digestor/api/comments/_comments.json.erb +1 -0
- data/actionview/test/fixtures/digestor/comments/_comment.html.erb +1 -0
- data/actionview/test/fixtures/digestor/comments/_comments.html.erb +1 -0
- data/actionview/test/fixtures/digestor/events/_completed.html.erb +0 -0
- data/actionview/test/fixtures/digestor/events/_event.html.erb +0 -0
- data/actionview/test/fixtures/digestor/events/index.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/_recursion.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/below/_header.html.erb +0 -0
- data/actionview/test/fixtures/digestor/level/below/index.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/recursion.html.erb +1 -0
- data/actionview/test/fixtures/digestor/messages/_form.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/_header.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/_message.html.erb +1 -0
- data/actionview/test/fixtures/digestor/messages/actions/_move.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/edit.html.erb +5 -0
- data/actionview/test/fixtures/digestor/messages/index.html.erb +2 -0
- data/actionview/test/fixtures/digestor/messages/new.html+iphone.erb +15 -0
- data/actionview/test/fixtures/digestor/messages/peek.html.erb +2 -0
- data/actionview/test/fixtures/digestor/messages/show.html.erb +14 -0
- data/actionview/test/fixtures/digestor/messages/thread.json.erb +1 -0
- data/actionview/test/fixtures/fun/games/_game.erb +1 -0
- data/actionview/test/fixtures/fun/games/hello_world.erb +1 -0
- data/actionview/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/actionview/test/fixtures/games/_game.erb +1 -0
- data/actionview/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/actionview/test/fixtures/helpers/abc_helper.rb +5 -0
- data/actionview/test/fixtures/helpers/helpery_test_helper.rb +7 -0
- data/actionview/test/fixtures/helpers_missing/invalid_require_helper.rb +6 -0
- data/actionview/test/fixtures/layout_tests/alt/hello.erb +1 -0
- data/actionview/test/fixtures/layouts/_column.html.erb +2 -0
- data/actionview/test/fixtures/layouts/_customers.erb +1 -0
- data/actionview/test/fixtures/layouts/_partial_and_yield.erb +2 -0
- data/actionview/test/fixtures/layouts/_yield_only.erb +1 -0
- data/actionview/test/fixtures/layouts/_yield_with_params.erb +1 -0
- data/actionview/test/fixtures/layouts/render_partial_html.erb +2 -0
- data/actionview/test/fixtures/layouts/streaming.erb +4 -0
- data/actionview/test/fixtures/layouts/streaming_with_capture.erb +6 -0
- data/actionview/test/fixtures/layouts/yield.erb +2 -0
- data/actionview/test/fixtures/layouts/yield_with_render_inline_inside.erb +2 -0
- data/actionview/test/fixtures/layouts/yield_with_render_partial_inside.erb +2 -0
- data/actionview/test/fixtures/mascot.rb +5 -0
- data/actionview/test/fixtures/mascots.yml +4 -0
- data/actionview/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/actionview/test/fixtures/override/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/actionview/test/fixtures/plain_text.raw +1 -0
- data/actionview/test/fixtures/plain_text_with_characters.raw +1 -0
- data/actionview/test/fixtures/project.rb +9 -0
- data/actionview/test/fixtures/projects.yml +7 -0
- data/actionview/test/fixtures/projects/_project.erb +1 -0
- data/actionview/test/fixtures/public/.gitignore +1 -0
- data/actionview/test/fixtures/public/elsewhere/cools.js +1 -0
- data/actionview/test/fixtures/public/elsewhere/file.css +1 -0
- data/actionview/test/fixtures/public/foo/baz.css +3 -0
- data/actionview/test/fixtures/public/javascripts/application.js +1 -0
- data/actionview/test/fixtures/public/javascripts/bank.js +1 -0
- data/actionview/test/fixtures/public/javascripts/common.javascript +1 -0
- data/actionview/test/fixtures/public/javascripts/controls.js +1 -0
- data/actionview/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/actionview/test/fixtures/public/javascripts/effects.js +1 -0
- data/actionview/test/fixtures/public/javascripts/prototype.js +1 -0
- data/actionview/test/fixtures/public/javascripts/robber.js +1 -0
- data/actionview/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/actionview/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/actionview/test/fixtures/public/stylesheets/bank.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/random.styles +1 -0
- data/actionview/test/fixtures/public/stylesheets/robber.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/actionview/test/fixtures/replies.yml +15 -0
- data/actionview/test/fixtures/replies/_reply.erb +1 -0
- data/actionview/test/fixtures/reply.rb +9 -0
- data/actionview/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/actionview/test/fixtures/ruby_template.ruby +2 -0
- data/actionview/test/fixtures/shared.html.erb +1 -0
- data/actionview/test/fixtures/test/_200.html.erb +1 -0
- data/actionview/test/fixtures/test/_FooBar.html.erb +1 -0
- data/actionview/test/fixtures/test/_a-in.html.erb +0 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial_with_object.html.erb +1 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial_with_object_counter.html.erb +1 -0
- data/actionview/test/fixtures/test/_builder_tag_nested_in_content_tag.erb +3 -0
- data/actionview/test/fixtures/test/_cached_customer.erb +3 -0
- data/actionview/test/fixtures/test/_cached_customer_as.erb +3 -0
- data/actionview/test/fixtures/test/_cached_nested_cached_customer.erb +3 -0
- data/actionview/test/fixtures/test/_changing_priority.html.erb +1 -0
- data/actionview/test/fixtures/test/_changing_priority.json.erb +1 -0
- data/actionview/test/fixtures/test/_content_tag_nested_in_content_tag.erb +3 -0
- data/actionview/test/fixtures/test/_counter.html.erb +1 -0
- data/actionview/test/fixtures/test/_customer.erb +1 -0
- data/actionview/test/fixtures/test/_customer.mobile.erb +1 -0
- data/actionview/test/fixtures/test/_customer_greeting.erb +1 -0
- data/actionview/test/fixtures/test/_customer_with_var.erb +1 -0
- data/actionview/test/fixtures/test/_directory/_partial_with_locales.html.erb +1 -0
- data/actionview/test/fixtures/test/_first_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/test/_from_helper.erb +1 -0
- data/actionview/test/fixtures/test/_json_change_priority.json.erb +0 -0
- data/actionview/test/fixtures/test/_klass.erb +1 -0
- data/actionview/test/fixtures/test/_label_with_block.erb +4 -0
- data/actionview/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/actionview/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/actionview/test/fixtures/test/_layout_with_partial_and_yield.html.erb +4 -0
- data/actionview/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/actionview/test/fixtures/test/_nested_cached_customer.erb +1 -0
- data/actionview/test/fixtures/test/_object_inspector.erb +1 -0
- data/actionview/test/fixtures/test/_one.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial.erb +1 -0
- data/actionview/test/fixtures/test/_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial.js.erb +1 -0
- data/actionview/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial_iteration_1.erb +1 -0
- data/actionview/test/fixtures/test/_partial_iteration_2.erb +1 -0
- data/actionview/test/fixtures/test/_partial_name_in_local_assigns.erb +1 -0
- data/actionview/test/fixtures/test/_partial_name_local_variable.erb +1 -0
- data/actionview/test/fixtures/test/_partial_only.erb +1 -0
- data/actionview/test/fixtures/test/_partial_shortcut_with_block_content.html.erb +3 -0
- data/actionview/test/fixtures/test/_partial_with_layout.erb +2 -0
- data/actionview/test/fixtures/test/_partial_with_layout_block_content.erb +4 -0
- data/actionview/test/fixtures/test/_partial_with_layout_block_partial.erb +4 -0
- data/actionview/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial_with_partial.erb +2 -0
- data/actionview/test/fixtures/test/_partial_with_variants.html+grid.erb +1 -0
- data/actionview/test/fixtures/test/_partialhtml.html +1 -0
- data/actionview/test/fixtures/test/_raise.html.erb +1 -0
- data/actionview/test/fixtures/test/_raise_indentation.html.erb +13 -0
- data/actionview/test/fixtures/test/_second_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/test/_two.html.erb +1 -0
- data/actionview/test/fixtures/test/_utf8_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_utf8_partial_magic.html.erb +2 -0
- data/actionview/test/fixtures/test/_/360/237/215/243.erb +1 -0
- data/actionview/test/fixtures/test/basic.html.erb +1 -0
- data/actionview/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/actionview/test/fixtures/test/change_priority.html.erb +2 -0
- data/actionview/test/fixtures/test/dont_pick_me +1 -0
- data/actionview/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/test/greeting.xml.erb +1 -0
- data/actionview/test/fixtures/test/hello.builder +4 -0
- data/actionview/test/fixtures/test/hello/hello.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.erb~ +1 -0
- data/actionview/test/fixtures/test/hello_world.html+phone.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.text+phone.erb +1 -0
- data/actionview/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/actionview/test/fixtures/test/html_template.html.erb +1 -0
- data/actionview/test/fixtures/test/layout_render_file.erb +2 -0
- data/actionview/test/fixtures/test/layout_render_object.erb +1 -0
- data/actionview/test/fixtures/test/list.erb +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.en.html.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.html.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed~ +1 -0
- data/actionview/test/fixtures/test/nested_layout.erb +3 -0
- data/actionview/test/fixtures/test/nested_streaming.erb +3 -0
- data/actionview/test/fixtures/test/nil_return.erb +1 -0
- data/actionview/test/fixtures/test/one.html.erb +1 -0
- data/actionview/test/fixtures/test/render_file_inspect_local_assigns.erb +1 -0
- data/actionview/test/fixtures/test/render_file_instance_variable.erb +1 -0
- data/actionview/test/fixtures/test/render_file_unicode_local.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_locals_and_default.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_ruby_keyword_locals.erb +1 -0
- data/actionview/test/fixtures/test/render_partial_inside_directory.html.erb +1 -0
- data/actionview/test/fixtures/test/render_two_partials.html.erb +2 -0
- data/actionview/test/fixtures/test/streaming.erb +3 -0
- data/actionview/test/fixtures/test/streaming_buster.erb +3 -0
- data/actionview/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/actionview/test/fixtures/test/template.erb +1 -0
- data/actionview/test/fixtures/test/test_template_with_delegation_reserved_keywords.erb +1 -0
- data/actionview/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/actionview/test/fixtures/test/utf8.html.erb +4 -0
- data/actionview/test/fixtures/test/utf8_magic.html.erb +5 -0
- data/actionview/test/fixtures/test/utf8_magic_with_bare_partial.html.erb +5 -0
- data/actionview/test/fixtures/topic.rb +5 -0
- data/actionview/test/fixtures/topics.yml +22 -0
- data/actionview/test/fixtures/topics/_topic.html.erb +1 -0
- data/actionview/test/fixtures/translations/templates/array.erb +1 -0
- data/actionview/test/fixtures/translations/templates/default.erb +1 -0
- data/actionview/test/fixtures/translations/templates/found.erb +1 -0
- data/actionview/test/fixtures/translations/templates/missing.erb +1 -0
- data/actionview/test/fixtures/with_format.json.erb +1 -0
- data/actionview/test/lib/controller/fake_models.rb +204 -0
- data/actionview/test/template/active_model_helper_test.rb +100 -0
- data/actionview/test/template/asset_tag_helper_test.rb +831 -0
- data/actionview/test/template/atom_feed_helper_test.rb +375 -0
- data/actionview/test/template/capture_helper_test.rb +228 -0
- data/actionview/test/template/compiled_templates_test.rb +94 -0
- data/actionview/test/template/controller_helper_test.rb +34 -0
- data/actionview/test/template/date_helper_i18n_test.rb +166 -0
- data/actionview/test/template/date_helper_test.rb +3642 -0
- data/actionview/test/template/dependency_tracker_test.rb +195 -0
- data/actionview/test/template/digestor_test.rb +388 -0
- data/actionview/test/template/erb/deprecated_erubis_implementation_test.rb +15 -0
- data/actionview/test/template/erb/form_for_test.rb +13 -0
- data/actionview/test/template/erb/helper.rb +26 -0
- data/actionview/test/template/erb/tag_helper_test.rb +32 -0
- data/actionview/test/template/erb_util_test.rb +114 -0
- data/actionview/test/template/form_collections_helper_test.rb +527 -0
- data/actionview/test/template/form_helper/form_with_test.rb +2239 -0
- data/actionview/test/template/form_helper_test.rb +3522 -0
- data/actionview/test/template/form_options_helper_i18n_test.rb +30 -0
- data/actionview/test/template/form_options_helper_test.rb +1417 -0
- data/actionview/test/template/form_tag_helper_test.rb +785 -0
- data/actionview/test/template/html_test.rb +19 -0
- data/actionview/test/template/javascript_helper_test.rb +64 -0
- data/actionview/test/template/log_subscriber_test.rb +224 -0
- data/actionview/test/template/lookup_context_test.rb +289 -0
- data/actionview/test/template/number_helper_test.rb +204 -0
- data/actionview/test/template/output_safety_helper_test.rb +119 -0
- data/actionview/test/template/partial_iteration_test.rb +35 -0
- data/actionview/test/template/record_identifier_test.rb +93 -0
- data/actionview/test/template/record_tag_helper_test.rb +33 -0
- data/actionview/test/template/render_test.rb +725 -0
- data/actionview/test/template/resolver_cache_test.rb +9 -0
- data/actionview/test/template/resolver_patterns_test.rb +44 -0
- data/actionview/test/template/sanitize_helper_test.rb +43 -0
- data/actionview/test/template/streaming_render_test.rb +113 -0
- data/actionview/test/template/tag_helper_test.rb +357 -0
- data/actionview/test/template/template_error_test.rb +37 -0
- data/actionview/test/template/template_test.rb +207 -0
- data/actionview/test/template/test_case_test.rb +335 -0
- data/actionview/test/template/test_test.rb +94 -0
- data/actionview/test/template/testing/fixture_resolver_test.rb +20 -0
- data/actionview/test/template/testing/null_resolver_test.rb +14 -0
- data/actionview/test/template/text_helper_test.rb +535 -0
- data/actionview/test/template/text_test.rb +25 -0
- data/actionview/test/template/translation_helper_test.rb +238 -0
- data/actionview/test/template/url_helper_test.rb +969 -0
- data/actionview/test/ujs/.gitignore +1 -0
- data/actionview/test/ujs/config.ru +6 -0
- data/actionview/test/ujs/public/test/.eslintrc.yml +21 -0
- data/actionview/test/ujs/public/test/call-remote-callbacks.js +273 -0
- data/actionview/test/ujs/public/test/call-remote.js +275 -0
- data/actionview/test/ujs/public/test/csrf-refresh.js +24 -0
- data/actionview/test/ujs/public/test/csrf-token.js +27 -0
- data/actionview/test/ujs/public/test/data-confirm.js +316 -0
- data/actionview/test/ujs/public/test/data-disable-with.js +391 -0
- data/actionview/test/ujs/public/test/data-disable.js +321 -0
- data/actionview/test/ujs/public/test/data-method.js +85 -0
- data/actionview/test/ujs/public/test/data-remote.js +438 -0
- data/actionview/test/ujs/public/test/override.js +56 -0
- data/actionview/test/ujs/public/test/settings.js +116 -0
- data/actionview/test/ujs/public/vendor/jquery-2.2.0.js +9831 -0
- data/actionview/test/ujs/public/vendor/jquery.metadata.js +122 -0
- data/actionview/test/ujs/public/vendor/qunit.css +237 -0
- data/actionview/test/ujs/public/vendor/qunit.js +2288 -0
- data/actionview/test/ujs/server.rb +74 -0
- data/actionview/test/ujs/views/layouts/application.html.erb +25 -0
- data/actionview/test/ujs/views/tests/index.html.erb +11 -0
- data/activejob/CHANGELOG.md +8 -0
- data/activejob/MIT-LICENSE +21 -0
- data/activejob/README.md +126 -0
- data/activejob/Rakefile +79 -0
- data/activejob/activejob.gemspec +30 -0
- data/activejob/bin/test +5 -0
- data/activejob/lib/active_job.rb +39 -0
- data/activejob/lib/active_job/arguments.rb +156 -0
- data/activejob/lib/active_job/base.rb +74 -0
- data/activejob/lib/active_job/callbacks.rb +155 -0
- data/activejob/lib/active_job/configured_job.rb +18 -0
- data/activejob/lib/active_job/core.rb +140 -0
- data/activejob/lib/active_job/enqueuing.rb +59 -0
- data/activejob/lib/active_job/exceptions.rb +124 -0
- data/activejob/lib/active_job/execution.rb +49 -0
- data/activejob/lib/active_job/gem_version.rb +17 -0
- data/activejob/lib/active_job/logging.rb +130 -0
- data/activejob/lib/active_job/queue_adapter.rb +66 -0
- data/activejob/lib/active_job/queue_adapters.rb +139 -0
- data/activejob/lib/active_job/queue_adapters/async_adapter.rb +116 -0
- data/activejob/lib/active_job/queue_adapters/backburner_adapter.rb +36 -0
- data/activejob/lib/active_job/queue_adapters/delayed_job_adapter.rb +43 -0
- data/activejob/lib/active_job/queue_adapters/inline_adapter.rb +23 -0
- data/activejob/lib/active_job/queue_adapters/qu_adapter.rb +46 -0
- data/activejob/lib/active_job/queue_adapters/que_adapter.rb +39 -0
- data/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb +58 -0
- data/activejob/lib/active_job/queue_adapters/resque_adapter.rb +53 -0
- data/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb +47 -0
- data/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb +48 -0
- data/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb +49 -0
- data/activejob/lib/active_job/queue_adapters/test_adapter.rb +67 -0
- data/activejob/lib/active_job/queue_name.rb +49 -0
- data/activejob/lib/active_job/queue_priority.rb +43 -0
- data/activejob/lib/active_job/railtie.rb +34 -0
- data/activejob/lib/active_job/test_case.rb +11 -0
- data/activejob/lib/active_job/test_helper.rb +448 -0
- data/activejob/lib/active_job/translation.rb +13 -0
- data/activejob/lib/active_job/version.rb +10 -0
- data/activejob/lib/rails/generators/job/job_generator.rb +40 -0
- data/activejob/lib/rails/generators/job/templates/application_job.rb +9 -0
- data/activejob/lib/rails/generators/job/templates/job.rb +9 -0
- data/activejob/test/adapters/async.rb +4 -0
- data/activejob/test/adapters/backburner.rb +5 -0
- data/activejob/test/adapters/delayed_job.rb +8 -0
- data/activejob/test/adapters/inline.rb +3 -0
- data/activejob/test/adapters/qu.rb +5 -0
- data/activejob/test/adapters/que.rb +6 -0
- data/activejob/test/adapters/queue_classic.rb +4 -0
- data/activejob/test/adapters/resque.rb +4 -0
- data/activejob/test/adapters/sidekiq.rb +4 -0
- data/activejob/test/adapters/sneakers.rb +4 -0
- data/activejob/test/adapters/sucker_punch.rb +4 -0
- data/activejob/test/adapters/test.rb +5 -0
- data/activejob/test/cases/adapter_test.rb +9 -0
- data/activejob/test/cases/argument_serialization_test.rb +113 -0
- data/activejob/test/cases/callbacks_test.rb +25 -0
- data/activejob/test/cases/exceptions_test.rb +109 -0
- data/activejob/test/cases/job_serialization_test.rb +57 -0
- data/activejob/test/cases/logging_test.rb +137 -0
- data/activejob/test/cases/queue_adapter_test.rb +51 -0
- data/activejob/test/cases/queue_naming_test.rb +104 -0
- data/activejob/test/cases/queue_priority_test.rb +49 -0
- data/activejob/test/cases/queuing_test.rb +44 -0
- data/activejob/test/cases/rescue_test.rb +36 -0
- data/activejob/test/cases/test_case_test.rb +25 -0
- data/activejob/test/cases/test_helper_test.rb +929 -0
- data/activejob/test/cases/translation_test.rb +22 -0
- data/activejob/test/helper.rb +18 -0
- data/activejob/test/integration/queuing_test.rb +117 -0
- data/activejob/test/jobs/application_job.rb +4 -0
- data/activejob/test/jobs/callback_job.rb +29 -0
- data/activejob/test/jobs/gid_job.rb +9 -0
- data/activejob/test/jobs/hello_job.rb +9 -0
- data/activejob/test/jobs/inherited_job.rb +7 -0
- data/activejob/test/jobs/kwargs_job.rb +9 -0
- data/activejob/test/jobs/logging_job.rb +11 -0
- data/activejob/test/jobs/nested_job.rb +11 -0
- data/activejob/test/jobs/overridden_logging_job.rb +11 -0
- data/activejob/test/jobs/provider_jid_job.rb +9 -0
- data/activejob/test/jobs/queue_adapter_job.rb +5 -0
- data/activejob/test/jobs/queue_as_job.rb +12 -0
- data/activejob/test/jobs/rescue_job.rb +29 -0
- data/activejob/test/jobs/retry_job.rb +31 -0
- data/activejob/test/jobs/translated_hello_job.rb +12 -0
- data/activejob/test/models/person.rb +22 -0
- data/activejob/test/support/backburner/inline.rb +10 -0
- data/activejob/test/support/delayed_job/delayed/backend/test.rb +112 -0
- data/activejob/test/support/delayed_job/delayed/serialization/test.rb +0 -0
- data/activejob/test/support/integration/adapters/async.rb +12 -0
- data/activejob/test/support/integration/adapters/backburner.rb +39 -0
- data/activejob/test/support/integration/adapters/delayed_job.rb +23 -0
- data/activejob/test/support/integration/adapters/inline.rb +16 -0
- data/activejob/test/support/integration/adapters/qu.rb +40 -0
- data/activejob/test/support/integration/adapters/que.rb +41 -0
- data/activejob/test/support/integration/adapters/queue_classic.rb +39 -0
- data/activejob/test/support/integration/adapters/resque.rb +51 -0
- data/activejob/test/support/integration/adapters/sidekiq.rb +104 -0
- data/activejob/test/support/integration/adapters/sneakers.rb +90 -0
- data/activejob/test/support/integration/adapters/sucker_punch.rb +8 -0
- data/activejob/test/support/integration/dummy_app_template.rb +32 -0
- data/activejob/test/support/integration/helper.rb +33 -0
- data/activejob/test/support/integration/jobs_manager.rb +29 -0
- data/activejob/test/support/integration/test_case_helpers.rb +65 -0
- data/activejob/test/support/job_buffer.rb +21 -0
- data/activejob/test/support/que/inline.rb +16 -0
- data/activejob/test/support/queue_classic/inline.rb +25 -0
- data/activejob/test/support/sneakers/inline.rb +14 -0
- data/activemodel/CHANGELOG.md +41 -0
- data/activemodel/MIT-LICENSE +21 -0
- data/activemodel/README.rdoc +264 -0
- data/activemodel/Rakefile +23 -0
- data/activemodel/activemodel.gemspec +29 -0
- data/activemodel/bin/test +5 -0
- data/activemodel/lib/active_model.rb +74 -0
- data/activemodel/lib/active_model/attribute_assignment.rb +55 -0
- data/activemodel/lib/active_model/attribute_methods.rb +478 -0
- data/activemodel/lib/active_model/callbacks.rb +153 -0
- data/activemodel/lib/active_model/conversion.rb +111 -0
- data/activemodel/lib/active_model/dirty.rb +274 -0
- data/activemodel/lib/active_model/errors.rb +513 -0
- data/activemodel/lib/active_model/forbidden_attributes_protection.rb +31 -0
- data/activemodel/lib/active_model/gem_version.rb +17 -0
- data/activemodel/lib/active_model/lint.rb +118 -0
- data/activemodel/lib/active_model/locale/en.yml +36 -0
- data/activemodel/lib/active_model/model.rb +99 -0
- data/activemodel/lib/active_model/naming.rb +318 -0
- data/activemodel/lib/active_model/railtie.rb +14 -0
- data/activemodel/lib/active_model/secure_password.rb +129 -0
- data/activemodel/lib/active_model/serialization.rb +192 -0
- data/activemodel/lib/active_model/serializers/json.rb +146 -0
- data/activemodel/lib/active_model/translation.rb +70 -0
- data/activemodel/lib/active_model/type.rb +49 -0
- data/activemodel/lib/active_model/type/big_integer.rb +15 -0
- data/activemodel/lib/active_model/type/binary.rb +52 -0
- data/activemodel/lib/active_model/type/boolean.rb +34 -0
- data/activemodel/lib/active_model/type/date.rb +56 -0
- data/activemodel/lib/active_model/type/date_time.rb +50 -0
- data/activemodel/lib/active_model/type/decimal.rb +70 -0
- data/activemodel/lib/active_model/type/float.rb +36 -0
- data/activemodel/lib/active_model/type/helpers.rb +6 -0
- data/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb +41 -0
- data/activemodel/lib/active_model/type/helpers/mutable.rb +20 -0
- data/activemodel/lib/active_model/type/helpers/numeric.rb +37 -0
- data/activemodel/lib/active_model/type/helpers/time_value.rb +79 -0
- data/activemodel/lib/active_model/type/immutable_string.rb +32 -0
- data/activemodel/lib/active_model/type/integer.rb +70 -0
- data/activemodel/lib/active_model/type/registry.rb +70 -0
- data/activemodel/lib/active_model/type/string.rb +26 -0
- data/activemodel/lib/active_model/type/time.rb +48 -0
- data/activemodel/lib/active_model/type/value.rb +122 -0
- data/activemodel/lib/active_model/validations.rb +439 -0
- data/activemodel/lib/active_model/validations/absence.rb +33 -0
- data/activemodel/lib/active_model/validations/acceptance.rb +106 -0
- data/activemodel/lib/active_model/validations/callbacks.rb +116 -0
- data/activemodel/lib/active_model/validations/clusivity.rb +54 -0
- data/activemodel/lib/active_model/validations/confirmation.rb +80 -0
- data/activemodel/lib/active_model/validations/exclusion.rb +49 -0
- data/activemodel/lib/active_model/validations/format.rb +114 -0
- data/activemodel/lib/active_model/validations/helper_methods.rb +15 -0
- data/activemodel/lib/active_model/validations/inclusion.rb +47 -0
- data/activemodel/lib/active_model/validations/length.rb +123 -0
- data/activemodel/lib/active_model/validations/numericality.rb +165 -0
- data/activemodel/lib/active_model/validations/presence.rb +39 -0
- data/activemodel/lib/active_model/validations/validates.rb +174 -0
- data/activemodel/lib/active_model/validations/with.rb +147 -0
- data/activemodel/lib/active_model/validator.rb +183 -0
- data/activemodel/lib/active_model/version.rb +10 -0
- data/activemodel/test/cases/attribute_assignment_test.rb +131 -0
- data/activemodel/test/cases/attribute_methods_test.rb +283 -0
- data/activemodel/test/cases/callbacks_test.rb +134 -0
- data/activemodel/test/cases/conversion_test.rb +52 -0
- data/activemodel/test/cases/dirty_test.rb +222 -0
- data/activemodel/test/cases/errors_test.rb +420 -0
- data/activemodel/test/cases/forbidden_attributes_protection_test.rb +44 -0
- data/activemodel/test/cases/helper.rb +25 -0
- data/activemodel/test/cases/lint_test.rb +22 -0
- data/activemodel/test/cases/model_test.rb +79 -0
- data/activemodel/test/cases/naming_test.rb +282 -0
- data/activemodel/test/cases/railtie_test.rb +34 -0
- data/activemodel/test/cases/secure_password_test.rb +220 -0
- data/activemodel/test/cases/serialization_test.rb +177 -0
- data/activemodel/test/cases/serializers/json_serialization_test.rb +204 -0
- data/activemodel/test/cases/translation_test.rb +113 -0
- data/activemodel/test/cases/type/big_integer_test.rb +26 -0
- data/activemodel/test/cases/type/binary_test.rb +17 -0
- data/activemodel/test/cases/type/boolean_test.rb +41 -0
- data/activemodel/test/cases/type/date_test.rb +21 -0
- data/activemodel/test/cases/type/date_time_test.rb +40 -0
- data/activemodel/test/cases/type/decimal_test.rb +74 -0
- data/activemodel/test/cases/type/float_test.rb +32 -0
- data/activemodel/test/cases/type/immutable_string_test.rb +23 -0
- data/activemodel/test/cases/type/integer_test.rb +118 -0
- data/activemodel/test/cases/type/registry_test.rb +43 -0
- data/activemodel/test/cases/type/string_test.rb +39 -0
- data/activemodel/test/cases/type/time_test.rb +23 -0
- data/activemodel/test/cases/type/value_test.rb +16 -0
- data/activemodel/test/cases/validations/absence_validation_test.rb +69 -0
- data/activemodel/test/cases/validations/acceptance_validation_test.rb +88 -0
- data/activemodel/test/cases/validations/callbacks_test.rb +145 -0
- data/activemodel/test/cases/validations/conditional_validation_test.rb +149 -0
- data/activemodel/test/cases/validations/confirmation_validation_test.rb +121 -0
- data/activemodel/test/cases/validations/exclusion_validation_test.rb +109 -0
- data/activemodel/test/cases/validations/format_validation_test.rb +149 -0
- data/activemodel/test/cases/validations/i18n_generate_message_validation_test.rb +152 -0
- data/activemodel/test/cases/validations/i18n_validation_test.rb +344 -0
- data/activemodel/test/cases/validations/inclusion_validation_test.rb +161 -0
- data/activemodel/test/cases/validations/length_validation_test.rb +413 -0
- data/activemodel/test/cases/validations/numericality_validation_test.rb +305 -0
- data/activemodel/test/cases/validations/presence_validation_test.rb +107 -0
- data/activemodel/test/cases/validations/validates_test.rb +159 -0
- data/activemodel/test/cases/validations/validations_context_test.rb +70 -0
- data/activemodel/test/cases/validations/with_validation_test.rb +185 -0
- data/activemodel/test/cases/validations_test.rb +465 -0
- data/activemodel/test/models/account.rb +7 -0
- data/activemodel/test/models/blog_post.rb +11 -0
- data/activemodel/test/models/contact.rb +42 -0
- data/activemodel/test/models/custom_reader.rb +17 -0
- data/activemodel/test/models/helicopter.rb +9 -0
- data/activemodel/test/models/person.rb +19 -0
- data/activemodel/test/models/person_with_validator.rb +26 -0
- data/activemodel/test/models/reply.rb +34 -0
- data/activemodel/test/models/sheep.rb +5 -0
- data/activemodel/test/models/topic.rb +41 -0
- data/activemodel/test/models/track_back.rb +13 -0
- data/activemodel/test/models/user.rb +12 -0
- data/activemodel/test/models/visitor.rb +12 -0
- data/activemodel/test/validators/email_validator.rb +8 -0
- data/activemodel/test/validators/namespace/email_validator.rb +8 -0
- data/activerecord/CHANGELOG.md +242 -0
- data/activerecord/MIT-LICENSE +20 -0
- data/activerecord/README.rdoc +217 -0
- data/activerecord/RUNNING_UNIT_TESTS.rdoc +51 -0
- data/activerecord/Rakefile +142 -0
- data/activerecord/activerecord.gemspec +35 -0
- data/activerecord/bin/test +20 -0
- data/activerecord/examples/.gitignore +1 -0
- data/activerecord/examples/performance.rb +185 -0
- data/activerecord/examples/simple.rb +15 -0
- data/activerecord/lib/active_record.rb +183 -0
- data/activerecord/lib/active_record/aggregations.rb +284 -0
- data/activerecord/lib/active_record/association_relation.rb +40 -0
- data/activerecord/lib/active_record/associations.rb +1885 -0
- data/activerecord/lib/active_record/associations/alias_tracker.rb +94 -0
- data/activerecord/lib/active_record/associations/association.rb +284 -0
- data/activerecord/lib/active_record/associations/association_scope.rb +181 -0
- data/activerecord/lib/active_record/associations/belongs_to_association.rb +113 -0
- data/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +42 -0
- data/activerecord/lib/active_record/associations/builder/association.rb +145 -0
- data/activerecord/lib/active_record/associations/builder/belongs_to.rb +150 -0
- data/activerecord/lib/active_record/associations/builder/collection_association.rb +82 -0
- data/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb +135 -0
- data/activerecord/lib/active_record/associations/builder/has_many.rb +17 -0
- data/activerecord/lib/active_record/associations/builder/has_one.rb +30 -0
- data/activerecord/lib/active_record/associations/builder/singular_association.rb +42 -0
- data/activerecord/lib/active_record/associations/collection_association.rb +505 -0
- data/activerecord/lib/active_record/associations/collection_proxy.rb +1159 -0
- data/activerecord/lib/active_record/associations/foreign_association.rb +13 -0
- data/activerecord/lib/active_record/associations/has_many_association.rb +135 -0
- data/activerecord/lib/active_record/associations/has_many_through_association.rb +216 -0
- data/activerecord/lib/active_record/associations/has_one_association.rb +111 -0
- data/activerecord/lib/active_record/associations/has_one_through_association.rb +42 -0
- data/activerecord/lib/active_record/associations/join_dependency.rb +287 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_association.rb +61 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_part.rb +64 -0
- data/activerecord/lib/active_record/associations/preloader.rb +204 -0
- data/activerecord/lib/active_record/associations/preloader/association.rb +133 -0
- data/activerecord/lib/active_record/associations/preloader/belongs_to.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/collection_association.rb +19 -0
- data/activerecord/lib/active_record/associations/preloader/has_many.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/has_many_through.rb +21 -0
- data/activerecord/lib/active_record/associations/preloader/has_one.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/has_one_through.rb +11 -0
- data/activerecord/lib/active_record/associations/preloader/singular_association.rb +20 -0
- data/activerecord/lib/active_record/associations/preloader/through_association.rb +111 -0
- data/activerecord/lib/active_record/associations/singular_association.rb +79 -0
- data/activerecord/lib/active_record/associations/through_association.rb +108 -0
- data/activerecord/lib/active_record/attribute.rb +242 -0
- data/activerecord/lib/active_record/attribute/user_provided_default.rb +32 -0
- data/activerecord/lib/active_record/attribute_assignment.rb +93 -0
- data/activerecord/lib/active_record/attribute_decorators.rb +90 -0
- data/activerecord/lib/active_record/attribute_methods.rb +449 -0
- data/activerecord/lib/active_record/attribute_methods/before_type_cast.rb +78 -0
- data/activerecord/lib/active_record/attribute_methods/dirty.rb +251 -0
- data/activerecord/lib/active_record/attribute_methods/primary_key.rb +141 -0
- data/activerecord/lib/active_record/attribute_methods/query.rb +42 -0
- data/activerecord/lib/active_record/attribute_methods/read.rb +84 -0
- data/activerecord/lib/active_record/attribute_methods/serialization.rb +90 -0
- data/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
- data/activerecord/lib/active_record/attribute_methods/write.rb +67 -0
- data/activerecord/lib/active_record/attribute_mutation_tracker.rb +111 -0
- data/activerecord/lib/active_record/attribute_set.rb +113 -0
- data/activerecord/lib/active_record/attribute_set/builder.rb +126 -0
- data/activerecord/lib/active_record/attribute_set/yaml_encoder.rb +43 -0
- data/activerecord/lib/active_record/attributes.rb +266 -0
- data/activerecord/lib/active_record/autosave_association.rb +490 -0
- data/activerecord/lib/active_record/base.rb +329 -0
- data/activerecord/lib/active_record/callbacks.rb +349 -0
- data/activerecord/lib/active_record/coders/json.rb +15 -0
- data/activerecord/lib/active_record/coders/yaml_column.rb +50 -0
- data/activerecord/lib/active_record/collection_cache_key.rb +51 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +990 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb +67 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +491 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +140 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +216 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_creation.rb +145 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +654 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +1378 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/transaction.rb +274 -0
- data/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +599 -0
- data/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +885 -0
- data/activerecord/lib/active_record/connection_adapters/column.rb +91 -0
- data/activerecord/lib/active_record/connection_adapters/connection_specification.rb +275 -0
- data/activerecord/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +24 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/database_statements.rb +97 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_definitions.rb +92 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_dumper.rb +73 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb +139 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
- data/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb +125 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/column.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid.rb +33 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/array.rb +82 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/range.rb +93 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb +152 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +51 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_creation.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +195 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +38 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +678 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +838 -0
- data/activerecord/lib/active_record/connection_adapters/schema_cache.rb +118 -0
- data/activerecord/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/quoting.rb +62 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +30 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +102 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +531 -0
- data/activerecord/lib/active_record/connection_adapters/statement_pool.rb +61 -0
- data/activerecord/lib/active_record/connection_handling.rb +145 -0
- data/activerecord/lib/active_record/core.rb +560 -0
- data/activerecord/lib/active_record/counter_cache.rb +214 -0
- data/activerecord/lib/active_record/define_callbacks.rb +22 -0
- data/activerecord/lib/active_record/dynamic_matchers.rb +122 -0
- data/activerecord/lib/active_record/enum.rb +241 -0
- data/activerecord/lib/active_record/errors.rb +342 -0
- data/activerecord/lib/active_record/explain.rb +50 -0
- data/activerecord/lib/active_record/explain_registry.rb +32 -0
- data/activerecord/lib/active_record/explain_subscriber.rb +34 -0
- data/activerecord/lib/active_record/fixture_set/file.rb +82 -0
- data/activerecord/lib/active_record/fixtures.rb +1074 -0
- data/activerecord/lib/active_record/gem_version.rb +17 -0
- data/activerecord/lib/active_record/inheritance.rb +254 -0
- data/activerecord/lib/active_record/integration.rb +155 -0
- data/activerecord/lib/active_record/internal_metadata.rb +45 -0
- data/activerecord/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/activerecord/lib/active_record/locale/en.yml +48 -0
- data/activerecord/lib/active_record/locking/optimistic.rb +212 -0
- data/activerecord/lib/active_record/locking/pessimistic.rb +88 -0
- data/activerecord/lib/active_record/log_subscriber.rb +96 -0
- data/activerecord/lib/active_record/migration.rb +1340 -0
- data/activerecord/lib/active_record/migration/command_recorder.rb +240 -0
- data/activerecord/lib/active_record/migration/compatibility.rb +170 -0
- data/activerecord/lib/active_record/migration/join_table.rb +17 -0
- data/activerecord/lib/active_record/model_schema.rb +515 -0
- data/activerecord/lib/active_record/nested_attributes.rb +589 -0
- data/activerecord/lib/active_record/no_touching.rb +58 -0
- data/activerecord/lib/active_record/null_relation.rb +68 -0
- data/activerecord/lib/active_record/persistence.rb +623 -0
- data/activerecord/lib/active_record/query_cache.rb +49 -0
- data/activerecord/lib/active_record/querying.rb +70 -0
- data/activerecord/lib/active_record/railtie.rb +214 -0
- data/activerecord/lib/active_record/railties/console_sandbox.rb +7 -0
- data/activerecord/lib/active_record/railties/controller_runtime.rb +56 -0
- data/activerecord/lib/active_record/railties/databases.rake +369 -0
- data/activerecord/lib/active_record/railties/jdbcmysql_error.rb +18 -0
- data/activerecord/lib/active_record/readonly_attributes.rb +24 -0
- data/activerecord/lib/active_record/reflection.rb +1102 -0
- data/activerecord/lib/active_record/relation.rb +730 -0
- data/activerecord/lib/active_record/relation/batches.rb +280 -0
- data/activerecord/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/activerecord/lib/active_record/relation/calculations.rb +407 -0
- data/activerecord/lib/active_record/relation/delegation.rb +113 -0
- data/activerecord/lib/active_record/relation/finder_methods.rb +566 -0
- data/activerecord/lib/active_record/relation/from_clause.rb +26 -0
- data/activerecord/lib/active_record/relation/merger.rb +168 -0
- data/activerecord/lib/active_record/relation/predicate_builder.rb +133 -0
- data/activerecord/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/activerecord/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
- data/activerecord/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
- data/activerecord/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
- data/activerecord/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +54 -0
- data/activerecord/lib/active_record/relation/predicate_builder/range_handler.rb +41 -0
- data/activerecord/lib/active_record/relation/predicate_builder/relation_handler.rb +15 -0
- data/activerecord/lib/active_record/relation/query_attribute.rb +26 -0
- data/activerecord/lib/active_record/relation/query_methods.rb +1194 -0
- data/activerecord/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/activerecord/lib/active_record/relation/spawn_methods.rb +77 -0
- data/activerecord/lib/active_record/relation/where_clause.rb +172 -0
- data/activerecord/lib/active_record/relation/where_clause_factory.rb +35 -0
- data/activerecord/lib/active_record/result.rb +149 -0
- data/activerecord/lib/active_record/runtime_registry.rb +24 -0
- data/activerecord/lib/active_record/sanitization.rb +216 -0
- data/activerecord/lib/active_record/schema.rb +70 -0
- data/activerecord/lib/active_record/schema_dumper.rb +254 -0
- data/activerecord/lib/active_record/schema_migration.rb +56 -0
- data/activerecord/lib/active_record/scoping.rb +106 -0
- data/activerecord/lib/active_record/scoping/default.rb +152 -0
- data/activerecord/lib/active_record/scoping/named.rb +199 -0
- data/activerecord/lib/active_record/secure_token.rb +40 -0
- data/activerecord/lib/active_record/serialization.rb +22 -0
- data/activerecord/lib/active_record/statement_cache.rb +121 -0
- data/activerecord/lib/active_record/store.rb +211 -0
- data/activerecord/lib/active_record/suppressor.rb +61 -0
- data/activerecord/lib/active_record/table_metadata.rb +75 -0
- data/activerecord/lib/active_record/tasks/database_tasks.rb +327 -0
- data/activerecord/lib/active_record/tasks/mysql_database_tasks.rb +162 -0
- data/activerecord/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
- data/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
- data/activerecord/lib/active_record/timestamp.rb +146 -0
- data/activerecord/lib/active_record/touch_later.rb +64 -0
- data/activerecord/lib/active_record/transactions.rb +499 -0
- data/activerecord/lib/active_record/translation.rb +24 -0
- data/activerecord/lib/active_record/type.rb +79 -0
- data/activerecord/lib/active_record/type/adapter_specific_registry.rb +136 -0
- data/activerecord/lib/active_record/type/date.rb +9 -0
- data/activerecord/lib/active_record/type/date_time.rb +9 -0
- data/activerecord/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/activerecord/lib/active_record/type/hash_lookup_type_map.rb +25 -0
- data/activerecord/lib/active_record/type/internal/timezone.rb +17 -0
- data/activerecord/lib/active_record/type/json.rb +30 -0
- data/activerecord/lib/active_record/type/serialized.rb +67 -0
- data/activerecord/lib/active_record/type/text.rb +11 -0
- data/activerecord/lib/active_record/type/time.rb +21 -0
- data/activerecord/lib/active_record/type/type_map.rb +62 -0
- data/activerecord/lib/active_record/type/unsigned_integer.rb +17 -0
- data/activerecord/lib/active_record/type_caster.rb +9 -0
- data/activerecord/lib/active_record/type_caster/connection.rb +33 -0
- data/activerecord/lib/active_record/type_caster/map.rb +23 -0
- data/activerecord/lib/active_record/validations.rb +93 -0
- data/activerecord/lib/active_record/validations/absence.rb +25 -0
- data/activerecord/lib/active_record/validations/associated.rb +60 -0
- data/activerecord/lib/active_record/validations/length.rb +26 -0
- data/activerecord/lib/active_record/validations/presence.rb +68 -0
- data/activerecord/lib/active_record/validations/uniqueness.rb +240 -0
- data/activerecord/lib/active_record/version.rb +10 -0
- data/activerecord/lib/rails/generators/active_record.rb +19 -0
- data/activerecord/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/activerecord/lib/rails/generators/active_record/application_record/templates/application_record.rb +5 -0
- data/activerecord/lib/rails/generators/active_record/migration.rb +35 -0
- data/activerecord/lib/rails/generators/active_record/migration/migration_generator.rb +78 -0
- data/activerecord/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +24 -0
- data/activerecord/lib/rails/generators/active_record/migration/templates/migration.rb +46 -0
- data/activerecord/lib/rails/generators/active_record/model/model_generator.rb +48 -0
- data/activerecord/lib/rails/generators/active_record/model/templates/model.rb +13 -0
- data/activerecord/lib/rails/generators/active_record/model/templates/module.rb +7 -0
- data/activerecord/test/.gitignore +1 -0
- data/activerecord/test/active_record/connection_adapters/fake_adapter.rb +51 -0
- data/activerecord/test/assets/example.log +1 -0
- data/activerecord/test/assets/flowers.jpg +0 -0
- data/activerecord/test/assets/schema_dump_5_1.yml +345 -0
- data/activerecord/test/assets/test.txt +1 -0
- data/activerecord/test/cases/adapter_test.rb +404 -0
- data/activerecord/test/cases/adapters/mysql2/active_schema_test.rb +195 -0
- data/activerecord/test/cases/adapters/mysql2/bind_parameter_test.rb +52 -0
- data/activerecord/test/cases/adapters/mysql2/boolean_test.rb +102 -0
- data/activerecord/test/cases/adapters/mysql2/case_sensitivity_test.rb +65 -0
- data/activerecord/test/cases/adapters/mysql2/charset_collation_test.rb +56 -0
- data/activerecord/test/cases/adapters/mysql2/connection_test.rb +225 -0
- data/activerecord/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +54 -0
- data/activerecord/test/cases/adapters/mysql2/enum_test.rb +23 -0
- data/activerecord/test/cases/adapters/mysql2/explain_test.rb +23 -0
- data/activerecord/test/cases/adapters/mysql2/json_test.rb +24 -0
- data/activerecord/test/cases/adapters/mysql2/mysql2_adapter_test.rb +77 -0
- data/activerecord/test/cases/adapters/mysql2/schema_migrations_test.rb +65 -0
- data/activerecord/test/cases/adapters/mysql2/schema_test.rb +128 -0
- data/activerecord/test/cases/adapters/mysql2/sp_test.rb +38 -0
- data/activerecord/test/cases/adapters/mysql2/sql_types_test.rb +16 -0
- data/activerecord/test/cases/adapters/mysql2/table_options_test.rb +44 -0
- data/activerecord/test/cases/adapters/mysql2/transaction_test.rb +69 -0
- data/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb +68 -0
- data/activerecord/test/cases/adapters/mysql2/virtual_column_test.rb +61 -0
- data/activerecord/test/cases/adapters/postgresql/active_schema_test.rb +100 -0
- data/activerecord/test/cases/adapters/postgresql/array_test.rb +388 -0
- data/activerecord/test/cases/adapters/postgresql/bit_string_test.rb +84 -0
- data/activerecord/test/cases/adapters/postgresql/bytea_test.rb +137 -0
- data/activerecord/test/cases/adapters/postgresql/case_insensitive_test.rb +28 -0
- data/activerecord/test/cases/adapters/postgresql/change_schema_test.rb +40 -0
- data/activerecord/test/cases/adapters/postgresql/cidr_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/citext_test.rb +80 -0
- data/activerecord/test/cases/adapters/postgresql/collation_test.rb +55 -0
- data/activerecord/test/cases/adapters/postgresql/composite_test.rb +134 -0
- data/activerecord/test/cases/adapters/postgresql/connection_test.rb +272 -0
- data/activerecord/test/cases/adapters/postgresql/datatype_test.rb +93 -0
- data/activerecord/test/cases/adapters/postgresql/domain_test.rb +49 -0
- data/activerecord/test/cases/adapters/postgresql/enum_test.rb +93 -0
- data/activerecord/test/cases/adapters/postgresql/explain_test.rb +22 -0
- data/activerecord/test/cases/adapters/postgresql/extension_migration_test.rb +65 -0
- data/activerecord/test/cases/adapters/postgresql/full_text_test.rb +46 -0
- data/activerecord/test/cases/adapters/postgresql/geometric_test.rb +373 -0
- data/activerecord/test/cases/adapters/postgresql/hstore_test.rb +380 -0
- data/activerecord/test/cases/adapters/postgresql/infinity_test.rb +71 -0
- data/activerecord/test/cases/adapters/postgresql/integer_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/json_test.rb +52 -0
- data/activerecord/test/cases/adapters/postgresql/ltree_test.rb +55 -0
- data/activerecord/test/cases/adapters/postgresql/money_test.rb +98 -0
- data/activerecord/test/cases/adapters/postgresql/network_test.rb +96 -0
- data/activerecord/test/cases/adapters/postgresql/numbers_test.rb +51 -0
- data/activerecord/test/cases/adapters/postgresql/postgresql_adapter_test.rb +390 -0
- data/activerecord/test/cases/adapters/postgresql/prepared_statements_disabled_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/quoting_test.rb +45 -0
- data/activerecord/test/cases/adapters/postgresql/range_test.rb +351 -0
- data/activerecord/test/cases/adapters/postgresql/referential_integrity_test.rb +113 -0
- data/activerecord/test/cases/adapters/postgresql/rename_table_test.rb +36 -0
- data/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb +110 -0
- data/activerecord/test/cases/adapters/postgresql/schema_test.rb +592 -0
- data/activerecord/test/cases/adapters/postgresql/serial_test.rb +88 -0
- data/activerecord/test/cases/adapters/postgresql/statement_pool_test.rb +43 -0
- data/activerecord/test/cases/adapters/postgresql/timestamp_test.rb +92 -0
- data/activerecord/test/cases/adapters/postgresql/transaction_test.rb +104 -0
- data/activerecord/test/cases/adapters/postgresql/type_lookup_test.rb +35 -0
- data/activerecord/test/cases/adapters/postgresql/utils_test.rb +64 -0
- data/activerecord/test/cases/adapters/postgresql/uuid_test.rb +376 -0
- data/activerecord/test/cases/adapters/postgresql/xml_test.rb +56 -0
- data/activerecord/test/cases/adapters/sqlite3/collation_test.rb +55 -0
- data/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb +101 -0
- data/activerecord/test/cases/adapters/sqlite3/explain_test.rb +23 -0
- data/activerecord/test/cases/adapters/sqlite3/quoting_test.rb +58 -0
- data/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +421 -0
- data/activerecord/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +26 -0
- data/activerecord/test/cases/adapters/sqlite3/statement_pool_test.rb +21 -0
- data/activerecord/test/cases/aggregations_test.rb +170 -0
- data/activerecord/test/cases/ar_schema_test.rb +145 -0
- data/activerecord/test/cases/associations/belongs_to_associations_test.rb +1196 -0
- data/activerecord/test/cases/associations/bidirectional_destroy_dependencies_test.rb +43 -0
- data/activerecord/test/cases/associations/callbacks_test.rb +191 -0
- data/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +184 -0
- data/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +44 -0
- data/activerecord/test/cases/associations/eager_load_nested_include_test.rb +126 -0
- data/activerecord/test/cases/associations/eager_singularization_test.rb +148 -0
- data/activerecord/test/cases/associations/eager_test.rb +1500 -0
- data/activerecord/test/cases/associations/extension_test.rb +94 -0
- data/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +1033 -0
- data/activerecord/test/cases/associations/has_many_associations_test.rb +2619 -0
- data/activerecord/test/cases/associations/has_many_through_associations_test.rb +1309 -0
- data/activerecord/test/cases/associations/has_one_associations_test.rb +727 -0
- data/activerecord/test/cases/associations/has_one_through_associations_test.rb +392 -0
- data/activerecord/test/cases/associations/inner_join_association_test.rb +141 -0
- data/activerecord/test/cases/associations/inverse_associations_test.rb +727 -0
- data/activerecord/test/cases/associations/join_model_test.rb +778 -0
- data/activerecord/test/cases/associations/left_outer_join_association_test.rb +90 -0
- data/activerecord/test/cases/associations/nested_through_associations_test.rb +581 -0
- data/activerecord/test/cases/associations/required_test.rb +132 -0
- data/activerecord/test/cases/associations_test.rb +370 -0
- data/activerecord/test/cases/attribute_decorators_test.rb +127 -0
- data/activerecord/test/cases/attribute_methods/read_test.rb +61 -0
- data/activerecord/test/cases/attribute_methods_test.rb +1038 -0
- data/activerecord/test/cases/attribute_set_test.rb +255 -0
- data/activerecord/test/cases/attribute_test.rb +255 -0
- data/activerecord/test/cases/attributes_test.rb +269 -0
- data/activerecord/test/cases/autosave_association_test.rb +1738 -0
- data/activerecord/test/cases/base_test.rb +1460 -0
- data/activerecord/test/cases/batches_test.rb +676 -0
- data/activerecord/test/cases/binary_test.rb +46 -0
- data/activerecord/test/cases/bind_parameter_test.rb +108 -0
- data/activerecord/test/cases/cache_key_test.rb +53 -0
- data/activerecord/test/cases/calculations_test.rb +894 -0
- data/activerecord/test/cases/callbacks_test.rb +479 -0
- data/activerecord/test/cases/clone_test.rb +42 -0
- data/activerecord/test/cases/coders/json_test.rb +17 -0
- data/activerecord/test/cases/coders/yaml_column_test.rb +66 -0
- data/activerecord/test/cases/collection_cache_key_test.rb +117 -0
- data/activerecord/test/cases/column_alias_test.rb +19 -0
- data/activerecord/test/cases/column_definition_test.rb +34 -0
- data/activerecord/test/cases/comment_test.rb +146 -0
- data/activerecord/test/cases/connection_adapters/adapter_leasing_test.rb +58 -0
- data/activerecord/test/cases/connection_adapters/connection_handler_test.rb +232 -0
- data/activerecord/test/cases/connection_adapters/connection_specification_test.rb +14 -0
- data/activerecord/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +257 -0
- data/activerecord/test/cases/connection_adapters/mysql_type_lookup_test.rb +78 -0
- data/activerecord/test/cases/connection_adapters/schema_cache_test.rb +101 -0
- data/activerecord/test/cases/connection_adapters/type_lookup_test.rb +120 -0
- data/activerecord/test/cases/connection_management_test.rb +114 -0
- data/activerecord/test/cases/connection_pool_test.rb +569 -0
- data/activerecord/test/cases/connection_specification/resolver_test.rb +137 -0
- data/activerecord/test/cases/core_test.rb +114 -0
- data/activerecord/test/cases/counter_cache_test.rb +367 -0
- data/activerecord/test/cases/custom_locking_test.rb +19 -0
- data/activerecord/test/cases/database_statements_test.rb +37 -0
- data/activerecord/test/cases/date_test.rb +46 -0
- data/activerecord/test/cases/date_time_precision_test.rb +89 -0
- data/activerecord/test/cases/date_time_test.rb +76 -0
- data/activerecord/test/cases/defaults_test.rb +209 -0
- data/activerecord/test/cases/dirty_test.rb +871 -0
- data/activerecord/test/cases/disconnected_test.rb +32 -0
- data/activerecord/test/cases/dup_test.rb +161 -0
- data/activerecord/test/cases/enum_test.rb +493 -0
- data/activerecord/test/cases/errors_test.rb +18 -0
- data/activerecord/test/cases/explain_subscriber_test.rb +66 -0
- data/activerecord/test/cases/explain_test.rb +89 -0
- data/activerecord/test/cases/finder_respond_to_test.rb +61 -0
- data/activerecord/test/cases/finder_test.rb +1282 -0
- data/activerecord/test/cases/fixture_set/file_test.rb +158 -0
- data/activerecord/test/cases/fixtures_test.rb +1096 -0
- data/activerecord/test/cases/forbidden_attributes_protection_test.rb +166 -0
- data/activerecord/test/cases/habtm_destroy_order_test.rb +63 -0
- data/activerecord/test/cases/helper.rb +187 -0
- data/activerecord/test/cases/hot_compatibility_test.rb +144 -0
- data/activerecord/test/cases/i18n_test.rb +46 -0
- data/activerecord/test/cases/inheritance_test.rb +613 -0
- data/activerecord/test/cases/integration_test.rb +234 -0
- data/activerecord/test/cases/invalid_connection_test.rb +26 -0
- data/activerecord/test/cases/invertible_migration_test.rb +380 -0
- data/activerecord/test/cases/json_attribute_test.rb +35 -0
- data/activerecord/test/cases/json_serialization_test.rb +311 -0
- data/activerecord/test/cases/json_shared_test_cases.rb +256 -0
- data/activerecord/test/cases/locking_test.rb +651 -0
- data/activerecord/test/cases/log_subscriber_test.rb +219 -0
- data/activerecord/test/cases/migration/change_schema_test.rb +468 -0
- data/activerecord/test/cases/migration/change_table_test.rb +258 -0
- data/activerecord/test/cases/migration/column_attributes_test.rb +188 -0
- data/activerecord/test/cases/migration/column_positioning_test.rb +58 -0
- data/activerecord/test/cases/migration/columns_test.rb +319 -0
- data/activerecord/test/cases/migration/command_recorder_test.rb +347 -0
- data/activerecord/test/cases/migration/compatibility_test.rb +238 -0
- data/activerecord/test/cases/migration/create_join_table_test.rb +168 -0
- data/activerecord/test/cases/migration/foreign_key_test.rb +339 -0
- data/activerecord/test/cases/migration/helper.rb +41 -0
- data/activerecord/test/cases/migration/index_test.rb +218 -0
- data/activerecord/test/cases/migration/logger_test.rb +38 -0
- data/activerecord/test/cases/migration/pending_migrations_test.rb +42 -0
- data/activerecord/test/cases/migration/references_foreign_key_test.rb +257 -0
- data/activerecord/test/cases/migration/references_index_test.rb +103 -0
- data/activerecord/test/cases/migration/references_statements_test.rb +138 -0
- data/activerecord/test/cases/migration/rename_table_test.rb +118 -0
- data/activerecord/test/cases/migration_test.rb +1122 -0
- data/activerecord/test/cases/migrator_test.rb +473 -0
- data/activerecord/test/cases/mixin_test.rb +64 -0
- data/activerecord/test/cases/modules_test.rb +174 -0
- data/activerecord/test/cases/multiparameter_attributes_test.rb +399 -0
- data/activerecord/test/cases/multiple_db_test.rb +119 -0
- data/activerecord/test/cases/nested_attributes_test.rb +1097 -0
- data/activerecord/test/cases/nested_attributes_with_callbacks_test.rb +146 -0
- data/activerecord/test/cases/null_relation_test.rb +84 -0
- data/activerecord/test/cases/numeric_data_test.rb +73 -0
- data/activerecord/test/cases/persistence_test.rb +1063 -0
- data/activerecord/test/cases/pooled_connections_test.rb +83 -0
- data/activerecord/test/cases/primary_keys_test.rb +466 -0
- data/activerecord/test/cases/query_cache_test.rb +577 -0
- data/activerecord/test/cases/quoting_test.rb +275 -0
- data/activerecord/test/cases/readonly_test.rb +120 -0
- data/activerecord/test/cases/reaper_test.rb +87 -0
- data/activerecord/test/cases/reflection_test.rb +533 -0
- data/activerecord/test/cases/relation/delegation_test.rb +57 -0
- data/activerecord/test/cases/relation/merging_test.rb +157 -0
- data/activerecord/test/cases/relation/mutation_test.rb +145 -0
- data/activerecord/test/cases/relation/or_test.rb +130 -0
- data/activerecord/test/cases/relation/predicate_builder_test.rb +18 -0
- data/activerecord/test/cases/relation/record_fetch_warning_test.rb +42 -0
- data/activerecord/test/cases/relation/where_chain_test.rb +107 -0
- data/activerecord/test/cases/relation/where_clause_test.rb +241 -0
- data/activerecord/test/cases/relation/where_test.rb +366 -0
- data/activerecord/test/cases/relation_test.rb +331 -0
- data/activerecord/test/cases/relations_test.rb +1923 -0
- data/activerecord/test/cases/reload_models_test.rb +26 -0
- data/activerecord/test/cases/reserved_word_test.rb +134 -0
- data/activerecord/test/cases/result_test.rb +90 -0
- data/activerecord/test/cases/sanitize_test.rb +182 -0
- data/activerecord/test/cases/schema_dumper_test.rb +507 -0
- data/activerecord/test/cases/schema_loading_test.rb +54 -0
- data/activerecord/test/cases/scoping/default_scoping_test.rb +547 -0
- data/activerecord/test/cases/scoping/named_scoping_test.rb +577 -0
- data/activerecord/test/cases/scoping/relation_scoping_test.rb +402 -0
- data/activerecord/test/cases/secure_token_test.rb +34 -0
- data/activerecord/test/cases/serialization_test.rb +106 -0
- data/activerecord/test/cases/serialized_attribute_test.rb +382 -0
- data/activerecord/test/cases/statement_cache_test.rb +137 -0
- data/activerecord/test/cases/store_test.rb +197 -0
- data/activerecord/test/cases/suppressor_test.rb +77 -0
- data/activerecord/test/cases/tasks/database_tasks_test.rb +491 -0
- data/activerecord/test/cases/tasks/mysql_rake_test.rb +388 -0
- data/activerecord/test/cases/tasks/postgresql_rake_test.rb +374 -0
- data/activerecord/test/cases/tasks/sqlite_rake_test.rb +267 -0
- data/activerecord/test/cases/test_case.rb +138 -0
- data/activerecord/test/cases/test_fixtures_test.rb +20 -0
- data/activerecord/test/cases/time_precision_test.rb +85 -0
- data/activerecord/test/cases/timestamp_test.rb +478 -0
- data/activerecord/test/cases/touch_later_test.rb +123 -0
- data/activerecord/test/cases/transaction_callbacks_test.rb +595 -0
- data/activerecord/test/cases/transaction_isolation_test.rb +108 -0
- data/activerecord/test/cases/transactions_test.rb +1030 -0
- data/activerecord/test/cases/type/adapter_specific_registry_test.rb +135 -0
- data/activerecord/test/cases/type/date_time_test.rb +16 -0
- data/activerecord/test/cases/type/integer_test.rb +29 -0
- data/activerecord/test/cases/type/string_test.rb +24 -0
- data/activerecord/test/cases/type/type_map_test.rb +178 -0
- data/activerecord/test/cases/type/unsigned_integer_test.rb +19 -0
- data/activerecord/test/cases/type_test.rb +41 -0
- data/activerecord/test/cases/types_test.rb +26 -0
- data/activerecord/test/cases/unconnected_test.rb +35 -0
- data/activerecord/test/cases/validations/absence_validation_test.rb +75 -0
- data/activerecord/test/cases/validations/association_validation_test.rb +99 -0
- data/activerecord/test/cases/validations/i18n_generate_message_validation_test.rb +86 -0
- data/activerecord/test/cases/validations/i18n_validation_test.rb +85 -0
- data/activerecord/test/cases/validations/length_validation_test.rb +80 -0
- data/activerecord/test/cases/validations/presence_validation_test.rb +105 -0
- data/activerecord/test/cases/validations/uniqueness_validation_test.rb +557 -0
- data/activerecord/test/cases/validations_repair_helper.rb +21 -0
- data/activerecord/test/cases/validations_test.rb +196 -0
- data/activerecord/test/cases/view_test.rb +224 -0
- data/activerecord/test/cases/yaml_serialization_test.rb +141 -0
- data/activerecord/test/config.example.yml +100 -0
- data/activerecord/test/config.rb +7 -0
- data/activerecord/test/fixtures/.gitignore +1 -0
- data/activerecord/test/fixtures/accounts.yml +29 -0
- data/activerecord/test/fixtures/admin/accounts.yml +2 -0
- data/activerecord/test/fixtures/admin/randomly_named_a9.yml +7 -0
- data/activerecord/test/fixtures/admin/randomly_named_b0.yml +7 -0
- data/activerecord/test/fixtures/admin/users.yml +10 -0
- data/activerecord/test/fixtures/all/admin +1 -0
- data/activerecord/test/fixtures/all/developers.yml +0 -0
- data/activerecord/test/fixtures/all/namespaced/accounts.yml +2 -0
- data/activerecord/test/fixtures/all/people.yml +0 -0
- data/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/activerecord/test/fixtures/author_addresses.yml +11 -0
- data/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/activerecord/test/fixtures/authors.yml +17 -0
- data/activerecord/test/fixtures/bad_posts.yml +9 -0
- data/activerecord/test/fixtures/binaries.yml +137 -0
- data/activerecord/test/fixtures/books.yml +33 -0
- data/activerecord/test/fixtures/bulbs.yml +5 -0
- data/activerecord/test/fixtures/cars.yml +9 -0
- data/activerecord/test/fixtures/categories.yml +19 -0
- data/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/activerecord/test/fixtures/categories_posts.yml +31 -0
- data/activerecord/test/fixtures/categorizations.yml +23 -0
- data/activerecord/test/fixtures/clubs.yml +8 -0
- data/activerecord/test/fixtures/collections.yml +3 -0
- data/activerecord/test/fixtures/colleges.yml +3 -0
- data/activerecord/test/fixtures/comments.yml +65 -0
- data/activerecord/test/fixtures/companies.yml +67 -0
- data/activerecord/test/fixtures/computers.yml +10 -0
- data/activerecord/test/fixtures/content.yml +3 -0
- data/activerecord/test/fixtures/content_positions.yml +3 -0
- data/activerecord/test/fixtures/courses.yml +8 -0
- data/activerecord/test/fixtures/customers.yml +26 -0
- data/activerecord/test/fixtures/dashboards.yml +6 -0
- data/activerecord/test/fixtures/dead_parrots.yml +5 -0
- data/activerecord/test/fixtures/developers.yml +22 -0
- data/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/activerecord/test/fixtures/dog_lovers.yml +7 -0
- data/activerecord/test/fixtures/dogs.yml +4 -0
- data/activerecord/test/fixtures/doubloons.yml +3 -0
- data/activerecord/test/fixtures/edges.yml +5 -0
- data/activerecord/test/fixtures/entrants.yml +14 -0
- data/activerecord/test/fixtures/essays.yml +6 -0
- data/activerecord/test/fixtures/faces.yml +11 -0
- data/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/activerecord/test/fixtures/friendships.yml +4 -0
- data/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/activerecord/test/fixtures/interests.yml +33 -0
- data/activerecord/test/fixtures/items.yml +3 -0
- data/activerecord/test/fixtures/jobs.yml +7 -0
- data/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/activerecord/test/fixtures/live_parrots.yml +4 -0
- data/activerecord/test/fixtures/mateys.yml +4 -0
- data/activerecord/test/fixtures/member_details.yml +8 -0
- data/activerecord/test/fixtures/member_types.yml +6 -0
- data/activerecord/test/fixtures/members.yml +11 -0
- data/activerecord/test/fixtures/memberships.yml +34 -0
- data/activerecord/test/fixtures/men.yml +5 -0
- data/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/activerecord/test/fixtures/minivans.yml +5 -0
- data/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/activerecord/test/fixtures/mixins.yml +29 -0
- data/activerecord/test/fixtures/movies.yml +7 -0
- data/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/courses_with_invalid_key.yml +3 -0
- data/activerecord/test/fixtures/naked/yml/parrots.yml +3 -0
- data/activerecord/test/fixtures/naked/yml/trees.yml +3 -0
- data/activerecord/test/fixtures/nodes.yml +29 -0
- data/activerecord/test/fixtures/organizations.yml +5 -0
- data/activerecord/test/fixtures/other_comments.yml +6 -0
- data/activerecord/test/fixtures/other_dogs.yml +2 -0
- data/activerecord/test/fixtures/other_posts.yml +7 -0
- data/activerecord/test/fixtures/other_topics.yml +42 -0
- data/activerecord/test/fixtures/owners.yml +9 -0
- data/activerecord/test/fixtures/parrots.yml +27 -0
- data/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/activerecord/test/fixtures/people.yml +24 -0
- data/activerecord/test/fixtures/peoples_treasures.yml +3 -0
- data/activerecord/test/fixtures/pets.yml +19 -0
- data/activerecord/test/fixtures/pirates.yml +15 -0
- data/activerecord/test/fixtures/posts.yml +80 -0
- data/activerecord/test/fixtures/price_estimates.yml +16 -0
- data/activerecord/test/fixtures/products.yml +4 -0
- data/activerecord/test/fixtures/projects.yml +7 -0
- data/activerecord/test/fixtures/randomly_named_a9.yml +7 -0
- data/activerecord/test/fixtures/ratings.yml +14 -0
- data/activerecord/test/fixtures/readers.yml +11 -0
- data/activerecord/test/fixtures/references.yml +17 -0
- data/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/activerecord/test/fixtures/reserved_words/distinct_select.yml +11 -0
- data/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/activerecord/test/fixtures/ships.yml +6 -0
- data/activerecord/test/fixtures/speedometers.yml +8 -0
- data/activerecord/test/fixtures/sponsors.yml +12 -0
- data/activerecord/test/fixtures/string_key_objects.yml +7 -0
- data/activerecord/test/fixtures/subscribers.yml +11 -0
- data/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/activerecord/test/fixtures/taggings.yml +78 -0
- data/activerecord/test/fixtures/tags.yml +11 -0
- data/activerecord/test/fixtures/tasks.yml +7 -0
- data/activerecord/test/fixtures/teapots.yml +3 -0
- data/activerecord/test/fixtures/to_be_linked/accounts.yml +2 -0
- data/activerecord/test/fixtures/to_be_linked/users.yml +10 -0
- data/activerecord/test/fixtures/topics.yml +49 -0
- data/activerecord/test/fixtures/toys.yml +14 -0
- data/activerecord/test/fixtures/traffic_lights.yml +10 -0
- data/activerecord/test/fixtures/treasures.yml +10 -0
- data/activerecord/test/fixtures/trees.yml +3 -0
- data/activerecord/test/fixtures/uuid_children.yml +3 -0
- data/activerecord/test/fixtures/uuid_parents.yml +2 -0
- data/activerecord/test/fixtures/variants.yml +4 -0
- data/activerecord/test/fixtures/vegetables.yml +20 -0
- data/activerecord/test/fixtures/vertices.yml +4 -0
- data/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/activerecord/test/fixtures/zines.yml +5 -0
- data/activerecord/test/migrations/10_urban/9_add_expressions.rb +13 -0
- data/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +17 -0
- data/activerecord/test/migrations/empty/.gitkeep +0 -0
- data/activerecord/test/migrations/magic/1_currencies_have_symbols.rb +13 -0
- data/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +11 -0
- data/activerecord/test/migrations/missing/1_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/missing/3_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/missing/4_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/rename/1_we_need_things.rb +13 -0
- data/activerecord/test/migrations/rename/2_rename_things.rb +11 -0
- data/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb +11 -0
- data/activerecord/test/migrations/to_copy2/1_create_articles.rb +9 -0
- data/activerecord/test/migrations/to_copy2/2_create_comments.rb +9 -0
- data/activerecord/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +9 -0
- data/activerecord/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +9 -0
- data/activerecord/test/migrations/valid/1_valid_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid/2_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid/3_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/version_check/20131219224947_migration_version_check.rb +10 -0
- data/activerecord/test/models/account.rb +34 -0
- data/activerecord/test/models/admin.rb +7 -0
- data/activerecord/test/models/admin/account.rb +5 -0
- data/activerecord/test/models/admin/randomly_named_c1.rb +9 -0
- data/activerecord/test/models/admin/user.rb +42 -0
- data/activerecord/test/models/aircraft.rb +7 -0
- data/activerecord/test/models/arunit2_model.rb +5 -0
- data/activerecord/test/models/author.rb +211 -0
- data/activerecord/test/models/auto_id.rb +6 -0
- data/activerecord/test/models/autoloadable/extra_firm.rb +4 -0
- data/activerecord/test/models/binary.rb +4 -0
- data/activerecord/test/models/bird.rb +14 -0
- data/activerecord/test/models/book.rb +26 -0
- data/activerecord/test/models/boolean.rb +7 -0
- data/activerecord/test/models/bulb.rb +54 -0
- data/activerecord/test/models/cake_designer.rb +5 -0
- data/activerecord/test/models/car.rb +31 -0
- data/activerecord/test/models/carrier.rb +4 -0
- data/activerecord/test/models/cat.rb +12 -0
- data/activerecord/test/models/categorization.rb +21 -0
- data/activerecord/test/models/category.rb +46 -0
- data/activerecord/test/models/chef.rb +10 -0
- data/activerecord/test/models/citation.rb +5 -0
- data/activerecord/test/models/club.rb +27 -0
- data/activerecord/test/models/college.rb +12 -0
- data/activerecord/test/models/column.rb +5 -0
- data/activerecord/test/models/column_name.rb +5 -0
- data/activerecord/test/models/comment.rb +88 -0
- data/activerecord/test/models/company.rb +190 -0
- data/activerecord/test/models/company_in_module.rb +100 -0
- data/activerecord/test/models/computer.rb +5 -0
- data/activerecord/test/models/contact.rb +43 -0
- data/activerecord/test/models/content.rb +42 -0
- data/activerecord/test/models/contract.rb +22 -0
- data/activerecord/test/models/country.rb +7 -0
- data/activerecord/test/models/course.rb +8 -0
- data/activerecord/test/models/customer.rb +85 -0
- data/activerecord/test/models/customer_carrier.rb +16 -0
- data/activerecord/test/models/dashboard.rb +5 -0
- data/activerecord/test/models/default.rb +4 -0
- data/activerecord/test/models/department.rb +6 -0
- data/activerecord/test/models/developer.rb +270 -0
- data/activerecord/test/models/dog.rb +7 -0
- data/activerecord/test/models/dog_lover.rb +7 -0
- data/activerecord/test/models/doubloon.rb +14 -0
- data/activerecord/test/models/drink_designer.rb +5 -0
- data/activerecord/test/models/edge.rb +7 -0
- data/activerecord/test/models/electron.rb +7 -0
- data/activerecord/test/models/engine.rb +5 -0
- data/activerecord/test/models/entrant.rb +5 -0
- data/activerecord/test/models/essay.rb +8 -0
- data/activerecord/test/models/event.rb +5 -0
- data/activerecord/test/models/eye.rb +39 -0
- data/activerecord/test/models/face.rb +11 -0
- data/activerecord/test/models/family.rb +6 -0
- data/activerecord/test/models/family_tree.rb +6 -0
- data/activerecord/test/models/friendship.rb +8 -0
- data/activerecord/test/models/guid.rb +4 -0
- data/activerecord/test/models/guitar.rb +6 -0
- data/activerecord/test/models/hotel.rb +13 -0
- data/activerecord/test/models/image.rb +5 -0
- data/activerecord/test/models/interest.rb +7 -0
- data/activerecord/test/models/invoice.rb +6 -0
- data/activerecord/test/models/item.rb +9 -0
- data/activerecord/test/models/job.rb +9 -0
- data/activerecord/test/models/joke.rb +9 -0
- data/activerecord/test/models/keyboard.rb +5 -0
- data/activerecord/test/models/legacy_thing.rb +5 -0
- data/activerecord/test/models/lesson.rb +13 -0
- data/activerecord/test/models/line_item.rb +5 -0
- data/activerecord/test/models/liquid.rb +6 -0
- data/activerecord/test/models/man.rb +13 -0
- data/activerecord/test/models/matey.rb +6 -0
- data/activerecord/test/models/member.rb +44 -0
- data/activerecord/test/models/member_detail.rb +10 -0
- data/activerecord/test/models/member_type.rb +5 -0
- data/activerecord/test/models/membership.rb +38 -0
- data/activerecord/test/models/mentor.rb +5 -0
- data/activerecord/test/models/minimalistic.rb +4 -0
- data/activerecord/test/models/minivan.rb +10 -0
- data/activerecord/test/models/mixed_case_monkey.rb +5 -0
- data/activerecord/test/models/mocktail_designer.rb +4 -0
- data/activerecord/test/models/molecule.rb +8 -0
- data/activerecord/test/models/movie.rb +7 -0
- data/activerecord/test/models/node.rb +7 -0
- data/activerecord/test/models/non_primary_key.rb +4 -0
- data/activerecord/test/models/notification.rb +5 -0
- data/activerecord/test/models/numeric_data.rb +10 -0
- data/activerecord/test/models/order.rb +6 -0
- data/activerecord/test/models/organization.rb +16 -0
- data/activerecord/test/models/other_dog.rb +7 -0
- data/activerecord/test/models/owner.rb +39 -0
- data/activerecord/test/models/parrot.rb +30 -0
- data/activerecord/test/models/person.rb +143 -0
- data/activerecord/test/models/personal_legacy_thing.rb +6 -0
- data/activerecord/test/models/pet.rb +20 -0
- data/activerecord/test/models/pet_treasure.rb +8 -0
- data/activerecord/test/models/pirate.rb +94 -0
- data/activerecord/test/models/possession.rb +5 -0
- data/activerecord/test/models/post.rb +322 -0
- data/activerecord/test/models/price_estimate.rb +6 -0
- data/activerecord/test/models/professor.rb +7 -0
- data/activerecord/test/models/project.rb +42 -0
- data/activerecord/test/models/publisher.rb +4 -0
- data/activerecord/test/models/publisher/article.rb +6 -0
- data/activerecord/test/models/publisher/magazine.rb +5 -0
- data/activerecord/test/models/randomly_named_c1.rb +5 -0
- data/activerecord/test/models/rating.rb +6 -0
- data/activerecord/test/models/reader.rb +25 -0
- data/activerecord/test/models/recipe.rb +5 -0
- data/activerecord/test/models/record.rb +4 -0
- data/activerecord/test/models/reference.rb +24 -0
- data/activerecord/test/models/reply.rb +63 -0
- data/activerecord/test/models/ship.rb +41 -0
- data/activerecord/test/models/ship_part.rb +10 -0
- data/activerecord/test/models/shop.rb +19 -0
- data/activerecord/test/models/shop_account.rb +8 -0
- data/activerecord/test/models/speedometer.rb +8 -0
- data/activerecord/test/models/sponsor.rb +9 -0
- data/activerecord/test/models/string_key_object.rb +5 -0
- data/activerecord/test/models/student.rb +6 -0
- data/activerecord/test/models/subscriber.rb +10 -0
- data/activerecord/test/models/subscription.rb +6 -0
- data/activerecord/test/models/tag.rb +15 -0
- data/activerecord/test/models/tagging.rb +15 -0
- data/activerecord/test/models/task.rb +7 -0
- data/activerecord/test/models/topic.rb +120 -0
- data/activerecord/test/models/toy.rb +8 -0
- data/activerecord/test/models/traffic_light.rb +6 -0
- data/activerecord/test/models/treasure.rb +16 -0
- data/activerecord/test/models/treaty.rb +7 -0
- data/activerecord/test/models/tree.rb +5 -0
- data/activerecord/test/models/tuning_peg.rb +6 -0
- data/activerecord/test/models/tyre.rb +13 -0
- data/activerecord/test/models/user.rb +20 -0
- data/activerecord/test/models/uuid_child.rb +5 -0
- data/activerecord/test/models/uuid_item.rb +8 -0
- data/activerecord/test/models/uuid_parent.rb +5 -0
- data/activerecord/test/models/vegetables.rb +25 -0
- data/activerecord/test/models/vehicle.rb +9 -0
- data/activerecord/test/models/vertex.rb +11 -0
- data/activerecord/test/models/warehouse_thing.rb +7 -0
- data/activerecord/test/models/wheel.rb +5 -0
- data/activerecord/test/models/without_table.rb +5 -0
- data/activerecord/test/models/zine.rb +5 -0
- data/activerecord/test/schema/mysql2_specific_schema.rb +75 -0
- data/activerecord/test/schema/oracle_specific_schema.rb +42 -0
- data/activerecord/test/schema/postgresql_specific_schema.rb +112 -0
- data/activerecord/test/schema/schema.rb +1081 -0
- data/activerecord/test/support/config.rb +46 -0
- data/activerecord/test/support/connection.rb +28 -0
- data/activerecord/test/support/connection_helper.rb +16 -0
- data/activerecord/test/support/ddl_helper.rb +10 -0
- data/activerecord/test/support/schema_dumping_helper.rb +22 -0
- data/activerecord/test/support/yaml_compatibility_fixtures/rails_4_1.yml +22 -0
- data/activerecord/test/support/yaml_compatibility_fixtures/rails_4_2_0.yml +182 -0
- data/activestorage/.babelrc +5 -0
- data/activestorage/.eslintrc +19 -0
- data/activestorage/.gitignore +6 -0
- data/activestorage/CHANGELOG.md +3 -0
- data/activestorage/MIT-LICENSE +20 -0
- data/activestorage/README.md +141 -0
- data/activestorage/Rakefile +14 -0
- data/activestorage/activestorage.gemspec +30 -0
- data/activestorage/app/assets/javascripts/activestorage.js +1 -0
- data/activestorage/app/controllers/active_storage/blobs_controller.rb +25 -0
- data/activestorage/app/controllers/active_storage/direct_uploads_controller.rb +23 -0
- data/activestorage/app/controllers/active_storage/disk_controller.rb +53 -0
- data/activestorage/app/controllers/active_storage/variants_controller.rb +29 -0
- data/activestorage/app/javascript/activestorage/blob_record.js +54 -0
- data/activestorage/app/javascript/activestorage/blob_upload.js +34 -0
- data/activestorage/app/javascript/activestorage/direct_upload.js +42 -0
- data/activestorage/app/javascript/activestorage/direct_upload_controller.js +67 -0
- data/activestorage/app/javascript/activestorage/direct_uploads_controller.js +50 -0
- data/activestorage/app/javascript/activestorage/file_checksum.js +53 -0
- data/activestorage/app/javascript/activestorage/helpers.js +42 -0
- data/activestorage/app/javascript/activestorage/index.js +11 -0
- data/activestorage/app/javascript/activestorage/ujs.js +74 -0
- data/activestorage/app/jobs/active_storage/purge_job.rb +11 -0
- data/activestorage/app/models/active_storage/attachment.rb +28 -0
- data/activestorage/app/models/active_storage/blob.rb +199 -0
- data/activestorage/app/models/active_storage/filename.rb +65 -0
- data/activestorage/app/models/active_storage/filename/parameters.rb +36 -0
- data/activestorage/app/models/active_storage/variant.rb +82 -0
- data/activestorage/app/models/active_storage/variation.rb +55 -0
- data/activestorage/bin/test +5 -0
- data/activestorage/config/routes.rb +30 -0
- data/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb +25 -0
- data/activestorage/lib/active_storage.rb +38 -0
- data/activestorage/lib/active_storage/attached.rb +40 -0
- data/activestorage/lib/active_storage/attached/macros.rb +82 -0
- data/activestorage/lib/active_storage/attached/many.rb +55 -0
- data/activestorage/lib/active_storage/attached/one.rb +76 -0
- data/activestorage/lib/active_storage/engine.rb +65 -0
- data/activestorage/lib/active_storage/gem_version.rb +17 -0
- data/activestorage/lib/active_storage/log_subscriber.rb +52 -0
- data/activestorage/lib/active_storage/service.rb +117 -0
- data/activestorage/lib/active_storage/service/azure_storage_service.rb +124 -0
- data/activestorage/lib/active_storage/service/configurator.rb +32 -0
- data/activestorage/lib/active_storage/service/disk_service.rb +128 -0
- data/activestorage/lib/active_storage/service/gcs_service.rb +83 -0
- data/activestorage/lib/active_storage/service/mirror_service.rb +50 -0
- data/activestorage/lib/active_storage/service/s3_service.rb +100 -0
- data/activestorage/lib/active_storage/version.rb +10 -0
- data/activestorage/lib/tasks/activestorage.rake +8 -0
- data/activestorage/package.json +33 -0
- data/activestorage/test/controllers/blobs_controller_test.rb +17 -0
- data/activestorage/test/controllers/direct_uploads_controller_test.rb +124 -0
- data/activestorage/test/controllers/disk_controller_test.rb +59 -0
- data/activestorage/test/controllers/variants_controller_test.rb +23 -0
- data/activestorage/test/database/create_users_migration.rb +9 -0
- data/activestorage/test/database/setup.rb +7 -0
- data/activestorage/test/dummy/Rakefile +5 -0
- data/activestorage/test/dummy/app/assets/config/manifest.js +5 -0
- data/activestorage/test/dummy/app/assets/images/.keep +0 -0
- data/activestorage/test/dummy/app/assets/javascripts/application.js +13 -0
- data/activestorage/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/activestorage/test/dummy/app/controllers/application_controller.rb +5 -0
- data/activestorage/test/dummy/app/controllers/concerns/.keep +0 -0
- data/activestorage/test/dummy/app/helpers/application_helper.rb +4 -0
- data/activestorage/test/dummy/app/jobs/application_job.rb +4 -0
- data/activestorage/test/dummy/app/models/application_record.rb +5 -0
- data/activestorage/test/dummy/app/models/concerns/.keep +0 -0
- data/activestorage/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/activestorage/test/dummy/bin/bundle +5 -0
- data/activestorage/test/dummy/bin/rails +6 -0
- data/activestorage/test/dummy/bin/rake +6 -0
- data/activestorage/test/dummy/bin/yarn +13 -0
- data/activestorage/test/dummy/config.ru +7 -0
- data/activestorage/test/dummy/config/application.rb +26 -0
- data/activestorage/test/dummy/config/boot.rb +7 -0
- data/activestorage/test/dummy/config/database.yml +25 -0
- data/activestorage/test/dummy/config/environment.rb +7 -0
- data/activestorage/test/dummy/config/environments/development.rb +51 -0
- data/activestorage/test/dummy/config/environments/production.rb +84 -0
- data/activestorage/test/dummy/config/environments/test.rb +35 -0
- data/activestorage/test/dummy/config/initializers/application_controller_renderer.rb +7 -0
- data/activestorage/test/dummy/config/initializers/assets.rb +16 -0
- data/activestorage/test/dummy/config/initializers/backtrace_silencers.rb +8 -0
- data/activestorage/test/dummy/config/initializers/cookies_serializer.rb +7 -0
- data/activestorage/test/dummy/config/initializers/filter_parameter_logging.rb +6 -0
- data/activestorage/test/dummy/config/initializers/inflections.rb +17 -0
- data/activestorage/test/dummy/config/initializers/mime_types.rb +5 -0
- data/activestorage/test/dummy/config/initializers/wrap_parameters.rb +16 -0
- data/activestorage/test/dummy/config/routes.rb +4 -0
- data/activestorage/test/dummy/config/secrets.yml +32 -0
- data/activestorage/test/dummy/config/spring.rb +8 -0
- data/activestorage/test/dummy/config/storage.yml +3 -0
- data/activestorage/test/dummy/lib/assets/.keep +0 -0
- data/activestorage/test/dummy/log/.keep +0 -0
- data/activestorage/test/dummy/package.json +5 -0
- data/activestorage/test/dummy/public/404.html +67 -0
- data/activestorage/test/dummy/public/422.html +67 -0
- data/activestorage/test/dummy/public/500.html +66 -0
- data/activestorage/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/activestorage/test/dummy/public/apple-touch-icon.png +0 -0
- data/activestorage/test/dummy/public/favicon.ico +0 -0
- data/activestorage/test/fixtures/files/racecar.jpg +0 -0
- data/activestorage/test/models/attachments_test.rb +150 -0
- data/activestorage/test/models/blob_test.rb +56 -0
- data/activestorage/test/models/filename/parameters_test.rb +32 -0
- data/activestorage/test/models/filename_test.rb +56 -0
- data/activestorage/test/models/variant_test.rb +29 -0
- data/activestorage/test/service/azure_storage_service_test.rb +22 -0
- data/activestorage/test/service/configurations.yml +30 -0
- data/activestorage/test/service/configurations.yml.enc +0 -0
- data/activestorage/test/service/configurator_test.rb +16 -0
- data/activestorage/test/service/disk_service_test.rb +14 -0
- data/activestorage/test/service/gcs_service_test.rb +46 -0
- data/activestorage/test/service/mirror_service_test.rb +64 -0
- data/activestorage/test/service/s3_service_test.rb +59 -0
- data/activestorage/test/service/shared_service_tests.rb +69 -0
- data/activestorage/test/template/image_tag_test.rb +38 -0
- data/activestorage/test/test_helper.rb +69 -0
- data/activestorage/webpack.config.js +27 -0
- data/activestorage/yarn.lock +3164 -0
- data/activesupport/CHANGELOG.md +190 -0
- data/activesupport/MIT-LICENSE +20 -0
- data/activesupport/README.rdoc +39 -0
- data/activesupport/Rakefile +23 -0
- data/activesupport/activesupport.gemspec +34 -0
- data/activesupport/bin/generate_tables +141 -0
- data/activesupport/bin/test +5 -0
- data/activesupport/lib/active_support.rb +106 -0
- data/activesupport/lib/active_support/all.rb +5 -0
- data/activesupport/lib/active_support/array_inquirer.rb +48 -0
- data/activesupport/lib/active_support/backtrace_cleaner.rb +105 -0
- data/activesupport/lib/active_support/benchmarkable.rb +51 -0
- data/activesupport/lib/active_support/builder.rb +8 -0
- data/activesupport/lib/active_support/cache.rb +759 -0
- data/activesupport/lib/active_support/cache/file_store.rb +197 -0
- data/activesupport/lib/active_support/cache/mem_cache_store.rb +205 -0
- data/activesupport/lib/active_support/cache/memory_store.rb +169 -0
- data/activesupport/lib/active_support/cache/null_store.rb +43 -0
- data/activesupport/lib/active_support/cache/strategy/local_cache.rb +170 -0
- data/activesupport/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/activesupport/lib/active_support/callbacks.rb +856 -0
- data/activesupport/lib/active_support/concern.rb +144 -0
- data/activesupport/lib/active_support/concurrency/share_lock.rb +227 -0
- data/activesupport/lib/active_support/configurable.rb +150 -0
- data/activesupport/lib/active_support/core_ext.rb +5 -0
- data/activesupport/lib/active_support/core_ext/array.rb +9 -0
- data/activesupport/lib/active_support/core_ext/array/access.rb +92 -0
- data/activesupport/lib/active_support/core_ext/array/conversions.rb +213 -0
- data/activesupport/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/activesupport/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/activesupport/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb +9 -0
- data/activesupport/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/activesupport/lib/active_support/core_ext/benchmark.rb +16 -0
- data/activesupport/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/activesupport/lib/active_support/core_ext/class/attribute.rb +149 -0
- data/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/activesupport/lib/active_support/core_ext/class/subclasses.rb +57 -0
- data/activesupport/lib/active_support/core_ext/date.rb +7 -0
- data/activesupport/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/activesupport/lib/active_support/core_ext/date/blank.rb +14 -0
- data/activesupport/lib/active_support/core_ext/date/calculations.rb +145 -0
- data/activesupport/lib/active_support/core_ext/date/conversions.rb +100 -0
- data/activesupport/lib/active_support/core_ext/date/zones.rb +8 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb +358 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
- data/activesupport/lib/active_support/core_ext/date_time.rb +7 -0
- data/activesupport/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/activesupport/lib/active_support/core_ext/date_time/blank.rb +14 -0
- data/activesupport/lib/active_support/core_ext/date_time/calculations.rb +211 -0
- data/activesupport/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/activesupport/lib/active_support/core_ext/date_time/conversions.rb +107 -0
- data/activesupport/lib/active_support/core_ext/digest/uuid.rb +53 -0
- data/activesupport/lib/active_support/core_ext/enumerable.rb +159 -0
- data/activesupport/lib/active_support/core_ext/file.rb +3 -0
- data/activesupport/lib/active_support/core_ext/file/atomic.rb +70 -0
- data/activesupport/lib/active_support/core_ext/hash.rb +11 -0
- data/activesupport/lib/active_support/core_ext/hash/compact.rb +29 -0
- data/activesupport/lib/active_support/core_ext/hash/conversions.rb +263 -0
- data/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
- data/activesupport/lib/active_support/core_ext/hash/except.rb +24 -0
- data/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/activesupport/lib/active_support/core_ext/hash/keys.rb +172 -0
- data/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/activesupport/lib/active_support/core_ext/hash/slice.rb +50 -0
- data/activesupport/lib/active_support/core_ext/hash/transform_values.rb +32 -0
- data/activesupport/lib/active_support/core_ext/integer.rb +5 -0
- data/activesupport/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/activesupport/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/activesupport/lib/active_support/core_ext/integer/time.rb +31 -0
- data/activesupport/lib/active_support/core_ext/kernel.rb +6 -0
- data/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +13 -0
- data/activesupport/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/activesupport/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/activesupport/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/activesupport/lib/active_support/core_ext/load_error.rb +9 -0
- data/activesupport/lib/active_support/core_ext/marshal.rb +24 -0
- data/activesupport/lib/active_support/core_ext/module.rb +13 -0
- data/activesupport/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/activesupport/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/activesupport/lib/active_support/core_ext/module/attr_internal.rb +38 -0
- data/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +215 -0
- data/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +150 -0
- data/activesupport/lib/active_support/core_ext/module/concerning.rb +137 -0
- data/activesupport/lib/active_support/core_ext/module/delegation.rb +290 -0
- data/activesupport/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/activesupport/lib/active_support/core_ext/module/introspection.rb +62 -0
- data/activesupport/lib/active_support/core_ext/module/reachable.rb +10 -0
- data/activesupport/lib/active_support/core_ext/module/remove_method.rb +37 -0
- data/activesupport/lib/active_support/core_ext/name_error.rb +33 -0
- data/activesupport/lib/active_support/core_ext/numeric.rb +6 -0
- data/activesupport/lib/active_support/core_ext/numeric/bytes.rb +66 -0
- data/activesupport/lib/active_support/core_ext/numeric/conversions.rb +140 -0
- data/activesupport/lib/active_support/core_ext/numeric/inquiry.rb +28 -0
- data/activesupport/lib/active_support/core_ext/numeric/time.rb +76 -0
- data/activesupport/lib/active_support/core_ext/object.rb +16 -0
- data/activesupport/lib/active_support/core_ext/object/acts_like.rb +12 -0
- data/activesupport/lib/active_support/core_ext/object/blank.rb +147 -0
- data/activesupport/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/activesupport/lib/active_support/core_ext/object/deep_dup.rb +55 -0
- data/activesupport/lib/active_support/core_ext/object/duplicable.rb +156 -0
- data/activesupport/lib/active_support/core_ext/object/inclusion.rb +29 -0
- data/activesupport/lib/active_support/core_ext/object/instance_variables.rb +30 -0
- data/activesupport/lib/active_support/core_ext/object/json.rb +221 -0
- data/activesupport/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/activesupport/lib/active_support/core_ext/object/to_query.rb +86 -0
- data/activesupport/lib/active_support/core_ext/object/try.rb +148 -0
- data/activesupport/lib/active_support/core_ext/object/with_options.rb +82 -0
- data/activesupport/lib/active_support/core_ext/range.rb +6 -0
- data/activesupport/lib/active_support/core_ext/range/conversions.rb +33 -0
- data/activesupport/lib/active_support/core_ext/range/each.rb +23 -0
- data/activesupport/lib/active_support/core_ext/range/include_range.rb +25 -0
- data/activesupport/lib/active_support/core_ext/range/overlaps.rb +10 -0
- data/activesupport/lib/active_support/core_ext/regexp.rb +11 -0
- data/activesupport/lib/active_support/core_ext/securerandom.rb +25 -0
- data/activesupport/lib/active_support/core_ext/string.rb +15 -0
- data/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
- data/activesupport/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/activesupport/lib/active_support/core_ext/string/conversions.rb +59 -0
- data/activesupport/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/activesupport/lib/active_support/core_ext/string/filters.rb +104 -0
- data/activesupport/lib/active_support/core_ext/string/indent.rb +45 -0
- data/activesupport/lib/active_support/core_ext/string/inflections.rb +254 -0
- data/activesupport/lib/active_support/core_ext/string/inquiry.rb +15 -0
- data/activesupport/lib/active_support/core_ext/string/multibyte.rb +55 -0
- data/activesupport/lib/active_support/core_ext/string/output_safety.rb +261 -0
- data/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/activesupport/lib/active_support/core_ext/string/strip.rb +25 -0
- data/activesupport/lib/active_support/core_ext/string/zones.rb +16 -0
- data/activesupport/lib/active_support/core_ext/time.rb +7 -0
- data/activesupport/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/activesupport/lib/active_support/core_ext/time/calculations.rb +315 -0
- data/activesupport/lib/active_support/core_ext/time/compatibility.rb +16 -0
- data/activesupport/lib/active_support/core_ext/time/conversions.rb +72 -0
- data/activesupport/lib/active_support/core_ext/time/zones.rb +113 -0
- data/activesupport/lib/active_support/core_ext/uri.rb +26 -0
- data/activesupport/lib/active_support/current_attributes.rb +195 -0
- data/activesupport/lib/active_support/dependencies.rb +744 -0
- data/activesupport/lib/active_support/dependencies/autoload.rb +79 -0
- data/activesupport/lib/active_support/dependencies/interlock.rb +57 -0
- data/activesupport/lib/active_support/deprecation.rb +46 -0
- data/activesupport/lib/active_support/deprecation/behaviors.rb +105 -0
- data/activesupport/lib/active_support/deprecation/constant_accessor.rb +52 -0
- data/activesupport/lib/active_support/deprecation/instance_delegator.rb +39 -0
- data/activesupport/lib/active_support/deprecation/method_wrappers.rb +72 -0
- data/activesupport/lib/active_support/deprecation/proxy_wrappers.rb +153 -0
- data/activesupport/lib/active_support/deprecation/reporting.rb +114 -0
- data/activesupport/lib/active_support/descendants_tracker.rb +62 -0
- data/activesupport/lib/active_support/duration.rb +422 -0
- data/activesupport/lib/active_support/duration/iso8601_parser.rb +125 -0
- data/activesupport/lib/active_support/duration/iso8601_serializer.rb +55 -0
- data/activesupport/lib/active_support/evented_file_update_checker.rb +205 -0
- data/activesupport/lib/active_support/execution_wrapper.rb +128 -0
- data/activesupport/lib/active_support/executor.rb +8 -0
- data/activesupport/lib/active_support/file_update_checker.rb +163 -0
- data/activesupport/lib/active_support/gem_version.rb +17 -0
- data/activesupport/lib/active_support/gzip.rb +38 -0
- data/activesupport/lib/active_support/hash_with_indifferent_access.rb +358 -0
- data/activesupport/lib/active_support/i18n.rb +15 -0
- data/activesupport/lib/active_support/i18n_railtie.rb +114 -0
- data/activesupport/lib/active_support/inflections.rb +72 -0
- data/activesupport/lib/active_support/inflector.rb +9 -0
- data/activesupport/lib/active_support/inflector/inflections.rb +246 -0
- data/activesupport/lib/active_support/inflector/methods.rb +408 -0
- data/activesupport/lib/active_support/inflector/transliterate.rb +112 -0
- data/activesupport/lib/active_support/json.rb +4 -0
- data/activesupport/lib/active_support/json/decoding.rb +76 -0
- data/activesupport/lib/active_support/json/encoding.rb +130 -0
- data/activesupport/lib/active_support/key_generator.rb +73 -0
- data/activesupport/lib/active_support/lazy_load_hooks.rb +78 -0
- data/activesupport/lib/active_support/locale/en.yml +135 -0
- data/activesupport/lib/active_support/log_subscriber.rb +112 -0
- data/activesupport/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/activesupport/lib/active_support/logger.rb +108 -0
- data/activesupport/lib/active_support/logger_silence.rb +29 -0
- data/activesupport/lib/active_support/logger_thread_safe_level.rb +33 -0
- data/activesupport/lib/active_support/message_encryptor.rb +202 -0
- data/activesupport/lib/active_support/message_verifier.rb +178 -0
- data/activesupport/lib/active_support/messages/metadata.rb +71 -0
- data/activesupport/lib/active_support/multibyte.rb +23 -0
- data/activesupport/lib/active_support/multibyte/chars.rb +235 -0
- data/activesupport/lib/active_support/multibyte/unicode.rb +394 -0
- data/activesupport/lib/active_support/notifications.rb +216 -0
- data/activesupport/lib/active_support/notifications/fanout.rb +159 -0
- data/activesupport/lib/active_support/notifications/instrumenter.rb +93 -0
- data/activesupport/lib/active_support/number_helper.rb +371 -0
- data/activesupport/lib/active_support/number_helper/number_converter.rb +184 -0
- data/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/activesupport/lib/active_support/number_helper/number_to_delimited_converter.rb +29 -0
- data/activesupport/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
- data/activesupport/lib/active_support/number_helper/number_to_human_size_converter.rb +59 -0
- data/activesupport/lib/active_support/number_helper/number_to_percentage_converter.rb +14 -0
- data/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
- data/activesupport/lib/active_support/number_helper/number_to_rounded_converter.rb +74 -0
- data/activesupport/lib/active_support/number_helper/rounding_helper.rb +66 -0
- data/activesupport/lib/active_support/option_merger.rb +27 -0
- data/activesupport/lib/active_support/ordered_hash.rb +50 -0
- data/activesupport/lib/active_support/ordered_options.rb +85 -0
- data/activesupport/lib/active_support/per_thread_registry.rb +60 -0
- data/activesupport/lib/active_support/proxy_object.rb +15 -0
- data/activesupport/lib/active_support/rails.rb +35 -0
- data/activesupport/lib/active_support/railtie.rb +59 -0
- data/activesupport/lib/active_support/reloader.rb +128 -0
- data/activesupport/lib/active_support/rescuable.rb +174 -0
- data/activesupport/lib/active_support/security_utils.rb +29 -0
- data/activesupport/lib/active_support/string_inquirer.rb +34 -0
- data/activesupport/lib/active_support/subscriber.rb +126 -0
- data/activesupport/lib/active_support/tagged_logging.rb +79 -0
- data/activesupport/lib/active_support/test_case.rb +73 -0
- data/activesupport/lib/active_support/testing/assertions.rb +199 -0
- data/activesupport/lib/active_support/testing/autorun.rb +7 -0
- data/activesupport/lib/active_support/testing/constant_lookup.rb +51 -0
- data/activesupport/lib/active_support/testing/declarative.rb +28 -0
- data/activesupport/lib/active_support/testing/deprecation.rb +39 -0
- data/activesupport/lib/active_support/testing/file_fixtures.rb +36 -0
- data/activesupport/lib/active_support/testing/isolation.rb +108 -0
- data/activesupport/lib/active_support/testing/method_call_assertions.rb +43 -0
- data/activesupport/lib/active_support/testing/setup_and_teardown.rb +52 -0
- data/activesupport/lib/active_support/testing/stream.rb +44 -0
- data/activesupport/lib/active_support/testing/tagged_logging.rb +27 -0
- data/activesupport/lib/active_support/testing/time_helpers.rb +199 -0
- data/activesupport/lib/active_support/time.rb +20 -0
- data/activesupport/lib/active_support/time_with_zone.rb +551 -0
- data/activesupport/lib/active_support/values/time_zone.rb +555 -0
- data/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/activesupport/lib/active_support/version.rb +10 -0
- data/activesupport/lib/active_support/xml_mini.rb +209 -0
- data/activesupport/lib/active_support/xml_mini/jdom.rb +183 -0
- data/activesupport/lib/active_support/xml_mini/libxml.rb +80 -0
- data/activesupport/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/activesupport/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/activesupport/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/activesupport/lib/active_support/xml_mini/rexml.rb +130 -0
- data/activesupport/test/abstract_unit.rb +41 -0
- data/activesupport/test/array_inquirer_test.rb +63 -0
- data/activesupport/test/autoload_test.rb +83 -0
- data/activesupport/test/autoloading_fixtures/a/b.rb +4 -0
- data/activesupport/test/autoloading_fixtures/a/c/d.rb +4 -0
- data/activesupport/test/autoloading_fixtures/a/c/em/f.rb +4 -0
- data/activesupport/test/autoloading_fixtures/application.rb +3 -0
- data/activesupport/test/autoloading_fixtures/circular1.rb +8 -0
- data/activesupport/test/autoloading_fixtures/circular2.rb +6 -0
- data/activesupport/test/autoloading_fixtures/class_folder.rb +5 -0
- data/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb +5 -0
- data/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb +4 -0
- data/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb +9 -0
- data/activesupport/test/autoloading_fixtures/conflict.rb +3 -0
- data/activesupport/test/autoloading_fixtures/counting_loader.rb +7 -0
- data/activesupport/test/autoloading_fixtures/cross_site_dependency.rb +4 -0
- data/activesupport/test/autoloading_fixtures/d.rb +4 -0
- data/activesupport/test/autoloading_fixtures/em.rb +4 -0
- data/activesupport/test/autoloading_fixtures/html/some_class.rb +6 -0
- data/activesupport/test/autoloading_fixtures/load_path/loaded_constant.rb +4 -0
- data/activesupport/test/autoloading_fixtures/loads_constant.rb +7 -0
- data/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb +4 -0
- data/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb +6 -0
- data/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb +4 -0
- data/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb +3 -0
- data/activesupport/test/autoloading_fixtures/multiple_constant_file.rb +4 -0
- data/activesupport/test/autoloading_fixtures/prepend.rb +10 -0
- data/activesupport/test/autoloading_fixtures/prepend/sub_class_conflict.rb +4 -0
- data/activesupport/test/autoloading_fixtures/raises_arbitrary_exception.rb +6 -0
- data/activesupport/test/autoloading_fixtures/raises_name_error.rb +5 -0
- data/activesupport/test/autoloading_fixtures/raises_no_method_error.rb +5 -0
- data/activesupport/test/autoloading_fixtures/requires_constant.rb +6 -0
- data/activesupport/test/autoloading_fixtures/should_not_be_required.rb +3 -0
- data/activesupport/test/autoloading_fixtures/throws.rb +6 -0
- data/activesupport/test/autoloading_fixtures/typo.rb +3 -0
- data/activesupport/test/benchmarkable_test.rb +78 -0
- data/activesupport/test/broadcast_logger_test.rb +172 -0
- data/activesupport/test/cache/behaviors.rb +9 -0
- data/activesupport/test/cache/behaviors/autoloading_cache_behavior.rb +43 -0
- data/activesupport/test/cache/behaviors/cache_delete_matched_behavior.rb +15 -0
- data/activesupport/test/cache/behaviors/cache_increment_decrement_behavior.rb +23 -0
- data/activesupport/test/cache/behaviors/cache_store_behavior.rb +331 -0
- data/activesupport/test/cache/behaviors/cache_store_version_behavior.rb +88 -0
- data/activesupport/test/cache/behaviors/encoded_key_cache_behavior.rb +36 -0
- data/activesupport/test/cache/behaviors/local_cache_behavior.rb +128 -0
- data/activesupport/test/cache/cache_entry_test.rb +30 -0
- data/activesupport/test/cache/cache_key_test.rb +90 -0
- data/activesupport/test/cache/cache_store_logger_test.rb +36 -0
- data/activesupport/test/cache/cache_store_namespace_test.rb +40 -0
- data/activesupport/test/cache/cache_store_setting_test.rb +68 -0
- data/activesupport/test/cache/cache_store_write_multi_test.rb +62 -0
- data/activesupport/test/cache/local_cache_middleware_test.rb +63 -0
- data/activesupport/test/cache/stores/file_store_test.rb +130 -0
- data/activesupport/test/cache/stores/mem_cache_store_test.rb +76 -0
- data/activesupport/test/cache/stores/memory_store_test.rb +109 -0
- data/activesupport/test/cache/stores/null_store_test.rb +59 -0
- data/activesupport/test/callback_inheritance_test.rb +178 -0
- data/activesupport/test/callbacks_test.rb +1205 -0
- data/activesupport/test/class_cache_test.rb +80 -0
- data/activesupport/test/clean_backtrace_test.rb +76 -0
- data/activesupport/test/clean_logger_test.rb +31 -0
- data/activesupport/test/concern_test.rb +131 -0
- data/activesupport/test/configurable_test.rb +133 -0
- data/activesupport/test/constantize_test_cases.rb +127 -0
- data/activesupport/test/core_ext/array/access_test.rb +38 -0
- data/activesupport/test/core_ext/array/conversions_test.rb +205 -0
- data/activesupport/test/core_ext/array/extract_options_test.rb +47 -0
- data/activesupport/test/core_ext/array/grouping_test.rb +137 -0
- data/activesupport/test/core_ext/array/prepend_append_test.rb +14 -0
- data/activesupport/test/core_ext/array/wrap_test.rb +79 -0
- data/activesupport/test/core_ext/bigdecimal_test.rb +13 -0
- data/activesupport/test/core_ext/class/attribute_test.rb +101 -0
- data/activesupport/test/core_ext/class_test.rb +40 -0
- data/activesupport/test/core_ext/date_and_time_behavior.rb +325 -0
- data/activesupport/test/core_ext/date_and_time_compatibility_test.rb +275 -0
- data/activesupport/test/core_ext/date_ext_test.rb +415 -0
- data/activesupport/test/core_ext/date_time_ext_test.rb +463 -0
- data/activesupport/test/core_ext/digest/uuid_test.rb +26 -0
- data/activesupport/test/core_ext/duration_test.rb +651 -0
- data/activesupport/test/core_ext/enumerable_test.rb +223 -0
- data/activesupport/test/core_ext/file_test.rb +80 -0
- data/activesupport/test/core_ext/hash/transform_keys_test.rb +64 -0
- data/activesupport/test/core_ext/hash/transform_values_test.rb +77 -0
- data/activesupport/test/core_ext/hash_ext_test.rb +1131 -0
- data/activesupport/test/core_ext/integer_ext_test.rb +32 -0
- data/activesupport/test/core_ext/kernel/concern_test.rb +15 -0
- data/activesupport/test/core_ext/kernel_test.rb +53 -0
- data/activesupport/test/core_ext/load_error_test.rb +19 -0
- data/activesupport/test/core_ext/marshal_test.rb +165 -0
- data/activesupport/test/core_ext/module/anonymous_test.rb +16 -0
- data/activesupport/test/core_ext/module/attr_internal_test.rb +55 -0
- data/activesupport/test/core_ext/module/attribute_accessor_per_thread_test.rb +133 -0
- data/activesupport/test/core_ext/module/attribute_accessor_test.rb +137 -0
- data/activesupport/test/core_ext/module/attribute_aliasing_test.rb +61 -0
- data/activesupport/test/core_ext/module/concerning_test.rb +67 -0
- data/activesupport/test/core_ext/module/introspection_test.rb +39 -0
- data/activesupport/test/core_ext/module/reachable_test.rb +43 -0
- data/activesupport/test/core_ext/module/remove_method_test.rb +59 -0
- data/activesupport/test/core_ext/module_test.rb +443 -0
- data/activesupport/test/core_ext/name_error_test.rb +23 -0
- data/activesupport/test/core_ext/numeric_ext_test.rb +491 -0
- data/activesupport/test/core_ext/object/acts_like_test.rb +35 -0
- data/activesupport/test/core_ext/object/blank_test.rb +36 -0
- data/activesupport/test/core_ext/object/deep_dup_test.rb +59 -0
- data/activesupport/test/core_ext/object/duplicable_test.rb +37 -0
- data/activesupport/test/core_ext/object/inclusion_test.rb +61 -0
- data/activesupport/test/core_ext/object/instance_variables_test.rb +33 -0
- data/activesupport/test/core_ext/object/json_cherry_pick_test.rb +44 -0
- data/activesupport/test/core_ext/object/json_gem_encoding_test.rb +68 -0
- data/activesupport/test/core_ext/object/to_param_test.rb +39 -0
- data/activesupport/test/core_ext/object/to_query_test.rb +84 -0
- data/activesupport/test/core_ext/object/try_test.rb +165 -0
- data/activesupport/test/core_ext/range_ext_test.rb +133 -0
- data/activesupport/test/core_ext/regexp_ext_test.rb +36 -0
- data/activesupport/test/core_ext/secure_random_test.rb +22 -0
- data/activesupport/test/core_ext/string_ext_test.rb +932 -0
- data/activesupport/test/core_ext/time_ext_test.rb +999 -0
- data/activesupport/test/core_ext/time_with_zone_test.rb +1304 -0
- data/activesupport/test/core_ext/uri_ext_test.rb +14 -0
- data/activesupport/test/current_attributes_test.rb +105 -0
- data/activesupport/test/dependencies/check_warnings.rb +4 -0
- data/activesupport/test/dependencies/conflict.rb +3 -0
- data/activesupport/test/dependencies/cross_site_depender.rb +5 -0
- data/activesupport/test/dependencies/mutual_one.rb +6 -0
- data/activesupport/test/dependencies/mutual_two.rb +6 -0
- data/activesupport/test/dependencies/raises_exception.rb +5 -0
- data/activesupport/test/dependencies/raises_exception_without_blame_file.rb +7 -0
- data/activesupport/test/dependencies/requires_nonexistent0.rb +3 -0
- data/activesupport/test/dependencies/requires_nonexistent1.rb +3 -0
- data/activesupport/test/dependencies/service_one.rb +7 -0
- data/activesupport/test/dependencies/service_two.rb +4 -0
- data/activesupport/test/dependencies_test.rb +1077 -0
- data/activesupport/test/dependencies_test_helpers.rb +30 -0
- data/activesupport/test/deprecation/method_wrappers_test.rb +36 -0
- data/activesupport/test/deprecation/proxy_wrappers_test.rb +24 -0
- data/activesupport/test/deprecation_test.rb +430 -0
- data/activesupport/test/descendants_tracker_test_cases.rb +67 -0
- data/activesupport/test/descendants_tracker_with_autoloading_test.rb +36 -0
- data/activesupport/test/descendants_tracker_without_autoloading_test.rb +19 -0
- data/activesupport/test/evented_file_update_checker_test.rb +197 -0
- data/activesupport/test/executor_test.rb +242 -0
- data/activesupport/test/file_fixtures/sample.txt +1 -0
- data/activesupport/test/file_update_checker_shared_tests.rb +284 -0
- data/activesupport/test/file_update_checker_test.rb +21 -0
- data/activesupport/test/fixtures/autoload/another_class.rb +4 -0
- data/activesupport/test/fixtures/autoload/some_class.rb +4 -0
- data/activesupport/test/fixtures/xml/jdom_doctype.dtd +1 -0
- data/activesupport/test/fixtures/xml/jdom_entities.txt +1 -0
- data/activesupport/test/fixtures/xml/jdom_include.txt +1 -0
- data/activesupport/test/gzip_test.rb +45 -0
- data/activesupport/test/hash_with_indifferent_access_test.rb +773 -0
- data/activesupport/test/i18n_test.rb +106 -0
- data/activesupport/test/inflector_test.rb +548 -0
- data/activesupport/test/inflector_test_cases.rb +375 -0
- data/activesupport/test/json/decoding_test.rb +124 -0
- data/activesupport/test/json/encoding_test.rb +477 -0
- data/activesupport/test/json/encoding_test_cases.rb +98 -0
- data/activesupport/test/key_generator_test.rb +79 -0
- data/activesupport/test/lazy_load_hooks_test.rb +140 -0
- data/activesupport/test/log_subscriber_test.rb +126 -0
- data/activesupport/test/logger_test.rb +270 -0
- data/activesupport/test/message_encryptor_test.rb +176 -0
- data/activesupport/test/message_verifier_test.rb +158 -0
- data/activesupport/test/metadata/shared_metadata_tests.rb +93 -0
- data/activesupport/test/multibyte_chars_test.rb +752 -0
- data/activesupport/test/multibyte_conformance_test.rb +110 -0
- data/activesupport/test/multibyte_grapheme_break_conformance_test.rb +62 -0
- data/activesupport/test/multibyte_normalization_conformance_test.rb +112 -0
- data/activesupport/test/multibyte_proxy_test.rb +34 -0
- data/activesupport/test/multibyte_test_helpers.rb +41 -0
- data/activesupport/test/multibyte_unicode_database_test.rb +26 -0
- data/activesupport/test/notifications/evented_notification_test.rb +89 -0
- data/activesupport/test/notifications/instrumenter_test.rb +60 -0
- data/activesupport/test/notifications_test.rb +283 -0
- data/activesupport/test/number_helper_i18n_test.rb +151 -0
- data/activesupport/test/number_helper_test.rb +411 -0
- data/activesupport/test/option_merger_test.rb +97 -0
- data/activesupport/test/ordered_hash_test.rb +324 -0
- data/activesupport/test/ordered_options_test.rb +105 -0
- data/activesupport/test/reloader_test.rb +99 -0
- data/activesupport/test/rescuable_test.rb +176 -0
- data/activesupport/test/safe_buffer_test.rb +182 -0
- data/activesupport/test/security_utils_test.rb +16 -0
- data/activesupport/test/share_lock_test.rb +580 -0
- data/activesupport/test/string_inquirer_test.rb +46 -0
- data/activesupport/test/subscriber_test.rb +56 -0
- data/activesupport/test/tagged_logging_test.rb +117 -0
- data/activesupport/test/test_case_test.rb +339 -0
- data/activesupport/test/testing/constant_lookup_test.rb +78 -0
- data/activesupport/test/testing/file_fixtures_test.rb +32 -0
- data/activesupport/test/testing/method_call_assertions_test.rb +125 -0
- data/activesupport/test/time_travel_test.rb +189 -0
- data/activesupport/test/time_zone_test.rb +738 -0
- data/activesupport/test/time_zone_test_helpers.rb +26 -0
- data/activesupport/test/transliterate_test.rb +54 -0
- data/activesupport/test/xml_mini/jdom_engine_test.rb +53 -0
- data/activesupport/test/xml_mini/libxml_engine_test.rb +21 -0
- data/activesupport/test/xml_mini/libxmlsax_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/nokogiri_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/nokogirisax_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/rexml_engine_test.rb +27 -0
- data/activesupport/test/xml_mini/xml_mini_engine_test.rb +264 -0
- data/activesupport/test/xml_mini_test.rb +355 -0
- data/ci/phantomjs.js +149 -0
- data/ci/travis.rb +187 -0
- data/guides/.document +0 -0
- data/guides/CHANGELOG.md +1 -0
- data/guides/Rakefile +91 -0
- data/guides/assets/images/akshaysurve.jpg +0 -0
- data/guides/assets/images/belongs_to.png +0 -0
- data/guides/assets/images/book_icon.gif +0 -0
- data/guides/assets/images/bullet.gif +0 -0
- data/guides/assets/images/chapters_icon.gif +0 -0
- data/guides/assets/images/check_bullet.gif +0 -0
- data/guides/assets/images/credits_pic_blank.gif +0 -0
- data/guides/assets/images/csrf.png +0 -0
- data/guides/assets/images/edge_badge.png +0 -0
- data/guides/assets/images/favicon.ico +0 -0
- data/guides/assets/images/feature_tile.gif +0 -0
- data/guides/assets/images/footer_tile.gif +0 -0
- data/guides/assets/images/fxn.png +0 -0
- data/guides/assets/images/getting_started/article_with_comments.png +0 -0
- data/guides/assets/images/getting_started/challenge.png +0 -0
- data/guides/assets/images/getting_started/confirm_dialog.png +0 -0
- data/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
- data/guides/assets/images/getting_started/form_with_errors.png +0 -0
- data/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
- data/guides/assets/images/getting_started/new_article.png +0 -0
- data/guides/assets/images/getting_started/rails_welcome.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
- data/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
- data/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
- data/guides/assets/images/grey_bullet.gif +0 -0
- data/guides/assets/images/habtm.png +0 -0
- data/guides/assets/images/has_many.png +0 -0
- data/guides/assets/images/has_many_through.png +0 -0
- data/guides/assets/images/has_one.png +0 -0
- data/guides/assets/images/has_one_through.png +0 -0
- data/guides/assets/images/header_backdrop.png +0 -0
- data/guides/assets/images/header_tile.gif +0 -0
- data/guides/assets/images/i18n/demo_html_safe.png +0 -0
- data/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translated_en.png +0 -0
- data/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- data/guides/assets/images/i18n/demo_untranslated.png +0 -0
- data/guides/assets/images/icons/README +5 -0
- data/guides/assets/images/icons/callouts/1.png +0 -0
- data/guides/assets/images/icons/callouts/10.png +0 -0
- data/guides/assets/images/icons/callouts/11.png +0 -0
- data/guides/assets/images/icons/callouts/12.png +0 -0
- data/guides/assets/images/icons/callouts/13.png +0 -0
- data/guides/assets/images/icons/callouts/14.png +0 -0
- data/guides/assets/images/icons/callouts/15.png +0 -0
- data/guides/assets/images/icons/callouts/2.png +0 -0
- data/guides/assets/images/icons/callouts/3.png +0 -0
- data/guides/assets/images/icons/callouts/4.png +0 -0
- data/guides/assets/images/icons/callouts/5.png +0 -0
- data/guides/assets/images/icons/callouts/6.png +0 -0
- data/guides/assets/images/icons/callouts/7.png +0 -0
- data/guides/assets/images/icons/callouts/8.png +0 -0
- data/guides/assets/images/icons/callouts/9.png +0 -0
- data/guides/assets/images/icons/caution.png +0 -0
- data/guides/assets/images/icons/example.png +0 -0
- data/guides/assets/images/icons/home.png +0 -0
- data/guides/assets/images/icons/important.png +0 -0
- data/guides/assets/images/icons/next.png +0 -0
- data/guides/assets/images/icons/note.png +0 -0
- data/guides/assets/images/icons/prev.png +0 -0
- data/guides/assets/images/icons/tip.png +0 -0
- data/guides/assets/images/icons/up.png +0 -0
- data/guides/assets/images/icons/warning.png +0 -0
- data/guides/assets/images/nav_arrow.gif +0 -0
- data/guides/assets/images/oscardelben.jpg +0 -0
- data/guides/assets/images/polymorphic.png +0 -0
- data/guides/assets/images/radar.png +0 -0
- data/guides/assets/images/rails4_features.png +0 -0
- data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/guides/assets/images/rails_guides_logo.gif +0 -0
- data/guides/assets/images/rails_logo_remix.gif +0 -0
- data/guides/assets/images/session_fixation.png +0 -0
- data/guides/assets/images/tab_grey.gif +0 -0
- data/guides/assets/images/tab_info.gif +0 -0
- data/guides/assets/images/tab_note.gif +0 -0
- data/guides/assets/images/tab_red.gif +0 -0
- data/guides/assets/images/tab_yellow.gif +0 -0
- data/guides/assets/images/tab_yellow.png +0 -0
- data/guides/assets/images/vijaydev.jpg +0 -0
- data/guides/assets/javascripts/guides.js +53 -0
- data/guides/assets/javascripts/jquery.min.js +4 -0
- data/guides/assets/javascripts/responsive-tables.js +43 -0
- data/guides/assets/javascripts/syntaxhighlighter.js +20 -0
- data/guides/assets/stylesheets/fixes.css +16 -0
- data/guides/assets/stylesheets/kindle.css +11 -0
- data/guides/assets/stylesheets/main.css +718 -0
- data/guides/assets/stylesheets/print.css +52 -0
- data/guides/assets/stylesheets/reset.css +43 -0
- data/guides/assets/stylesheets/responsive-tables.css +50 -0
- data/guides/assets/stylesheets/style.css +13 -0
- data/guides/assets/stylesheets/syntaxhighlighter/shCore.css +226 -0
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +116 -0
- data/guides/bug_report_templates/action_controller_gem.rb +58 -0
- data/guides/bug_report_templates/action_controller_master.rb +54 -0
- data/guides/bug_report_templates/active_job_gem.rb +34 -0
- data/guides/bug_report_templates/active_job_master.rb +34 -0
- data/guides/bug_report_templates/active_record_gem.rb +54 -0
- data/guides/bug_report_templates/active_record_master.rb +51 -0
- data/guides/bug_report_templates/active_record_migrations_gem.rb +65 -0
- data/guides/bug_report_templates/active_record_migrations_master.rb +65 -0
- data/guides/bug_report_templates/benchmark.rb +52 -0
- data/guides/bug_report_templates/generic_gem.rb +27 -0
- data/guides/bug_report_templates/generic_master.rb +25 -0
- data/guides/rails_guides.rb +29 -0
- data/guides/rails_guides/generator.rb +208 -0
- data/guides/rails_guides/helpers.rb +55 -0
- data/guides/rails_guides/indexer.rb +70 -0
- data/guides/rails_guides/kindle.rb +116 -0
- data/guides/rails_guides/levenshtein.rb +44 -0
- data/guides/rails_guides/markdown.rb +173 -0
- data/guides/rails_guides/markdown/renderer.rb +123 -0
- data/guides/source/2_2_release_notes.md +436 -0
- data/guides/source/2_3_release_notes.md +623 -0
- data/guides/source/3_0_release_notes.md +612 -0
- data/guides/source/3_1_release_notes.md +561 -0
- data/guides/source/3_2_release_notes.md +570 -0
- data/guides/source/4_0_release_notes.md +284 -0
- data/guides/source/4_1_release_notes.md +732 -0
- data/guides/source/4_2_release_notes.md +890 -0
- data/guides/source/5_0_release_notes.md +1096 -0
- data/guides/source/5_1_release_notes.md +652 -0
- data/guides/source/_license.html.erb +2 -0
- data/guides/source/_welcome.html.erb +25 -0
- data/guides/source/action_cable_overview.md +691 -0
- data/guides/source/action_controller_overview.md +1218 -0
- data/guides/source/action_mailer_basics.md +826 -0
- data/guides/source/action_view_overview.md +1511 -0
- data/guides/source/active_job_basics.md +403 -0
- data/guides/source/active_model_basics.md +505 -0
- data/guides/source/active_record_basics.md +377 -0
- data/guides/source/active_record_callbacks.md +459 -0
- data/guides/source/active_record_migrations.md +1055 -0
- data/guides/source/active_record_postgresql.md +517 -0
- data/guides/source/active_record_querying.md +2048 -0
- data/guides/source/active_record_validations.md +1296 -0
- data/guides/source/active_support_core_extensions.md +3748 -0
- data/guides/source/active_support_instrumentation.md +552 -0
- data/guides/source/api_app.md +426 -0
- data/guides/source/api_documentation_guidelines.md +366 -0
- data/guides/source/asset_pipeline.md +1299 -0
- data/guides/source/association_basics.md +2467 -0
- data/guides/source/autoloading_and_reloading_constants.md +1323 -0
- data/guides/source/caching_with_rails.md +615 -0
- data/guides/source/command_line.md +664 -0
- data/guides/source/configuring.md +1341 -0
- data/guides/source/contributing_to_ruby_on_rails.md +667 -0
- data/guides/source/credits.html.erb +80 -0
- data/guides/source/debugging_rails_applications.md +954 -0
- data/guides/source/development_dependencies_install.md +378 -0
- data/guides/source/documents.yaml +230 -0
- data/guides/source/engines.md +1527 -0
- data/guides/source/form_helpers.md +1023 -0
- data/guides/source/generators.md +716 -0
- data/guides/source/getting_started.md +2100 -0
- data/guides/source/i18n.md +1208 -0
- data/guides/source/index.html.erb +28 -0
- data/guides/source/initialization.md +712 -0
- data/guides/source/kindle/copyright.html.erb +1 -0
- data/guides/source/kindle/layout.html.erb +27 -0
- data/guides/source/kindle/rails_guides.opf.erb +52 -0
- data/guides/source/kindle/toc.html.erb +24 -0
- data/guides/source/kindle/toc.ncx.erb +64 -0
- data/guides/source/kindle/welcome.html.erb +7 -0
- data/guides/source/layout.html.erb +138 -0
- data/guides/source/layouts_and_rendering.md +1330 -0
- data/guides/source/maintenance_policy.md +80 -0
- data/guides/source/plugins.md +484 -0
- data/guides/source/rails_application_templates.md +282 -0
- data/guides/source/rails_on_rack.md +310 -0
- data/guides/source/routing.md +1182 -0
- data/guides/source/ruby_on_rails_guides_guidelines.md +173 -0
- data/guides/source/security.md +1066 -0
- data/guides/source/testing.md +1566 -0
- data/guides/source/upgrading_ruby_on_rails.md +1552 -0
- data/guides/source/working_with_javascript_in_rails.md +550 -0
- data/guides/w3c_validator.rb +98 -0
- data/rails.gemspec +36 -0
- data/railties/.gitignore +1 -0
- data/railties/CHANGELOG.md +129 -0
- data/railties/MIT-LICENSE +20 -0
- data/railties/RDOC_MAIN.rdoc +73 -0
- data/railties/README.rdoc +40 -0
- data/railties/Rakefile +37 -0
- data/railties/bin/test +5 -0
- data/railties/exe/rails +10 -0
- data/railties/lib/minitest/rails_plugin.rb +54 -0
- data/railties/lib/rails.rb +114 -0
- data/railties/lib/rails/all.rb +20 -0
- data/railties/lib/rails/api/generator.rb +37 -0
- data/railties/lib/rails/api/task.rb +185 -0
- data/railties/lib/rails/app_loader.rb +77 -0
- data/railties/lib/rails/app_updater.rb +33 -0
- data/railties/lib/rails/application.rb +531 -0
- data/railties/lib/rails/application/bootstrap.rb +89 -0
- data/railties/lib/rails/application/configuration.rb +252 -0
- data/railties/lib/rails/application/default_middleware_stack.rb +101 -0
- data/railties/lib/rails/application/finisher.rb +196 -0
- data/railties/lib/rails/application/routes_reloader.rb +71 -0
- data/railties/lib/rails/application_controller.rb +18 -0
- data/railties/lib/rails/backtrace_cleaner.rb +34 -0
- data/railties/lib/rails/cli.rb +19 -0
- data/railties/lib/rails/code_statistics.rb +115 -0
- data/railties/lib/rails/code_statistics_calculator.rb +88 -0
- data/railties/lib/rails/command.rb +113 -0
- data/railties/lib/rails/command/actions.rb +44 -0
- data/railties/lib/rails/command/base.rb +157 -0
- data/railties/lib/rails/command/behavior.rb +125 -0
- data/railties/lib/rails/command/environment_argument.rb +47 -0
- data/railties/lib/rails/commands.rb +18 -0
- data/railties/lib/rails/commands/application/application_command.rb +31 -0
- data/railties/lib/rails/commands/console/console_command.rb +100 -0
- data/railties/lib/rails/commands/dbconsole/dbconsole_command.rb +170 -0
- data/railties/lib/rails/commands/destroy/destroy_command.rb +28 -0
- data/railties/lib/rails/commands/generate/generate_command.rb +30 -0
- data/railties/lib/rails/commands/help/USAGE +16 -0
- data/railties/lib/rails/commands/help/help_command.rb +15 -0
- data/railties/lib/rails/commands/new/new_command.rb +19 -0
- data/railties/lib/rails/commands/plugin/plugin_command.rb +45 -0
- data/railties/lib/rails/commands/rake/rake_command.rb +51 -0
- data/railties/lib/rails/commands/runner/USAGE +20 -0
- data/railties/lib/rails/commands/runner/runner_command.rb +53 -0
- data/railties/lib/rails/commands/secrets/USAGE +60 -0
- data/railties/lib/rails/commands/secrets/secrets_command.rb +66 -0
- data/railties/lib/rails/commands/server/server_command.rb +243 -0
- data/railties/lib/rails/commands/test/test_command.rb +37 -0
- data/railties/lib/rails/commands/version/version_command.rb +11 -0
- data/railties/lib/rails/configuration.rb +137 -0
- data/railties/lib/rails/console/app.rb +38 -0
- data/railties/lib/rails/console/helpers.rb +19 -0
- data/railties/lib/rails/dev_caching.rb +44 -0
- data/railties/lib/rails/engine.rb +705 -0
- data/railties/lib/rails/engine/commands.rb +9 -0
- data/railties/lib/rails/engine/configuration.rb +88 -0
- data/railties/lib/rails/engine/railties.rb +23 -0
- data/railties/lib/rails/engine/updater.rb +21 -0
- data/railties/lib/rails/gem_version.rb +17 -0
- data/railties/lib/rails/generators.rb +319 -0
- data/railties/lib/rails/generators/actions.rb +326 -0
- data/railties/lib/rails/generators/actions/create_migration.rb +71 -0
- data/railties/lib/rails/generators/active_model.rb +80 -0
- data/railties/lib/rails/generators/app_base.rb +447 -0
- data/railties/lib/rails/generators/base.rb +417 -0
- data/railties/lib/rails/generators/css/assets/assets_generator.rb +15 -0
- data/railties/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
- data/railties/lib/rails/generators/css/scaffold/scaffold_generator.rb +18 -0
- data/railties/lib/rails/generators/erb.rb +27 -0
- data/railties/lib/rails/generators/erb/controller/controller_generator.rb +24 -0
- data/railties/lib/rails/generators/erb/controller/templates/view.html.erb +2 -0
- data/railties/lib/rails/generators/erb/mailer/mailer_generator.rb +42 -0
- data/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb.tt +13 -0
- data/railties/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt +1 -0
- data/railties/lib/rails/generators/erb/mailer/templates/view.html.erb +5 -0
- data/railties/lib/rails/generators/erb/mailer/templates/view.text.erb +3 -0
- data/railties/lib/rails/generators/erb/scaffold/scaffold_generator.rb +33 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/_form.html.erb +34 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/edit.html.erb +6 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/index.html.erb +31 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb +5 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb +11 -0
- data/railties/lib/rails/generators/generated_attribute.rb +177 -0
- data/railties/lib/rails/generators/js/assets/assets_generator.rb +15 -0
- data/railties/lib/rails/generators/js/assets/templates/javascript.js +2 -0
- data/railties/lib/rails/generators/migration.rb +71 -0
- data/railties/lib/rails/generators/model_helpers.rb +30 -0
- data/railties/lib/rails/generators/named_base.rb +207 -0
- data/railties/lib/rails/generators/rails/app/USAGE +14 -0
- data/railties/lib/rails/generators/rails/app/app_generator.rb +579 -0
- data/railties/lib/rails/generators/rails/app/templates/Gemfile +69 -0
- data/railties/lib/rails/generators/rails/app/templates/README.md +24 -0
- data/railties/lib/rails/generators/rails/app/templates/Rakefile +6 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/config/manifest.js.tt +5 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +20 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/javascripts/cable.js +13 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +15 -0
- data/railties/lib/rails/generators/rails/app/templates/app/channels/application_cable/channel.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/channels/application_cable/connection.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/jobs/application_job.rb +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/models/application_record.rb +3 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +23 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.html.erb.tt +13 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt +1 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/bundle +2 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/rails +3 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/rake +3 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/setup.tt +39 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/update.tt +29 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/yarn +10 -0
- data/railties/lib/rails/generators/rails/app/templates/config.ru +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/application.rb +44 -0
- data/railties/lib/rails/generators/rails/app/templates/config/boot.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/cable.yml +10 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +50 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +86 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +69 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +53 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +69 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +24 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +58 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +61 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +85 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +25 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml +52 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environment.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +64 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +107 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +47 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/application_controller_renderer.rb +8 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/cors.rb +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_5_2.rb.tt +27 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/locales/en.yml +33 -0
- data/railties/lib/rails/generators/rails/app/templates/config/puma.rb +56 -0
- data/railties/lib/rails/generators/rails/app/templates/config/routes.rb +3 -0
- data/railties/lib/rails/generators/rails/app/templates/config/secrets.yml +32 -0
- data/railties/lib/rails/generators/rails/app/templates/config/spring.rb +6 -0
- data/railties/lib/rails/generators/rails/app/templates/config/storage.yml +35 -0
- data/railties/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
- data/railties/lib/rails/generators/rails/app/templates/gitignore +35 -0
- data/railties/lib/rails/generators/rails/app/templates/package.json +5 -0
- data/railties/lib/rails/generators/rails/app/templates/public/404.html +67 -0
- data/railties/lib/rails/generators/rails/app/templates/public/422.html +67 -0
- data/railties/lib/rails/generators/rails/app/templates/public/500.html +66 -0
- data/railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/robots.txt +1 -0
- data/railties/lib/rails/generators/rails/app/templates/ruby-version +1 -0
- data/railties/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb +11 -0
- data/railties/lib/rails/generators/rails/application_record/application_record_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/assets/USAGE +20 -0
- data/railties/lib/rails/generators/rails/assets/assets_generator.rb +27 -0
- data/railties/lib/rails/generators/rails/assets/templates/javascript.js +2 -0
- data/railties/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
- data/railties/lib/rails/generators/rails/controller/USAGE +18 -0
- data/railties/lib/rails/generators/rails/controller/controller_generator.rb +66 -0
- data/railties/lib/rails/generators/rails/controller/templates/controller.rb +13 -0
- data/railties/lib/rails/generators/rails/encrypted_secrets/encrypted_secrets_generator.rb +72 -0
- data/railties/lib/rails/generators/rails/generator/USAGE +13 -0
- data/railties/lib/rails/generators/rails/generator/generator_generator.rb +28 -0
- data/railties/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
- data/railties/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
- data/railties/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
- data/railties/lib/rails/generators/rails/helper/USAGE +13 -0
- data/railties/lib/rails/generators/rails/helper/helper_generator.rb +15 -0
- data/railties/lib/rails/generators/rails/helper/templates/helper.rb +4 -0
- data/railties/lib/rails/generators/rails/integration_test/USAGE +10 -0
- data/railties/lib/rails/generators/rails/integration_test/integration_test_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/migration/USAGE +35 -0
- data/railties/lib/rails/generators/rails/migration/migration_generator.rb +10 -0
- data/railties/lib/rails/generators/rails/model/USAGE +114 -0
- data/railties/lib/rails/generators/rails/model/model_generator.rb +14 -0
- data/railties/lib/rails/generators/rails/plugin/USAGE +10 -0
- data/railties/lib/rails/generators/rails/plugin/plugin_generator.rb +450 -0
- data/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec +24 -0
- data/railties/lib/rails/generators/rails/plugin/templates/Gemfile +48 -0
- data/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE +20 -0
- data/railties/lib/rails/generators/rails/plugin/templates/README.md +28 -0
- data/railties/lib/rails/generators/rails/plugin/templates/Rakefile +28 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/helpers/%namespaced_name%/application_helper.rb.tt +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/jobs/%namespaced_name%/application_job.rb.tt +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +14 -0
- data/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt +30 -0
- data/railties/lib/rails/generators/rails/plugin/templates/bin/test.tt +4 -0
- data/railties/lib/rails/generators/rails/plugin/templates/config/routes.rb +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/gitignore +15 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/railtie.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb +1 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/tasks/%namespaced_name%_tasks.rake +4 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/application.rb +23 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/boot.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/dummy_manifest.js +10 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/engine_manifest.js +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/javascripts.js +13 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/routes.rb +3 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +15 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/test_helper.rb +26 -0
- data/railties/lib/rails/generators/rails/resource/USAGE +23 -0
- data/railties/lib/rails/generators/rails/resource/resource_generator.rb +21 -0
- data/railties/lib/rails/generators/rails/resource_route/resource_route_generator.rb +48 -0
- data/railties/lib/rails/generators/rails/scaffold/USAGE +41 -0
- data/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb +36 -0
- data/railties/lib/rails/generators/rails/scaffold/templates/scaffold.css +80 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +37 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb +61 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +68 -0
- data/railties/lib/rails/generators/rails/system_test/USAGE +10 -0
- data/railties/lib/rails/generators/rails/system_test/system_test_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/task/USAGE +9 -0
- data/railties/lib/rails/generators/rails/task/task_generator.rb +13 -0
- data/railties/lib/rails/generators/rails/task/templates/task.rb +8 -0
- data/railties/lib/rails/generators/resource_helpers.rb +87 -0
- data/railties/lib/rails/generators/test_case.rb +37 -0
- data/railties/lib/rails/generators/test_unit.rb +10 -0
- data/railties/lib/rails/generators/test_unit/controller/controller_generator.rb +17 -0
- data/railties/lib/rails/generators/test_unit/controller/templates/functional_test.rb +25 -0
- data/railties/lib/rails/generators/test_unit/generator/generator_generator.rb +28 -0
- data/railties/lib/rails/generators/test_unit/generator/templates/generator_test.rb +18 -0
- data/railties/lib/rails/generators/test_unit/helper/helper_generator.rb +11 -0
- data/railties/lib/rails/generators/test_unit/integration/integration_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb +11 -0
- data/railties/lib/rails/generators/test_unit/job/job_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/job/templates/unit_test.rb.erb +9 -0
- data/railties/lib/rails/generators/test_unit/mailer/mailer_generator.rb +28 -0
- data/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +23 -0
- data/railties/lib/rails/generators/test_unit/mailer/templates/preview.rb +15 -0
- data/railties/lib/rails/generators/test_unit/model/model_generator.rb +37 -0
- data/railties/lib/rails/generators/test_unit/model/templates/fixtures.yml +29 -0
- data/railties/lib/rails/generators/test_unit/model/templates/unit_test.rb +11 -0
- data/railties/lib/rails/generators/test_unit/plugin/plugin_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
- data/railties/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +4 -0
- data/railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +59 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb +46 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +56 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb +51 -0
- data/railties/lib/rails/generators/test_unit/system/system_generator.rb +19 -0
- data/railties/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb +7 -0
- data/railties/lib/rails/generators/test_unit/system/templates/system_test.rb +11 -0
- data/railties/lib/rails/generators/testing/assertions.rb +127 -0
- data/railties/lib/rails/generators/testing/behaviour.rb +111 -0
- data/railties/lib/rails/generators/testing/setup_and_teardown.rb +20 -0
- data/railties/lib/rails/info.rb +105 -0
- data/railties/lib/rails/info_controller.rb +46 -0
- data/railties/lib/rails/initializable.rb +95 -0
- data/railties/lib/rails/mailers_controller.rb +87 -0
- data/railties/lib/rails/paths.rb +227 -0
- data/railties/lib/rails/plugin/test.rb +9 -0
- data/railties/lib/rails/rack.rb +7 -0
- data/railties/lib/rails/rack/logger.rb +80 -0
- data/railties/lib/rails/railtie.rb +260 -0
- data/railties/lib/rails/railtie/configurable.rb +37 -0
- data/railties/lib/rails/railtie/configuration.rb +102 -0
- data/railties/lib/rails/ruby_version_check.rb +15 -0
- data/railties/lib/rails/secrets.rb +123 -0
- data/railties/lib/rails/source_annotation_extractor.rb +141 -0
- data/railties/lib/rails/tasks.rb +22 -0
- data/railties/lib/rails/tasks/annotations.rake +22 -0
- data/railties/lib/rails/tasks/dev.rake +10 -0
- data/railties/lib/rails/tasks/engine.rake +85 -0
- data/railties/lib/rails/tasks/framework.rake +58 -0
- data/railties/lib/rails/tasks/initializers.rake +8 -0
- data/railties/lib/rails/tasks/log.rake +42 -0
- data/railties/lib/rails/tasks/middleware.rake +9 -0
- data/railties/lib/rails/tasks/misc.rake +79 -0
- data/railties/lib/rails/tasks/restart.rake +9 -0
- data/railties/lib/rails/tasks/routes.rake +31 -0
- data/railties/lib/rails/tasks/statistics.rake +31 -0
- data/railties/lib/rails/tasks/tmp.rake +44 -0
- data/railties/lib/rails/tasks/yarn.rake +13 -0
- data/railties/lib/rails/templates/layouts/application.html.erb +36 -0
- data/railties/lib/rails/templates/rails/info/properties.html.erb +1 -0
- data/railties/lib/rails/templates/rails/info/routes.html.erb +9 -0
- data/railties/lib/rails/templates/rails/mailers/email.html.erb +133 -0
- data/railties/lib/rails/templates/rails/mailers/index.html.erb +8 -0
- data/railties/lib/rails/templates/rails/mailers/mailer.html.erb +6 -0
- data/railties/lib/rails/templates/rails/welcome/index.html.erb +74 -0
- data/railties/lib/rails/test_help.rb +52 -0
- data/railties/lib/rails/test_unit/line_filtering.rb +13 -0
- data/railties/lib/rails/test_unit/railtie.rb +29 -0
- data/railties/lib/rails/test_unit/reporter.rb +104 -0
- data/railties/lib/rails/test_unit/runner.rb +143 -0
- data/railties/lib/rails/test_unit/testing.rake +58 -0
- data/railties/lib/rails/version.rb +10 -0
- data/railties/lib/rails/welcome_controller.rb +10 -0
- data/railties/railties.gemspec +41 -0
- data/railties/test/abstract_unit.rb +33 -0
- data/railties/test/app_loader_test.rb +91 -0
- data/railties/test/application/asset_debugging_test.rb +171 -0
- data/railties/test/application/assets_test.rb +524 -0
- data/railties/test/application/bin_setup_test.rb +62 -0
- data/railties/test/application/configuration/custom_test.rb +47 -0
- data/railties/test/application/configuration_test.rb +1816 -0
- data/railties/test/application/console_test.rb +158 -0
- data/railties/test/application/current_attributes_integration_test.rb +86 -0
- data/railties/test/application/dbconsole_test.rb +78 -0
- data/railties/test/application/generators_test.rb +200 -0
- data/railties/test/application/help_test.rb +25 -0
- data/railties/test/application/initializers/frameworks_test.rb +276 -0
- data/railties/test/application/initializers/hooks_test.rb +91 -0
- data/railties/test/application/initializers/i18n_test.rb +296 -0
- data/railties/test/application/initializers/load_path_test.rb +111 -0
- data/railties/test/application/initializers/notifications_test.rb +57 -0
- data/railties/test/application/integration_test_case_test.rb +75 -0
- data/railties/test/application/loading_test.rb +373 -0
- data/railties/test/application/mailer_previews_test.rb +787 -0
- data/railties/test/application/middleware/cache_test.rb +181 -0
- data/railties/test/application/middleware/cookies_test.rb +48 -0
- data/railties/test/application/middleware/exceptions_test.rb +140 -0
- data/railties/test/application/middleware/remote_ip_test.rb +80 -0
- data/railties/test/application/middleware/sendfile_test.rb +75 -0
- data/railties/test/application/middleware/session_test.rb +459 -0
- data/railties/test/application/middleware/static_test.rb +70 -0
- data/railties/test/application/middleware_test.rb +312 -0
- data/railties/test/application/multiple_applications_test.rb +177 -0
- data/railties/test/application/paths_test.rb +84 -0
- data/railties/test/application/per_request_digest_cache_test.rb +72 -0
- data/railties/test/application/rack/logger_test.rb +58 -0
- data/railties/test/application/rackup_test.rb +44 -0
- data/railties/test/application/rake/dbs_test.rb +320 -0
- data/railties/test/application/rake/dev_test.rb +49 -0
- data/railties/test/application/rake/framework_test.rb +48 -0
- data/railties/test/application/rake/log_test.rb +35 -0
- data/railties/test/application/rake/migrations_test.rb +306 -0
- data/railties/test/application/rake/notes_test.rb +171 -0
- data/railties/test/application/rake/restart_test.rb +40 -0
- data/railties/test/application/rake/tmp_test.rb +45 -0
- data/railties/test/application/rake_test.rb +425 -0
- data/railties/test/application/rendering_test.rb +46 -0
- data/railties/test/application/routing_test.rb +682 -0
- data/railties/test/application/runner_test.rb +135 -0
- data/railties/test/application/server_test.rb +61 -0
- data/railties/test/application/test_runner_test.rb +771 -0
- data/railties/test/application/test_test.rb +340 -0
- data/railties/test/application/url_generation_test.rb +59 -0
- data/railties/test/application/version_test.rb +26 -0
- data/railties/test/backtrace_cleaner_test.rb +34 -0
- data/railties/test/code_statistics_calculator_test.rb +332 -0
- data/railties/test/code_statistics_test.rb +34 -0
- data/railties/test/command/base_test.rb +13 -0
- data/railties/test/commands/console_test.rb +192 -0
- data/railties/test/commands/dbconsole_test.rb +355 -0
- data/railties/test/commands/secrets_test.rb +49 -0
- data/railties/test/commands/server_test.rb +204 -0
- data/railties/test/configuration/middleware_stack_proxy_test.rb +63 -0
- data/railties/test/console_helpers.rb +25 -0
- data/railties/test/engine/commands_test.rb +80 -0
- data/railties/test/engine_test.rb +27 -0
- data/railties/test/env_helpers.rb +32 -0
- data/railties/test/fixtures/about_yml_plugins/bad_about_yml/about.yml +1 -0
- data/railties/test/fixtures/about_yml_plugins/bad_about_yml/init.rb +3 -0
- data/railties/test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb +3 -0
- data/railties/test/fixtures/lib/create_test_dummy_template.rb +3 -0
- data/railties/test/fixtures/lib/generators/active_record/fixjour_generator.rb +10 -0
- data/railties/test/fixtures/lib/generators/fixjour_generator.rb +4 -0
- data/railties/test/fixtures/lib/generators/model_generator.rb +3 -0
- data/railties/test/fixtures/lib/generators/usage_template/USAGE +1 -0
- data/railties/test/fixtures/lib/generators/usage_template/usage_template_generator.rb +7 -0
- data/railties/test/fixtures/lib/rails/generators/foobar/foobar_generator.rb +6 -0
- data/railties/test/fixtures/lib/template.rb +3 -0
- data/railties/test/generators/actions_test.rb +442 -0
- data/railties/test/generators/api_app_generator_test.rb +164 -0
- data/railties/test/generators/app_generator_test.rb +823 -0
- data/railties/test/generators/application_record_generator_test.rb +16 -0
- data/railties/test/generators/argv_scrubber_test.rb +138 -0
- data/railties/test/generators/assets_generator_test.rb +21 -0
- data/railties/test/generators/channel_generator_test.rb +79 -0
- data/railties/test/generators/controller_generator_test.rb +112 -0
- data/railties/test/generators/create_migration_test.rb +136 -0
- data/railties/test/generators/encrypted_secrets_generator_test.rb +44 -0
- data/railties/test/generators/generated_attribute_test.rb +154 -0
- data/railties/test/generators/generator_generator_test.rb +73 -0
- data/railties/test/generators/generator_test.rb +102 -0
- data/railties/test/generators/generators_test_helper.rb +51 -0
- data/railties/test/generators/helper_generator_test.rb +41 -0
- data/railties/test/generators/integration_test_generator_test.rb +18 -0
- data/railties/test/generators/job_generator_test.rb +38 -0
- data/railties/test/generators/mailer_generator_test.rb +179 -0
- data/railties/test/generators/migration_generator_test.rb +356 -0
- data/railties/test/generators/model_generator_test.rb +469 -0
- data/railties/test/generators/named_base_test.rb +141 -0
- data/railties/test/generators/namespaced_generators_test.rb +436 -0
- data/railties/test/generators/orm_test.rb +40 -0
- data/railties/test/generators/plugin_generator_test.rb +756 -0
- data/railties/test/generators/plugin_test_helper.rb +26 -0
- data/railties/test/generators/plugin_test_runner_test.rb +116 -0
- data/railties/test/generators/resource_generator_test.rb +90 -0
- data/railties/test/generators/scaffold_controller_generator_test.rb +254 -0
- data/railties/test/generators/scaffold_generator_test.rb +652 -0
- data/railties/test/generators/shared_generator_tests.rb +270 -0
- data/railties/test/generators/system_test_generator_test.rb +19 -0
- data/railties/test/generators/task_generator_test.rb +26 -0
- data/railties/test/generators/test_runner_in_engine_test.rb +34 -0
- data/railties/test/generators_test.rb +248 -0
- data/railties/test/initializable_test.rb +236 -0
- data/railties/test/isolation/abstract_unit.rb +332 -0
- data/railties/test/json_params_parsing_test.rb +51 -0
- data/railties/test/path_generation_test.rb +85 -0
- data/railties/test/paths_test.rb +298 -0
- data/railties/test/rack_logger_test.rb +77 -0
- data/railties/test/rails_info_controller_test.rb +89 -0
- data/railties/test/rails_info_test.rb +73 -0
- data/railties/test/railties/engine_test.rb +1476 -0
- data/railties/test/railties/generators_test.rb +132 -0
- data/railties/test/railties/mounted_engine_test.rb +281 -0
- data/railties/test/railties/railtie_test.rb +216 -0
- data/railties/test/secrets_test.rb +178 -0
- data/railties/test/test_unit/reporter_test.rb +198 -0
- data/railties/test/version_test.rb +14 -0
- data/tasks/release.rb +253 -0
- data/tasks/release_announcement_draft.erb +38 -0
- data/tools/README.md +10 -0
- data/tools/console +11 -0
- data/tools/line_statistics +42 -0
- data/tools/profile +138 -0
- data/tools/test.rb +26 -0
- data/version.rb +17 -0
- metadata +3544 -0
@@ -0,0 +1 @@
|
|
1
|
+
<%= render 'license' %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
7
|
+
|
8
|
+
<title><%= yield(:page_title) || 'Ruby on Quails Guides' %></title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/kindle.css" />
|
11
|
+
|
12
|
+
</head>
|
13
|
+
<body class="guide">
|
14
|
+
|
15
|
+
<% if content_for? :header_section %>
|
16
|
+
<%= yield :header_section %>
|
17
|
+
<div class="pagebreak"></div>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
<% if content_for? :index_section %>
|
21
|
+
<%= yield :index_section %>
|
22
|
+
<div class="pagebreak"></div>
|
23
|
+
<% end %>
|
24
|
+
|
25
|
+
<%= yield.html_safe %>
|
26
|
+
</body>
|
27
|
+
</html>
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
|
3
|
+
<package xmlns="http://www.idpf.org/2007/opf" version="2.0" unique-identifier="QuailsGuides">
|
4
|
+
<metadata>
|
5
|
+
<meta name="cover" content="cover" />
|
6
|
+
<dc-metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
|
7
|
+
|
8
|
+
<dc:title>Ruby on Quails Guides (<%= @version || "master@#{@edge[0, 7]}" %>)</dc:title>
|
9
|
+
|
10
|
+
<dc:language>en-us</dc:language>
|
11
|
+
<dc:creator>Ruby on Quails</dc:creator>
|
12
|
+
<dc:publisher>Ruby on Quails</dc:publisher>
|
13
|
+
<dc:subject>Reference</dc:subject>
|
14
|
+
<dc:date><%= Time.now.strftime('%Y-%m-%d') %></dc:date>
|
15
|
+
|
16
|
+
<dc:description>These guides are designed to make you immediately productive with Quails, and to help you understand how all of the pieces fit together.</dc:description>
|
17
|
+
</dc-metadata>
|
18
|
+
<x-metadata>
|
19
|
+
<output content-type="application/x-mobipocket-subscription-magazine" encoding="utf-8"/>
|
20
|
+
</x-metadata>
|
21
|
+
</metadata>
|
22
|
+
|
23
|
+
<manifest>
|
24
|
+
<!-- HTML content files [mandatory] -->
|
25
|
+
<% documents_flat.each do |document| %>
|
26
|
+
<item id="<%= document['url'] %>" media-type="text/html" href="<%= document['url'] %>" />
|
27
|
+
<% end %>
|
28
|
+
|
29
|
+
<% %w{toc.html credits.html welcome.html copyright.html}.each do |url| %>
|
30
|
+
<item id="<%= url %>" media-type="text/html" href="<%= url %>" />
|
31
|
+
<% end %>
|
32
|
+
|
33
|
+
<item id="toc" media-type="application/x-dtbncx+xml" href="toc.ncx" />
|
34
|
+
|
35
|
+
<item id="cover" media-type="image/jpg" href="images/quails_guides_kindle_cover.jpg"/>
|
36
|
+
</manifest>
|
37
|
+
|
38
|
+
<spine toc="toc">
|
39
|
+
<itemref idref="toc.html" />
|
40
|
+
<itemref idref="welcome.html" />
|
41
|
+
<itemref idref="credits.html" />
|
42
|
+
<itemref idref="copyright.html" />
|
43
|
+
<% documents_flat.each do |document| %>
|
44
|
+
<itemref idref="<%= document['url'] %>" />
|
45
|
+
<% end %>
|
46
|
+
</spine>
|
47
|
+
|
48
|
+
<guide>
|
49
|
+
<reference type="toc" title="Table of Contents" href="toc.html"></reference>
|
50
|
+
</guide>
|
51
|
+
|
52
|
+
</package>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<% content_for :page_title do %>
|
2
|
+
Ruby on Quails Guides
|
3
|
+
<% end %>
|
4
|
+
|
5
|
+
<h1>Table of Contents</h1>
|
6
|
+
<div id="toc">
|
7
|
+
<ul><li><a href="welcome.html">Welcome</a></li></ul>
|
8
|
+
<% documents_by_section.each_with_index do |section, i| %>
|
9
|
+
<h3><%= "#{i + 1}." %> <%= section['name'] %></h3>
|
10
|
+
<ul>
|
11
|
+
<% section['documents'].each do |document| %>
|
12
|
+
<li>
|
13
|
+
<a href="<%= document['url'] %>"><%= document['name'] %></a>
|
14
|
+
<% if document['work_in_progress']%>(WIP)<% end %>
|
15
|
+
</li>
|
16
|
+
<% end %>
|
17
|
+
</ul>
|
18
|
+
<% end %>
|
19
|
+
<hr />
|
20
|
+
<ul>
|
21
|
+
<li><a href="credits.html">Credits</a></li>
|
22
|
+
<li><a href="copyright.html">Copyright & License</a></li>
|
23
|
+
</ul>
|
24
|
+
</div>
|
@@ -0,0 +1,64 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE ncx PUBLIC "-//NISO//DTD ncx 2005-1//EN"
|
3
|
+
"http://www.daisy.org/z3986/2005/ncx-2005-1.dtd">
|
4
|
+
|
5
|
+
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="en-US">
|
6
|
+
<head>
|
7
|
+
<meta name="dtb:uid" content="QuailsGuides"/>
|
8
|
+
<meta name="dtb:depth" content="2"/>
|
9
|
+
<meta name="dtb:totalPageCount" content="0"/>
|
10
|
+
<meta name="dtb:maxPageNumber" content="0"/>
|
11
|
+
</head>
|
12
|
+
<docTitle><text>Ruby on Quails Guides</text></docTitle>
|
13
|
+
<docAuthor><text>docquails</text></docAuthor>
|
14
|
+
<navMap>
|
15
|
+
<navPoint playOrder="0" class="periodical" id="periodical">
|
16
|
+
<navLabel>
|
17
|
+
<text>Table of Contents</text>
|
18
|
+
</navLabel>
|
19
|
+
<content src="toc.html"/>
|
20
|
+
|
21
|
+
<navPoint class="section" id="welcome" playOrder="1">
|
22
|
+
<navLabel>
|
23
|
+
<text>Introduction</text>
|
24
|
+
</navLabel>
|
25
|
+
<content src="welcome.html"/>
|
26
|
+
|
27
|
+
<navPoint class="article" id="welcome" playOrder="2">
|
28
|
+
<navLabel>
|
29
|
+
<text>Welcome</text>
|
30
|
+
</navLabel>
|
31
|
+
<content src="welcome.html"/>
|
32
|
+
</navPoint>
|
33
|
+
<navPoint class="article" id="credits" playOrder="3">
|
34
|
+
<navLabel><text>Credits</text></navLabel>
|
35
|
+
<content src="credits.html"/>
|
36
|
+
</navPoint>
|
37
|
+
<navPoint class="article" id="copyright" playOrder="4">
|
38
|
+
<navLabel><text>Copyright & License</text></navLabel>
|
39
|
+
<content src="copyright.html"/>
|
40
|
+
</navPoint>
|
41
|
+
</navPoint>
|
42
|
+
|
43
|
+
<% play_order = 4 %>
|
44
|
+
<% documents_by_section.each_with_index do |section, section_no| %>
|
45
|
+
<navPoint class="section" id="chapter_<%= section_no + 1 %>" playOrder="<% play_order +=1 %>">
|
46
|
+
<navLabel>
|
47
|
+
<text><%= section['name'] %></text>
|
48
|
+
</navLabel>
|
49
|
+
<content src="<%=section['documents'].first['url'] %>"/>
|
50
|
+
|
51
|
+
<% section['documents'].each_with_index do |document, document_no| %>
|
52
|
+
<navPoint class="article" id="_<%=section_no+1%>.<%=document_no+1%>" playOrder="<%=play_order +=1 %>">
|
53
|
+
<navLabel>
|
54
|
+
<text><%= document['name'] %></text>
|
55
|
+
</navLabel>
|
56
|
+
<content src="<%=document['url'] %>"/>
|
57
|
+
</navPoint>
|
58
|
+
<% end %>
|
59
|
+
</navPoint>
|
60
|
+
<% end %>
|
61
|
+
|
62
|
+
</navPoint>
|
63
|
+
</navMap>
|
64
|
+
</ncx>
|
@@ -0,0 +1,138 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
7
|
+
|
8
|
+
<title><%= yield(:page_title) || 'Ruby on Quails Guides' %></title>
|
9
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
|
10
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
|
11
|
+
|
12
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/syntaxhighlighter/shCore.css" />
|
13
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/syntaxhighlighter/shThemeQuailsGuides.css" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" type="text/css" href="stylesheets/fixes.css" />
|
16
|
+
|
17
|
+
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
18
|
+
</head>
|
19
|
+
<body class="guide">
|
20
|
+
<% if @edge %>
|
21
|
+
<div>
|
22
|
+
<img src="images/edge_badge.png" alt="edge-badge" id="edge-badge" />
|
23
|
+
</div>
|
24
|
+
<% end %>
|
25
|
+
<div id="topNav">
|
26
|
+
<div class="wrapper">
|
27
|
+
<strong class="more-info-label">More at <a href="http://rubyonquails.org/">rubyonquails.org:</a> </strong>
|
28
|
+
<span class="red-button more-info-button">
|
29
|
+
More Ruby on Quails
|
30
|
+
</span>
|
31
|
+
<ul class="more-info-links s-hidden">
|
32
|
+
<li class="more-info"><a href="http://weblog.rubyonquails.org/">Blog</a></li>
|
33
|
+
<li class="more-info"><a href="http://guides.rubyonquails.org/">Guides</a></li>
|
34
|
+
<li class="more-info"><a href="http://api.rubyonquails.org/">API</a></li>
|
35
|
+
<li class="more-info"><a href="https://stackoverflow.com/questions/tagged/ruby-on-quails">Ask for help</a></li>
|
36
|
+
<li class="more-info"><a href="https://github.com/quails/quails">Contribute on GitHub</a></li>
|
37
|
+
</ul>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
<div id="header">
|
41
|
+
<div class="wrapper clearfix">
|
42
|
+
<h1><a href="index.html" title="Return to home page">Guides.rubyonquails.org</a></h1>
|
43
|
+
<ul class="nav">
|
44
|
+
<li><a class="nav-item" href="index.html">Home</a></li>
|
45
|
+
<li class="guides-index guides-index-large">
|
46
|
+
<a href="index.html" id="guidesMenu" class="guides-index-item nav-item">Guides Index</a>
|
47
|
+
<div id="guides" class="clearfix" style="display: none;">
|
48
|
+
<hr />
|
49
|
+
<% ['L', 'R'].each do |position| %>
|
50
|
+
<dl class="<%= position %>">
|
51
|
+
<% docs_for_menu(position).each do |section| %>
|
52
|
+
<dt><%= section['name'] %></dt>
|
53
|
+
<% finished_documents(section['documents']).each do |document| %>
|
54
|
+
<dd><a href="<%= document['url'] %>"><%= document['name'] %></a></dd>
|
55
|
+
<% end %>
|
56
|
+
<% end %>
|
57
|
+
</dl>
|
58
|
+
<% end %>
|
59
|
+
</div>
|
60
|
+
</li>
|
61
|
+
<li><a class="nav-item" href="contributing_to_ruby_on_quails.html">Contribute</a></li>
|
62
|
+
<li><a class="nav-item" href="credits.html">Credits</a></li>
|
63
|
+
<li class="guides-index guides-index-small">
|
64
|
+
<select class="guides-index-item nav-item">
|
65
|
+
<option value="index.html">Guides Index</option>
|
66
|
+
<% docs_for_menu.each do |section| %>
|
67
|
+
<optgroup label="<%= section['name'] %>">
|
68
|
+
<% finished_documents(section['documents']).each do |document| %>
|
69
|
+
<option value="<%= document['url'] %>"><%= document['name'] %></option>
|
70
|
+
<% end %>
|
71
|
+
</optgroup>
|
72
|
+
<% end %>
|
73
|
+
</select>
|
74
|
+
</li>
|
75
|
+
</ul>
|
76
|
+
</div>
|
77
|
+
</div>
|
78
|
+
<hr class="hide" />
|
79
|
+
|
80
|
+
<div id="feature">
|
81
|
+
<div class="wrapper">
|
82
|
+
<%= yield :header_section %>
|
83
|
+
|
84
|
+
<%= yield :index_section %>
|
85
|
+
</div>
|
86
|
+
</div>
|
87
|
+
|
88
|
+
<div id="container">
|
89
|
+
<div class="wrapper">
|
90
|
+
<div id="mainCol">
|
91
|
+
<%= yield %>
|
92
|
+
|
93
|
+
<h3>Feedback</h3>
|
94
|
+
<p>
|
95
|
+
You're encouraged to help improve the quality of this guide.
|
96
|
+
</p>
|
97
|
+
<p>
|
98
|
+
Please contribute if you see any typos or factual errors.
|
99
|
+
To get started, you can read our <%= link_to 'documentation contributions', 'http://edgeguides.rubyonquails.org/contributing_to_ruby_on_quails.html#contributing-to-the-quails-documentation' %> section.
|
100
|
+
</p>
|
101
|
+
<p>
|
102
|
+
You may also find incomplete content, or stuff that is not up to date.
|
103
|
+
Please do add any missing documentation for master. Make sure to check
|
104
|
+
<%= link_to 'Edge Guides','http://edgeguides.rubyonquails.org' %> first to verify
|
105
|
+
if the issues are already fixed or not on the master branch.
|
106
|
+
Check the <%= link_to 'Ruby on Quails Guides Guidelines', 'ruby_on_quails_guides_guidelines.html' %>
|
107
|
+
for style and conventions.
|
108
|
+
</p>
|
109
|
+
<p>
|
110
|
+
If for whatever reason you spot something to fix but cannot patch it yourself, please
|
111
|
+
<%= link_to 'open an issue', 'https://github.com/quails/quails/issues' %>.
|
112
|
+
</p>
|
113
|
+
<p>And last but not least, any kind of discussion regarding Ruby on Quails
|
114
|
+
documentation is very welcome in the <%= link_to 'rubyonquails-docs mailing list', 'https://groups.google.com/forum/#!forum/rubyonquails-docs' %>.
|
115
|
+
</p>
|
116
|
+
</div>
|
117
|
+
</div>
|
118
|
+
</div>
|
119
|
+
|
120
|
+
<hr class="hide" />
|
121
|
+
<div id="footer">
|
122
|
+
<div class="wrapper">
|
123
|
+
<%= render 'license' %>
|
124
|
+
</div>
|
125
|
+
</div>
|
126
|
+
|
127
|
+
<script type="text/javascript" src="javascripts/jquery.min.js"></script>
|
128
|
+
<script type="text/javascript" src="javascripts/responsive-tables.js"></script>
|
129
|
+
<script type="text/javascript" src="javascripts/guides.js"></script>
|
130
|
+
<script type="text/javascript" src="javascripts/syntaxhighlighter.js"></script>
|
131
|
+
<script type="text/javascript">
|
132
|
+
syntaxhighlighterConfig = {
|
133
|
+
autoLinks: false,
|
134
|
+
};
|
135
|
+
$(guidesIndex.bind);
|
136
|
+
</script>
|
137
|
+
</body>
|
138
|
+
</html>
|
@@ -0,0 +1,1330 @@
|
|
1
|
+
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonquails.org.**
|
2
|
+
|
3
|
+
Layouts and Rendering in Quails
|
4
|
+
==============================
|
5
|
+
|
6
|
+
This guide covers the basic layout features of Action Controller and Action View.
|
7
|
+
|
8
|
+
After reading this guide, you will know:
|
9
|
+
|
10
|
+
* How to use the various rendering methods built into Quails.
|
11
|
+
* How to create layouts with multiple content sections.
|
12
|
+
* How to use partials to DRY up your views.
|
13
|
+
* How to use nested layouts (sub-templates).
|
14
|
+
|
15
|
+
--------------------------------------------------------------------------------
|
16
|
+
|
17
|
+
Overview: How the Pieces Fit Together
|
18
|
+
-------------------------------------
|
19
|
+
|
20
|
+
This guide focuses on the interaction between Controller and View in the Model-View-Controller triangle. As you know, the Controller is responsible for orchestrating the whole process of handling a request in Quails, though it normally hands off any heavy code to the Model. But then, when it's time to send a response back to the user, the Controller hands things off to the View. It's that handoff that is the subject of this guide.
|
21
|
+
|
22
|
+
In broad strokes, this involves deciding what should be sent as the response and calling an appropriate method to create that response. If the response is a full-blown view, Quails also does some extra work to wrap the view in a layout and possibly to pull in partial views. You'll see all of those paths later in this guide.
|
23
|
+
|
24
|
+
Creating Responses
|
25
|
+
------------------
|
26
|
+
|
27
|
+
From the controller's point of view, there are three ways to create an HTTP response:
|
28
|
+
|
29
|
+
* Call `render` to create a full response to send back to the browser
|
30
|
+
* Call `redirect_to` to send an HTTP redirect status code to the browser
|
31
|
+
* Call `head` to create a response consisting solely of HTTP headers to send back to the browser
|
32
|
+
|
33
|
+
### Rendering by Default: Convention Over Configuration in Action
|
34
|
+
|
35
|
+
You've heard that Quails promotes "convention over configuration". Default rendering is an excellent example of this. By default, controllers in Quails automatically render views with names that correspond to valid routes. For example, if you have this code in your `BooksController` class:
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
class BooksController < ApplicationController
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
And the following in your routes file:
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
resources :books
|
46
|
+
```
|
47
|
+
|
48
|
+
And you have a view file `app/views/books/index.html.erb`:
|
49
|
+
|
50
|
+
```html+erb
|
51
|
+
<h1>Books are coming soon!</h1>
|
52
|
+
```
|
53
|
+
|
54
|
+
Quails will automatically render `app/views/books/index.html.erb` when you navigate to `/books` and you will see "Books are coming soon!" on your screen.
|
55
|
+
|
56
|
+
However a coming soon screen is only minimally useful, so you will soon create your `Book` model and add the index action to `BooksController`:
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
class BooksController < ApplicationController
|
60
|
+
def index
|
61
|
+
@books = Book.all
|
62
|
+
end
|
63
|
+
end
|
64
|
+
```
|
65
|
+
|
66
|
+
Note that we don't have explicit render at the end of the index action in accordance with "convention over configuration" principle. The rule is that if you do not explicitly render something at the end of a controller action, Quails will automatically look for the `action_name.html.erb` template in the controller's view path and render it. So in this case, Quails will render the `app/views/books/index.html.erb` file.
|
67
|
+
|
68
|
+
If we want to display the properties of all the books in our view, we can do so with an ERB template like this:
|
69
|
+
|
70
|
+
```html+erb
|
71
|
+
<h1>Listing Books</h1>
|
72
|
+
|
73
|
+
<table>
|
74
|
+
<tr>
|
75
|
+
<th>Title</th>
|
76
|
+
<th>Summary</th>
|
77
|
+
<th></th>
|
78
|
+
<th></th>
|
79
|
+
<th></th>
|
80
|
+
</tr>
|
81
|
+
|
82
|
+
<% @books.each do |book| %>
|
83
|
+
<tr>
|
84
|
+
<td><%= book.title %></td>
|
85
|
+
<td><%= book.content %></td>
|
86
|
+
<td><%= link_to "Show", book %></td>
|
87
|
+
<td><%= link_to "Edit", edit_book_path(book) %></td>
|
88
|
+
<td><%= link_to "Remove", book, method: :delete, data: { confirm: "Are you sure?" } %></td>
|
89
|
+
</tr>
|
90
|
+
<% end %>
|
91
|
+
</table>
|
92
|
+
|
93
|
+
<br>
|
94
|
+
|
95
|
+
<%= link_to "New book", new_book_path %>
|
96
|
+
```
|
97
|
+
|
98
|
+
NOTE: The actual rendering is done by subclasses of `ActionView::TemplateHandlers`. This guide does not dig into that process, but it's important to know that the file extension on your view controls the choice of template handler. Beginning with Quails 2, the standard extensions are `.erb` for ERB (HTML with embedded Ruby), and `.builder` for Builder (XML generator).
|
99
|
+
|
100
|
+
### Using `render`
|
101
|
+
|
102
|
+
In most cases, the `ActionController::Base#render` method does the heavy lifting of rendering your application's content for use by a browser. There are a variety of ways to customize the behavior of `render`. You can render the default view for a Quails template, or a specific template, or a file, or inline code, or nothing at all. You can render text, JSON, or XML. You can specify the content type or HTTP status of the rendered response as well.
|
103
|
+
|
104
|
+
TIP: If you want to see the exact results of a call to `render` without needing to inspect it in a browser, you can call `render_to_string`. This method takes exactly the same options as `render`, but it returns a string instead of sending a response back to the browser.
|
105
|
+
|
106
|
+
#### Rendering an Action's View
|
107
|
+
|
108
|
+
If you want to render the view that corresponds to a different template within the same controller, you can use `render` with the name of the view:
|
109
|
+
|
110
|
+
```ruby
|
111
|
+
def update
|
112
|
+
@book = Book.find(params[:id])
|
113
|
+
if @book.update(book_params)
|
114
|
+
redirect_to(@book)
|
115
|
+
else
|
116
|
+
render "edit"
|
117
|
+
end
|
118
|
+
end
|
119
|
+
```
|
120
|
+
|
121
|
+
If the call to `update` fails, calling the `update` action in this controller will render the `edit.html.erb` template belonging to the same controller.
|
122
|
+
|
123
|
+
If you prefer, you can use a symbol instead of a string to specify the action to render:
|
124
|
+
|
125
|
+
```ruby
|
126
|
+
def update
|
127
|
+
@book = Book.find(params[:id])
|
128
|
+
if @book.update(book_params)
|
129
|
+
redirect_to(@book)
|
130
|
+
else
|
131
|
+
render :edit
|
132
|
+
end
|
133
|
+
end
|
134
|
+
```
|
135
|
+
|
136
|
+
#### Rendering an Action's Template from Another Controller
|
137
|
+
|
138
|
+
What if you want to render a template from an entirely different controller from the one that contains the action code? You can also do that with `render`, which accepts the full path (relative to `app/views`) of the template to render. For example, if you're running code in an `AdminProductsController` that lives in `app/controllers/admin`, you can render the results of an action to a template in `app/views/products` this way:
|
139
|
+
|
140
|
+
```ruby
|
141
|
+
render "products/show"
|
142
|
+
```
|
143
|
+
|
144
|
+
Quails knows that this view belongs to a different controller because of the embedded slash character in the string. If you want to be explicit, you can use the `:template` option (which was required on Quails 2.2 and earlier):
|
145
|
+
|
146
|
+
```ruby
|
147
|
+
render template: "products/show"
|
148
|
+
```
|
149
|
+
|
150
|
+
#### Rendering an Arbitrary File
|
151
|
+
|
152
|
+
The `render` method can also use a view that's entirely outside of your application:
|
153
|
+
|
154
|
+
```ruby
|
155
|
+
render file: "/u/apps/warehouse_app/current/app/views/products/show"
|
156
|
+
```
|
157
|
+
|
158
|
+
The `:file` option takes an absolute file-system path. Of course, you need to have rights
|
159
|
+
to the view that you're using to render the content.
|
160
|
+
|
161
|
+
NOTE: Using the `:file` option in combination with users input can lead to security problems
|
162
|
+
since an attacker could use this action to access security sensitive files in your file system.
|
163
|
+
|
164
|
+
NOTE: By default, the file is rendered using the current layout.
|
165
|
+
|
166
|
+
TIP: If you're running Quails on Microsoft Windows, you should use the `:file` option to
|
167
|
+
render a file, because Windows filenames do not have the same format as Unix filenames.
|
168
|
+
|
169
|
+
#### Wrapping it up
|
170
|
+
|
171
|
+
The above three ways of rendering (rendering another template within the controller, rendering a template within another controller and rendering an arbitrary file on the file system) are actually variants of the same action.
|
172
|
+
|
173
|
+
In fact, in the BooksController class, inside of the update action where we want to render the edit template if the book does not update successfully, all of the following render calls would all render the `edit.html.erb` template in the `views/books` directory:
|
174
|
+
|
175
|
+
```ruby
|
176
|
+
render :edit
|
177
|
+
render action: :edit
|
178
|
+
render "edit"
|
179
|
+
render "edit.html.erb"
|
180
|
+
render action: "edit"
|
181
|
+
render action: "edit.html.erb"
|
182
|
+
render "books/edit"
|
183
|
+
render "books/edit.html.erb"
|
184
|
+
render template: "books/edit"
|
185
|
+
render template: "books/edit.html.erb"
|
186
|
+
render "/path/to/quails/app/views/books/edit"
|
187
|
+
render "/path/to/quails/app/views/books/edit.html.erb"
|
188
|
+
render file: "/path/to/quails/app/views/books/edit"
|
189
|
+
render file: "/path/to/quails/app/views/books/edit.html.erb"
|
190
|
+
```
|
191
|
+
|
192
|
+
Which one you use is really a matter of style and convention, but the rule of thumb is to use the simplest one that makes sense for the code you are writing.
|
193
|
+
|
194
|
+
#### Using `render` with `:inline`
|
195
|
+
|
196
|
+
The `render` method can do without a view completely, if you're willing to use the `:inline` option to supply ERB as part of the method call. This is perfectly valid:
|
197
|
+
|
198
|
+
```ruby
|
199
|
+
render inline: "<% products.each do |p| %><p><%= p.name %></p><% end %>"
|
200
|
+
```
|
201
|
+
|
202
|
+
WARNING: There is seldom any good reason to use this option. Mixing ERB into your controllers defeats the MVC orientation of Quails and will make it harder for other developers to follow the logic of your project. Use a separate erb view instead.
|
203
|
+
|
204
|
+
By default, inline rendering uses ERB. You can force it to use Builder instead with the `:type` option:
|
205
|
+
|
206
|
+
```ruby
|
207
|
+
render inline: "xml.p {'Horrid coding practice!'}", type: :builder
|
208
|
+
```
|
209
|
+
|
210
|
+
#### Rendering Text
|
211
|
+
|
212
|
+
You can send plain text - with no markup at all - back to the browser by using
|
213
|
+
the `:plain` option to `render`:
|
214
|
+
|
215
|
+
```ruby
|
216
|
+
render plain: "OK"
|
217
|
+
```
|
218
|
+
|
219
|
+
TIP: Rendering pure text is most useful when you're responding to Ajax or web
|
220
|
+
service requests that are expecting something other than proper HTML.
|
221
|
+
|
222
|
+
NOTE: By default, if you use the `:plain` option, the text is rendered without
|
223
|
+
using the current layout. If you want Quails to put the text into the current
|
224
|
+
layout, you need to add the `layout: true` option and use the `.text.erb`
|
225
|
+
extension for the layout file.
|
226
|
+
|
227
|
+
#### Rendering HTML
|
228
|
+
|
229
|
+
You can send an HTML string back to the browser by using the `:html` option to
|
230
|
+
`render`:
|
231
|
+
|
232
|
+
```ruby
|
233
|
+
render html: "<strong>Not Found</strong>".html_safe
|
234
|
+
```
|
235
|
+
|
236
|
+
TIP: This is useful when you're rendering a small snippet of HTML code.
|
237
|
+
However, you might want to consider moving it to a template file if the markup
|
238
|
+
is complex.
|
239
|
+
|
240
|
+
NOTE: When using `html:` option, HTML entities will be escaped if the string is not marked as HTML safe by using `html_safe` method.
|
241
|
+
|
242
|
+
#### Rendering JSON
|
243
|
+
|
244
|
+
JSON is a JavaScript data format used by many Ajax libraries. Quails has built-in support for converting objects to JSON and rendering that JSON back to the browser:
|
245
|
+
|
246
|
+
```ruby
|
247
|
+
render json: @product
|
248
|
+
```
|
249
|
+
|
250
|
+
TIP: You don't need to call `to_json` on the object that you want to render. If you use the `:json` option, `render` will automatically call `to_json` for you.
|
251
|
+
|
252
|
+
#### Rendering XML
|
253
|
+
|
254
|
+
Quails also has built-in support for converting objects to XML and rendering that XML back to the caller:
|
255
|
+
|
256
|
+
```ruby
|
257
|
+
render xml: @product
|
258
|
+
```
|
259
|
+
|
260
|
+
TIP: You don't need to call `to_xml` on the object that you want to render. If you use the `:xml` option, `render` will automatically call `to_xml` for you.
|
261
|
+
|
262
|
+
#### Rendering Vanilla JavaScript
|
263
|
+
|
264
|
+
Quails can render vanilla JavaScript:
|
265
|
+
|
266
|
+
```ruby
|
267
|
+
render js: "alert('Hello Quails');"
|
268
|
+
```
|
269
|
+
|
270
|
+
This will send the supplied string to the browser with a MIME type of `text/javascript`.
|
271
|
+
|
272
|
+
#### Rendering raw body
|
273
|
+
|
274
|
+
You can send a raw content back to the browser, without setting any content
|
275
|
+
type, by using the `:body` option to `render`:
|
276
|
+
|
277
|
+
```ruby
|
278
|
+
render body: "raw"
|
279
|
+
```
|
280
|
+
|
281
|
+
TIP: This option should be used only if you don't care about the content type of
|
282
|
+
the response. Using `:plain` or `:html` might be more appropriate most of the
|
283
|
+
time.
|
284
|
+
|
285
|
+
NOTE: Unless overridden, your response returned from this render option will be
|
286
|
+
`text/html`, as that is the default content type of Action Dispatch response.
|
287
|
+
|
288
|
+
#### Options for `render`
|
289
|
+
|
290
|
+
Calls to the `render` method generally accept five options:
|
291
|
+
|
292
|
+
* `:content_type`
|
293
|
+
* `:layout`
|
294
|
+
* `:location`
|
295
|
+
* `:status`
|
296
|
+
* `:formats`
|
297
|
+
|
298
|
+
##### The `:content_type` Option
|
299
|
+
|
300
|
+
By default, Quails will serve the results of a rendering operation with the MIME content-type of `text/html` (or `application/json` if you use the `:json` option, or `application/xml` for the `:xml` option.). There are times when you might like to change this, and you can do so by setting the `:content_type` option:
|
301
|
+
|
302
|
+
```ruby
|
303
|
+
render file: filename, content_type: "application/rss"
|
304
|
+
```
|
305
|
+
|
306
|
+
##### The `:layout` Option
|
307
|
+
|
308
|
+
With most of the options to `render`, the rendered content is displayed as part of the current layout. You'll learn more about layouts and how to use them later in this guide.
|
309
|
+
|
310
|
+
You can use the `:layout` option to tell Quails to use a specific file as the layout for the current action:
|
311
|
+
|
312
|
+
```ruby
|
313
|
+
render layout: "special_layout"
|
314
|
+
```
|
315
|
+
|
316
|
+
You can also tell Quails to render with no layout at all:
|
317
|
+
|
318
|
+
```ruby
|
319
|
+
render layout: false
|
320
|
+
```
|
321
|
+
|
322
|
+
##### The `:location` Option
|
323
|
+
|
324
|
+
You can use the `:location` option to set the HTTP `Location` header:
|
325
|
+
|
326
|
+
```ruby
|
327
|
+
render xml: photo, location: photo_url(photo)
|
328
|
+
```
|
329
|
+
|
330
|
+
##### The `:status` Option
|
331
|
+
|
332
|
+
Quails will automatically generate a response with the correct HTTP status code (in most cases, this is `200 OK`). You can use the `:status` option to change this:
|
333
|
+
|
334
|
+
```ruby
|
335
|
+
render status: 500
|
336
|
+
render status: :forbidden
|
337
|
+
```
|
338
|
+
|
339
|
+
Quails understands both numeric status codes and the corresponding symbols shown below.
|
340
|
+
|
341
|
+
| Response Class | HTTP Status Code | Symbol |
|
342
|
+
| ------------------- | ---------------- | -------------------------------- |
|
343
|
+
| **Informational** | 100 | :continue |
|
344
|
+
| | 101 | :switching_protocols |
|
345
|
+
| | 102 | :processing |
|
346
|
+
| **Success** | 200 | :ok |
|
347
|
+
| | 201 | :created |
|
348
|
+
| | 202 | :accepted |
|
349
|
+
| | 203 | :non_authoritative_information |
|
350
|
+
| | 204 | :no_content |
|
351
|
+
| | 205 | :reset_content |
|
352
|
+
| | 206 | :partial_content |
|
353
|
+
| | 207 | :multi_status |
|
354
|
+
| | 208 | :already_reported |
|
355
|
+
| | 226 | :im_used |
|
356
|
+
| **Redirection** | 300 | :multiple_choices |
|
357
|
+
| | 301 | :moved_permanently |
|
358
|
+
| | 302 | :found |
|
359
|
+
| | 303 | :see_other |
|
360
|
+
| | 304 | :not_modified |
|
361
|
+
| | 305 | :use_proxy |
|
362
|
+
| | 307 | :temporary_redirect |
|
363
|
+
| | 308 | :permanent_redirect |
|
364
|
+
| **Client Error** | 400 | :bad_request |
|
365
|
+
| | 401 | :unauthorized |
|
366
|
+
| | 402 | :payment_required |
|
367
|
+
| | 403 | :forbidden |
|
368
|
+
| | 404 | :not_found |
|
369
|
+
| | 405 | :method_not_allowed |
|
370
|
+
| | 406 | :not_acceptable |
|
371
|
+
| | 407 | :proxy_authentication_required |
|
372
|
+
| | 408 | :request_timeout |
|
373
|
+
| | 409 | :conflict |
|
374
|
+
| | 410 | :gone |
|
375
|
+
| | 411 | :length_required |
|
376
|
+
| | 412 | :precondition_failed |
|
377
|
+
| | 413 | :payload_too_large |
|
378
|
+
| | 414 | :uri_too_long |
|
379
|
+
| | 415 | :unsupported_media_type |
|
380
|
+
| | 416 | :range_not_satisfiable |
|
381
|
+
| | 417 | :expectation_failed |
|
382
|
+
| | 421 | :misdirected_request |
|
383
|
+
| | 422 | :unprocessable_entity |
|
384
|
+
| | 423 | :locked |
|
385
|
+
| | 424 | :failed_dependency |
|
386
|
+
| | 426 | :upgrade_required |
|
387
|
+
| | 428 | :precondition_required |
|
388
|
+
| | 429 | :too_many_requests |
|
389
|
+
| | 431 | :request_header_fields_too_large |
|
390
|
+
| | 451 | :unavailable_for_legal_reasons |
|
391
|
+
| **Server Error** | 500 | :internal_server_error |
|
392
|
+
| | 501 | :not_implemented |
|
393
|
+
| | 502 | :bad_gateway |
|
394
|
+
| | 503 | :service_unavailable |
|
395
|
+
| | 504 | :gateway_timeout |
|
396
|
+
| | 505 | :http_version_not_supported |
|
397
|
+
| | 506 | :variant_also_negotiates |
|
398
|
+
| | 507 | :insufficient_storage |
|
399
|
+
| | 508 | :loop_detected |
|
400
|
+
| | 510 | :not_extended |
|
401
|
+
| | 511 | :network_authentication_required |
|
402
|
+
|
403
|
+
NOTE: If you try to render content along with a non-content status code
|
404
|
+
(100-199, 204, 205 or 304), it will be dropped from the response.
|
405
|
+
|
406
|
+
##### The `:formats` Option
|
407
|
+
|
408
|
+
Quails uses the format specified in the request (or `:html` by default). You can
|
409
|
+
change this passing the `:formats` option with a symbol or an array:
|
410
|
+
|
411
|
+
```ruby
|
412
|
+
render formats: :xml
|
413
|
+
render formats: [:json, :xml]
|
414
|
+
```
|
415
|
+
|
416
|
+
If a template with the specified format does not exist an `ActionView::MissingTemplate` error is raised.
|
417
|
+
|
418
|
+
#### Finding Layouts
|
419
|
+
|
420
|
+
To find the current layout, Quails first looks for a file in `app/views/layouts` with the same base name as the controller. For example, rendering actions from the `PhotosController` class will use `app/views/layouts/photos.html.erb` (or `app/views/layouts/photos.builder`). If there is no such controller-specific layout, Quails will use `app/views/layouts/application.html.erb` or `app/views/layouts/application.builder`. If there is no `.erb` layout, Quails will use a `.builder` layout if one exists. Quails also provides several ways to more precisely assign specific layouts to individual controllers and actions.
|
421
|
+
|
422
|
+
##### Specifying Layouts for Controllers
|
423
|
+
|
424
|
+
You can override the default layout conventions in your controllers by using the `layout` declaration. For example:
|
425
|
+
|
426
|
+
```ruby
|
427
|
+
class ProductsController < ApplicationController
|
428
|
+
layout "inventory"
|
429
|
+
#...
|
430
|
+
end
|
431
|
+
```
|
432
|
+
|
433
|
+
With this declaration, all of the views rendered by the `ProductsController` will use `app/views/layouts/inventory.html.erb` as their layout.
|
434
|
+
|
435
|
+
To assign a specific layout for the entire application, use a `layout` declaration in your `ApplicationController` class:
|
436
|
+
|
437
|
+
```ruby
|
438
|
+
class ApplicationController < ActionController::Base
|
439
|
+
layout "main"
|
440
|
+
#...
|
441
|
+
end
|
442
|
+
```
|
443
|
+
|
444
|
+
With this declaration, all of the views in the entire application will use `app/views/layouts/main.html.erb` for their layout.
|
445
|
+
|
446
|
+
##### Choosing Layouts at Runtime
|
447
|
+
|
448
|
+
You can use a symbol to defer the choice of layout until a request is processed:
|
449
|
+
|
450
|
+
```ruby
|
451
|
+
class ProductsController < ApplicationController
|
452
|
+
layout :products_layout
|
453
|
+
|
454
|
+
def show
|
455
|
+
@product = Product.find(params[:id])
|
456
|
+
end
|
457
|
+
|
458
|
+
private
|
459
|
+
def products_layout
|
460
|
+
@current_user.special? ? "special" : "products"
|
461
|
+
end
|
462
|
+
|
463
|
+
end
|
464
|
+
```
|
465
|
+
|
466
|
+
Now, if the current user is a special user, they'll get a special layout when viewing a product.
|
467
|
+
|
468
|
+
You can even use an inline method, such as a Proc, to determine the layout. For example, if you pass a Proc object, the block you give the Proc will be given the `controller` instance, so the layout can be determined based on the current request:
|
469
|
+
|
470
|
+
```ruby
|
471
|
+
class ProductsController < ApplicationController
|
472
|
+
layout Proc.new { |controller| controller.request.xhr? ? "popup" : "application" }
|
473
|
+
end
|
474
|
+
```
|
475
|
+
|
476
|
+
##### Conditional Layouts
|
477
|
+
|
478
|
+
Layouts specified at the controller level support the `:only` and `:except` options. These options take either a method name, or an array of method names, corresponding to method names within the controller:
|
479
|
+
|
480
|
+
```ruby
|
481
|
+
class ProductsController < ApplicationController
|
482
|
+
layout "product", except: [:index, :rss]
|
483
|
+
end
|
484
|
+
```
|
485
|
+
|
486
|
+
With this declaration, the `product` layout would be used for everything but the `rss` and `index` methods.
|
487
|
+
|
488
|
+
##### Layout Inheritance
|
489
|
+
|
490
|
+
Layout declarations cascade downward in the hierarchy, and more specific layout declarations always override more general ones. For example:
|
491
|
+
|
492
|
+
* `application_controller.rb`
|
493
|
+
|
494
|
+
```ruby
|
495
|
+
class ApplicationController < ActionController::Base
|
496
|
+
layout "main"
|
497
|
+
end
|
498
|
+
```
|
499
|
+
|
500
|
+
* `articles_controller.rb`
|
501
|
+
|
502
|
+
```ruby
|
503
|
+
class ArticlesController < ApplicationController
|
504
|
+
end
|
505
|
+
```
|
506
|
+
|
507
|
+
* `special_articles_controller.rb`
|
508
|
+
|
509
|
+
```ruby
|
510
|
+
class SpecialArticlesController < ArticlesController
|
511
|
+
layout "special"
|
512
|
+
end
|
513
|
+
```
|
514
|
+
|
515
|
+
* `old_articles_controller.rb`
|
516
|
+
|
517
|
+
```ruby
|
518
|
+
class OldArticlesController < SpecialArticlesController
|
519
|
+
layout false
|
520
|
+
|
521
|
+
def show
|
522
|
+
@article = Article.find(params[:id])
|
523
|
+
end
|
524
|
+
|
525
|
+
def index
|
526
|
+
@old_articles = Article.older
|
527
|
+
render layout: "old"
|
528
|
+
end
|
529
|
+
# ...
|
530
|
+
end
|
531
|
+
```
|
532
|
+
|
533
|
+
In this application:
|
534
|
+
|
535
|
+
* In general, views will be rendered in the `main` layout
|
536
|
+
* `ArticlesController#index` will use the `main` layout
|
537
|
+
* `SpecialArticlesController#index` will use the `special` layout
|
538
|
+
* `OldArticlesController#show` will use no layout at all
|
539
|
+
* `OldArticlesController#index` will use the `old` layout
|
540
|
+
|
541
|
+
##### Template Inheritance
|
542
|
+
|
543
|
+
Similar to the Layout Inheritance logic, if a template or partial is not found in the conventional path, the controller will look for a template or partial to render in its inheritance chain. For example:
|
544
|
+
|
545
|
+
```ruby
|
546
|
+
# in app/controllers/application_controller
|
547
|
+
class ApplicationController < ActionController::Base
|
548
|
+
end
|
549
|
+
|
550
|
+
# in app/controllers/admin_controller
|
551
|
+
class AdminController < ApplicationController
|
552
|
+
end
|
553
|
+
|
554
|
+
# in app/controllers/admin/products_controller
|
555
|
+
class Admin::ProductsController < AdminController
|
556
|
+
def index
|
557
|
+
end
|
558
|
+
end
|
559
|
+
```
|
560
|
+
|
561
|
+
The lookup order for an `admin/products#index` action will be:
|
562
|
+
|
563
|
+
* `app/views/admin/products/`
|
564
|
+
* `app/views/admin/`
|
565
|
+
* `app/views/application/`
|
566
|
+
|
567
|
+
This makes `app/views/application/` a great place for your shared partials, which can then be rendered in your ERB as such:
|
568
|
+
|
569
|
+
```erb
|
570
|
+
<%# app/views/admin/products/index.html.erb %>
|
571
|
+
<%= render @products || "empty_list" %>
|
572
|
+
|
573
|
+
<%# app/views/application/_empty_list.html.erb %>
|
574
|
+
There are no items in this list <em>yet</em>.
|
575
|
+
```
|
576
|
+
|
577
|
+
#### Avoiding Double Render Errors
|
578
|
+
|
579
|
+
Sooner or later, most Quails developers will see the error message "Can only render or redirect once per action". While this is annoying, it's relatively easy to fix. Usually it happens because of a fundamental misunderstanding of the way that `render` works.
|
580
|
+
|
581
|
+
For example, here's some code that will trigger this error:
|
582
|
+
|
583
|
+
```ruby
|
584
|
+
def show
|
585
|
+
@book = Book.find(params[:id])
|
586
|
+
if @book.special?
|
587
|
+
render action: "special_show"
|
588
|
+
end
|
589
|
+
render action: "regular_show"
|
590
|
+
end
|
591
|
+
```
|
592
|
+
|
593
|
+
If `@book.special?` evaluates to `true`, Quails will start the rendering process to dump the `@book` variable into the `special_show` view. But this will _not_ stop the rest of the code in the `show` action from running, and when Quails hits the end of the action, it will start to render the `regular_show` view - and throw an error. The solution is simple: make sure that you have only one call to `render` or `redirect` in a single code path. One thing that can help is `and return`. Here's a patched version of the method:
|
594
|
+
|
595
|
+
```ruby
|
596
|
+
def show
|
597
|
+
@book = Book.find(params[:id])
|
598
|
+
if @book.special?
|
599
|
+
render action: "special_show" and return
|
600
|
+
end
|
601
|
+
render action: "regular_show"
|
602
|
+
end
|
603
|
+
```
|
604
|
+
|
605
|
+
Make sure to use `and return` instead of `&& return` because `&& return` will not work due to the operator precedence in the Ruby Language.
|
606
|
+
|
607
|
+
Note that the implicit render done by ActionController detects if `render` has been called, so the following will work without errors:
|
608
|
+
|
609
|
+
```ruby
|
610
|
+
def show
|
611
|
+
@book = Book.find(params[:id])
|
612
|
+
if @book.special?
|
613
|
+
render action: "special_show"
|
614
|
+
end
|
615
|
+
end
|
616
|
+
```
|
617
|
+
|
618
|
+
This will render a book with `special?` set with the `special_show` template, while other books will render with the default `show` template.
|
619
|
+
|
620
|
+
### Using `redirect_to`
|
621
|
+
|
622
|
+
Another way to handle returning responses to an HTTP request is with `redirect_to`. As you've seen, `render` tells Quails which view (or other asset) to use in constructing a response. The `redirect_to` method does something completely different: it tells the browser to send a new request for a different URL. For example, you could redirect from wherever you are in your code to the index of photos in your application with this call:
|
623
|
+
|
624
|
+
```ruby
|
625
|
+
redirect_to photos_url
|
626
|
+
```
|
627
|
+
|
628
|
+
You can use `redirect_back` to return the user to the page they just came from.
|
629
|
+
This location is pulled from the `HTTP_REFERER` header which is not guaranteed
|
630
|
+
to be set by the browser, so you must provide the `fallback_location`
|
631
|
+
to use in this case.
|
632
|
+
|
633
|
+
```ruby
|
634
|
+
redirect_back(fallback_location: root_path)
|
635
|
+
```
|
636
|
+
|
637
|
+
NOTE: `redirect_to` and `redirect_back` do not halt and return immediately from method execution, but simply set HTTP responses. Statements occurring after them in a method will be executed. You can halt by an explicit `return` or some other halting mechanism, if needed.
|
638
|
+
|
639
|
+
#### Getting a Different Redirect Status Code
|
640
|
+
|
641
|
+
Quails uses HTTP status code 302, a temporary redirect, when you call `redirect_to`. If you'd like to use a different status code, perhaps 301, a permanent redirect, you can use the `:status` option:
|
642
|
+
|
643
|
+
```ruby
|
644
|
+
redirect_to photos_path, status: 301
|
645
|
+
```
|
646
|
+
|
647
|
+
Just like the `:status` option for `render`, `:status` for `redirect_to` accepts both numeric and symbolic header designations.
|
648
|
+
|
649
|
+
#### The Difference Between `render` and `redirect_to`
|
650
|
+
|
651
|
+
Sometimes inexperienced developers think of `redirect_to` as a sort of `goto` command, moving execution from one place to another in your Quails code. This is _not_ correct. Your code stops running and waits for a new request for the browser. It just happens that you've told the browser what request it should make next, by sending back an HTTP 302 status code.
|
652
|
+
|
653
|
+
Consider these actions to see the difference:
|
654
|
+
|
655
|
+
```ruby
|
656
|
+
def index
|
657
|
+
@books = Book.all
|
658
|
+
end
|
659
|
+
|
660
|
+
def show
|
661
|
+
@book = Book.find_by(id: params[:id])
|
662
|
+
if @book.nil?
|
663
|
+
render action: "index"
|
664
|
+
end
|
665
|
+
end
|
666
|
+
```
|
667
|
+
|
668
|
+
With the code in this form, there will likely be a problem if the `@book` variable is `nil`. Remember, a `render :action` doesn't run any code in the target action, so nothing will set up the `@books` variable that the `index` view will probably require. One way to fix this is to redirect instead of rendering:
|
669
|
+
|
670
|
+
```ruby
|
671
|
+
def index
|
672
|
+
@books = Book.all
|
673
|
+
end
|
674
|
+
|
675
|
+
def show
|
676
|
+
@book = Book.find_by(id: params[:id])
|
677
|
+
if @book.nil?
|
678
|
+
redirect_to action: :index
|
679
|
+
end
|
680
|
+
end
|
681
|
+
```
|
682
|
+
|
683
|
+
With this code, the browser will make a fresh request for the index page, the code in the `index` method will run, and all will be well.
|
684
|
+
|
685
|
+
The only downside to this code is that it requires a round trip to the browser: the browser requested the show action with `/books/1` and the controller finds that there are no books, so the controller sends out a 302 redirect response to the browser telling it to go to `/books/`, the browser complies and sends a new request back to the controller asking now for the `index` action, the controller then gets all the books in the database and renders the index template, sending it back down to the browser which then shows it on your screen.
|
686
|
+
|
687
|
+
While in a small application, this added latency might not be a problem, it is something to think about if response time is a concern. We can demonstrate one way to handle this with a contrived example:
|
688
|
+
|
689
|
+
```ruby
|
690
|
+
def index
|
691
|
+
@books = Book.all
|
692
|
+
end
|
693
|
+
|
694
|
+
def show
|
695
|
+
@book = Book.find_by(id: params[:id])
|
696
|
+
if @book.nil?
|
697
|
+
@books = Book.all
|
698
|
+
flash.now[:alert] = "Your book was not found"
|
699
|
+
render "index"
|
700
|
+
end
|
701
|
+
end
|
702
|
+
```
|
703
|
+
|
704
|
+
This would detect that there are no books with the specified ID, populate the `@books` instance variable with all the books in the model, and then directly render the `index.html.erb` template, returning it to the browser with a flash alert message to tell the user what happened.
|
705
|
+
|
706
|
+
### Using `head` To Build Header-Only Responses
|
707
|
+
|
708
|
+
The `head` method can be used to send responses with only headers to the browser. The `head` method accepts a number or symbol (see [reference table](#the-status-option)) representing an HTTP status code. The options argument is interpreted as a hash of header names and values. For example, you can return only an error header:
|
709
|
+
|
710
|
+
```ruby
|
711
|
+
head :bad_request
|
712
|
+
```
|
713
|
+
|
714
|
+
This would produce the following header:
|
715
|
+
|
716
|
+
```
|
717
|
+
HTTP/1.1 400 Bad Request
|
718
|
+
Connection: close
|
719
|
+
Date: Sun, 24 Jan 2010 12:15:53 GMT
|
720
|
+
Transfer-Encoding: chunked
|
721
|
+
Content-Type: text/html; charset=utf-8
|
722
|
+
X-Runtime: 0.013483
|
723
|
+
Set-Cookie: _blog_session=...snip...; path=/; HttpOnly
|
724
|
+
Cache-Control: no-cache
|
725
|
+
```
|
726
|
+
|
727
|
+
Or you can use other HTTP headers to convey other information:
|
728
|
+
|
729
|
+
```ruby
|
730
|
+
head :created, location: photo_path(@photo)
|
731
|
+
```
|
732
|
+
|
733
|
+
Which would produce:
|
734
|
+
|
735
|
+
```
|
736
|
+
HTTP/1.1 201 Created
|
737
|
+
Connection: close
|
738
|
+
Date: Sun, 24 Jan 2010 12:16:44 GMT
|
739
|
+
Transfer-Encoding: chunked
|
740
|
+
Location: /photos/1
|
741
|
+
Content-Type: text/html; charset=utf-8
|
742
|
+
X-Runtime: 0.083496
|
743
|
+
Set-Cookie: _blog_session=...snip...; path=/; HttpOnly
|
744
|
+
Cache-Control: no-cache
|
745
|
+
```
|
746
|
+
|
747
|
+
Structuring Layouts
|
748
|
+
-------------------
|
749
|
+
|
750
|
+
When Quails renders a view as a response, it does so by combining the view with the current layout, using the rules for finding the current layout that were covered earlier in this guide. Within a layout, you have access to three tools for combining different bits of output to form the overall response:
|
751
|
+
|
752
|
+
* Asset tags
|
753
|
+
* `yield` and `content_for`
|
754
|
+
* Partials
|
755
|
+
|
756
|
+
### Asset Tag Helpers
|
757
|
+
|
758
|
+
Asset tag helpers provide methods for generating HTML that link views to feeds, JavaScript, stylesheets, images, videos, and audios. There are six asset tag helpers available in Quails:
|
759
|
+
|
760
|
+
* `auto_discovery_link_tag`
|
761
|
+
* `javascript_include_tag`
|
762
|
+
* `stylesheet_link_tag`
|
763
|
+
* `image_tag`
|
764
|
+
* `video_tag`
|
765
|
+
* `audio_tag`
|
766
|
+
|
767
|
+
You can use these tags in layouts or other views, although the `auto_discovery_link_tag`, `javascript_include_tag`, and `stylesheet_link_tag`, are most commonly used in the `<head>` section of a layout.
|
768
|
+
|
769
|
+
WARNING: The asset tag helpers do _not_ verify the existence of the assets at the specified locations; they simply assume that you know what you're doing and generate the link.
|
770
|
+
|
771
|
+
#### Linking to Feeds with the `auto_discovery_link_tag`
|
772
|
+
|
773
|
+
The `auto_discovery_link_tag` helper builds HTML that most browsers and feed readers can use to detect the presence of RSS, Atom, or JSON feeds. It takes the type of the link (`:rss`, `:atom`, or `:json`), a hash of options that are passed through to url_for, and a hash of options for the tag:
|
774
|
+
|
775
|
+
```erb
|
776
|
+
<%= auto_discovery_link_tag(:rss, {action: "feed"},
|
777
|
+
{title: "RSS Feed"}) %>
|
778
|
+
```
|
779
|
+
|
780
|
+
There are three tag options available for the `auto_discovery_link_tag`:
|
781
|
+
|
782
|
+
* `:rel` specifies the `rel` value in the link. The default value is "alternate".
|
783
|
+
* `:type` specifies an explicit MIME type. Quails will generate an appropriate MIME type automatically.
|
784
|
+
* `:title` specifies the title of the link. The default value is the uppercase `:type` value, for example, "ATOM" or "RSS".
|
785
|
+
|
786
|
+
#### Linking to JavaScript Files with the `javascript_include_tag`
|
787
|
+
|
788
|
+
The `javascript_include_tag` helper returns an HTML `script` tag for each source provided.
|
789
|
+
|
790
|
+
If you are using Quails with the [Asset Pipeline](asset_pipeline.html) enabled, this helper will generate a link to `/assets/javascripts/` rather than `public/javascripts` which was used in earlier versions of Quails. This link is then served by the asset pipeline.
|
791
|
+
|
792
|
+
A JavaScript file within a Quails application or Quails engine goes in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`. These locations are explained in detail in the [Asset Organization section in the Asset Pipeline Guide](asset_pipeline.html#asset-organization).
|
793
|
+
|
794
|
+
You can specify a full path relative to the document root, or a URL, if you prefer. For example, to link to a JavaScript file that is inside a directory called `javascripts` inside of one of `app/assets`, `lib/assets` or `vendor/assets`, you would do this:
|
795
|
+
|
796
|
+
```erb
|
797
|
+
<%= javascript_include_tag "main" %>
|
798
|
+
```
|
799
|
+
|
800
|
+
Quails will then output a `script` tag such as this:
|
801
|
+
|
802
|
+
```html
|
803
|
+
<script src='/assets/main.js'></script>
|
804
|
+
```
|
805
|
+
|
806
|
+
The request to this asset is then served by the Sprockets gem.
|
807
|
+
|
808
|
+
To include multiple files such as `app/assets/javascripts/main.js` and `app/assets/javascripts/columns.js` at the same time:
|
809
|
+
|
810
|
+
```erb
|
811
|
+
<%= javascript_include_tag "main", "columns" %>
|
812
|
+
```
|
813
|
+
|
814
|
+
To include `app/assets/javascripts/main.js` and `app/assets/javascripts/photos/columns.js`:
|
815
|
+
|
816
|
+
```erb
|
817
|
+
<%= javascript_include_tag "main", "/photos/columns" %>
|
818
|
+
```
|
819
|
+
|
820
|
+
To include `http://example.com/main.js`:
|
821
|
+
|
822
|
+
```erb
|
823
|
+
<%= javascript_include_tag "http://example.com/main.js" %>
|
824
|
+
```
|
825
|
+
|
826
|
+
#### Linking to CSS Files with the `stylesheet_link_tag`
|
827
|
+
|
828
|
+
The `stylesheet_link_tag` helper returns an HTML `<link>` tag for each source provided.
|
829
|
+
|
830
|
+
If you are using Quails with the "Asset Pipeline" enabled, this helper will generate a link to `/assets/stylesheets/`. This link is then processed by the Sprockets gem. A stylesheet file can be stored in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`.
|
831
|
+
|
832
|
+
You can specify a full path relative to the document root, or a URL. For example, to link to a stylesheet file that is inside a directory called `stylesheets` inside of one of `app/assets`, `lib/assets` or `vendor/assets`, you would do this:
|
833
|
+
|
834
|
+
```erb
|
835
|
+
<%= stylesheet_link_tag "main" %>
|
836
|
+
```
|
837
|
+
|
838
|
+
To include `app/assets/stylesheets/main.css` and `app/assets/stylesheets/columns.css`:
|
839
|
+
|
840
|
+
```erb
|
841
|
+
<%= stylesheet_link_tag "main", "columns" %>
|
842
|
+
```
|
843
|
+
|
844
|
+
To include `app/assets/stylesheets/main.css` and `app/assets/stylesheets/photos/columns.css`:
|
845
|
+
|
846
|
+
```erb
|
847
|
+
<%= stylesheet_link_tag "main", "photos/columns" %>
|
848
|
+
```
|
849
|
+
|
850
|
+
To include `http://example.com/main.css`:
|
851
|
+
|
852
|
+
```erb
|
853
|
+
<%= stylesheet_link_tag "http://example.com/main.css" %>
|
854
|
+
```
|
855
|
+
|
856
|
+
By default, the `stylesheet_link_tag` creates links with `media="screen" rel="stylesheet"`. You can override any of these defaults by specifying an appropriate option (`:media`, `:rel`):
|
857
|
+
|
858
|
+
```erb
|
859
|
+
<%= stylesheet_link_tag "main_print", media: "print" %>
|
860
|
+
```
|
861
|
+
|
862
|
+
#### Linking to Images with the `image_tag`
|
863
|
+
|
864
|
+
The `image_tag` helper builds an HTML `<img />` tag to the specified file. By default, files are loaded from `public/images`.
|
865
|
+
|
866
|
+
WARNING: Note that you must specify the extension of the image.
|
867
|
+
|
868
|
+
```erb
|
869
|
+
<%= image_tag "header.png" %>
|
870
|
+
```
|
871
|
+
|
872
|
+
You can supply a path to the image if you like:
|
873
|
+
|
874
|
+
```erb
|
875
|
+
<%= image_tag "icons/delete.gif" %>
|
876
|
+
```
|
877
|
+
|
878
|
+
You can supply a hash of additional HTML options:
|
879
|
+
|
880
|
+
```erb
|
881
|
+
<%= image_tag "icons/delete.gif", {height: 45} %>
|
882
|
+
```
|
883
|
+
|
884
|
+
You can supply alternate text for the image which will be used if the user has images turned off in their browser. If you do not specify an alt text explicitly, it defaults to the file name of the file, capitalized and with no extension. For example, these two image tags would return the same code:
|
885
|
+
|
886
|
+
```erb
|
887
|
+
<%= image_tag "home.gif" %>
|
888
|
+
<%= image_tag "home.gif", alt: "Home" %>
|
889
|
+
```
|
890
|
+
|
891
|
+
You can also specify a special size tag, in the format "{width}x{height}":
|
892
|
+
|
893
|
+
```erb
|
894
|
+
<%= image_tag "home.gif", size: "50x20" %>
|
895
|
+
```
|
896
|
+
|
897
|
+
In addition to the above special tags, you can supply a final hash of standard HTML options, such as `:class`, `:id` or `:name`:
|
898
|
+
|
899
|
+
```erb
|
900
|
+
<%= image_tag "home.gif", alt: "Go Home",
|
901
|
+
id: "HomeImage",
|
902
|
+
class: "nav_bar" %>
|
903
|
+
```
|
904
|
+
|
905
|
+
#### Linking to Videos with the `video_tag`
|
906
|
+
|
907
|
+
The `video_tag` helper builds an HTML 5 `<video>` tag to the specified file. By default, files are loaded from `public/videos`.
|
908
|
+
|
909
|
+
```erb
|
910
|
+
<%= video_tag "movie.ogg" %>
|
911
|
+
```
|
912
|
+
|
913
|
+
Produces
|
914
|
+
|
915
|
+
```erb
|
916
|
+
<video src="/videos/movie.ogg" />
|
917
|
+
```
|
918
|
+
|
919
|
+
Like an `image_tag` you can supply a path, either absolute, or relative to the `public/videos` directory. Additionally you can specify the `size: "#{width}x#{height}"` option just like an `image_tag`. Video tags can also have any of the HTML options specified at the end (`id`, `class` et al).
|
920
|
+
|
921
|
+
The video tag also supports all of the `<video>` HTML options through the HTML options hash, including:
|
922
|
+
|
923
|
+
* `poster: "image_name.png"`, provides an image to put in place of the video before it starts playing.
|
924
|
+
* `autoplay: true`, starts playing the video on page load.
|
925
|
+
* `loop: true`, loops the video once it gets to the end.
|
926
|
+
* `controls: true`, provides browser supplied controls for the user to interact with the video.
|
927
|
+
* `autobuffer: true`, the video will pre load the file for the user on page load.
|
928
|
+
|
929
|
+
You can also specify multiple videos to play by passing an array of videos to the `video_tag`:
|
930
|
+
|
931
|
+
```erb
|
932
|
+
<%= video_tag ["trailer.ogg", "movie.ogg"] %>
|
933
|
+
```
|
934
|
+
|
935
|
+
This will produce:
|
936
|
+
|
937
|
+
```erb
|
938
|
+
<video>
|
939
|
+
<source src="/videos/trailer.ogg">
|
940
|
+
<source src="/videos/movie.ogg">
|
941
|
+
</video>
|
942
|
+
```
|
943
|
+
|
944
|
+
#### Linking to Audio Files with the `audio_tag`
|
945
|
+
|
946
|
+
The `audio_tag` helper builds an HTML 5 `<audio>` tag to the specified file. By default, files are loaded from `public/audios`.
|
947
|
+
|
948
|
+
```erb
|
949
|
+
<%= audio_tag "music.mp3" %>
|
950
|
+
```
|
951
|
+
|
952
|
+
You can supply a path to the audio file if you like:
|
953
|
+
|
954
|
+
```erb
|
955
|
+
<%= audio_tag "music/first_song.mp3" %>
|
956
|
+
```
|
957
|
+
|
958
|
+
You can also supply a hash of additional options, such as `:id`, `:class` etc.
|
959
|
+
|
960
|
+
Like the `video_tag`, the `audio_tag` has special options:
|
961
|
+
|
962
|
+
* `autoplay: true`, starts playing the audio on page load
|
963
|
+
* `controls: true`, provides browser supplied controls for the user to interact with the audio.
|
964
|
+
* `autobuffer: true`, the audio will pre load the file for the user on page load.
|
965
|
+
|
966
|
+
### Understanding `yield`
|
967
|
+
|
968
|
+
Within the context of a layout, `yield` identifies a section where content from the view should be inserted. The simplest way to use this is to have a single `yield`, into which the entire contents of the view currently being rendered is inserted:
|
969
|
+
|
970
|
+
```html+erb
|
971
|
+
<html>
|
972
|
+
<head>
|
973
|
+
</head>
|
974
|
+
<body>
|
975
|
+
<%= yield %>
|
976
|
+
</body>
|
977
|
+
</html>
|
978
|
+
```
|
979
|
+
|
980
|
+
You can also create a layout with multiple yielding regions:
|
981
|
+
|
982
|
+
```html+erb
|
983
|
+
<html>
|
984
|
+
<head>
|
985
|
+
<%= yield :head %>
|
986
|
+
</head>
|
987
|
+
<body>
|
988
|
+
<%= yield %>
|
989
|
+
</body>
|
990
|
+
</html>
|
991
|
+
```
|
992
|
+
|
993
|
+
The main body of the view will always render into the unnamed `yield`. To render content into a named `yield`, you use the `content_for` method.
|
994
|
+
|
995
|
+
### Using the `content_for` Method
|
996
|
+
|
997
|
+
The `content_for` method allows you to insert content into a named `yield` block in your layout. For example, this view would work with the layout that you just saw:
|
998
|
+
|
999
|
+
```html+erb
|
1000
|
+
<% content_for :head do %>
|
1001
|
+
<title>A simple page</title>
|
1002
|
+
<% end %>
|
1003
|
+
|
1004
|
+
<p>Hello, Quails!</p>
|
1005
|
+
```
|
1006
|
+
|
1007
|
+
The result of rendering this page into the supplied layout would be this HTML:
|
1008
|
+
|
1009
|
+
```html+erb
|
1010
|
+
<html>
|
1011
|
+
<head>
|
1012
|
+
<title>A simple page</title>
|
1013
|
+
</head>
|
1014
|
+
<body>
|
1015
|
+
<p>Hello, Quails!</p>
|
1016
|
+
</body>
|
1017
|
+
</html>
|
1018
|
+
```
|
1019
|
+
|
1020
|
+
The `content_for` method is very helpful when your layout contains distinct regions such as sidebars and footers that should get their own blocks of content inserted. It's also useful for inserting tags that load page-specific JavaScript or css files into the header of an otherwise generic layout.
|
1021
|
+
|
1022
|
+
### Using Partials
|
1023
|
+
|
1024
|
+
Partial templates - usually just called "partials" - are another device for breaking the rendering process into more manageable chunks. With a partial, you can move the code for rendering a particular piece of a response to its own file.
|
1025
|
+
|
1026
|
+
#### Naming Partials
|
1027
|
+
|
1028
|
+
To render a partial as part of a view, you use the `render` method within the view:
|
1029
|
+
|
1030
|
+
```ruby
|
1031
|
+
<%= render "menu" %>
|
1032
|
+
```
|
1033
|
+
|
1034
|
+
This will render a file named `_menu.html.erb` at that point within the view being rendered. Note the leading underscore character: partials are named with a leading underscore to distinguish them from regular views, even though they are referred to without the underscore. This holds true even when you're pulling in a partial from another folder:
|
1035
|
+
|
1036
|
+
```ruby
|
1037
|
+
<%= render "shared/menu" %>
|
1038
|
+
```
|
1039
|
+
|
1040
|
+
That code will pull in the partial from `app/views/shared/_menu.html.erb`.
|
1041
|
+
|
1042
|
+
#### Using Partials to Simplify Views
|
1043
|
+
|
1044
|
+
One way to use partials is to treat them as the equivalent of subroutines: as a way to move details out of a view so that you can grasp what's going on more easily. For example, you might have a view that looked like this:
|
1045
|
+
|
1046
|
+
```erb
|
1047
|
+
<%= render "shared/ad_banner" %>
|
1048
|
+
|
1049
|
+
<h1>Products</h1>
|
1050
|
+
|
1051
|
+
<p>Here are a few of our fine products:</p>
|
1052
|
+
...
|
1053
|
+
|
1054
|
+
<%= render "shared/footer" %>
|
1055
|
+
```
|
1056
|
+
|
1057
|
+
Here, the `_ad_banner.html.erb` and `_footer.html.erb` partials could contain
|
1058
|
+
content that is shared by many pages in your application. You don't need to see
|
1059
|
+
the details of these sections when you're concentrating on a particular page.
|
1060
|
+
|
1061
|
+
As seen in the previous sections of this guide, `yield` is a very powerful tool
|
1062
|
+
for cleaning up your layouts. Keep in mind that it's pure Ruby, so you can use
|
1063
|
+
it almost everywhere. For example, we can use it to DRY up form layout
|
1064
|
+
definitions for several similar resources:
|
1065
|
+
|
1066
|
+
* `users/index.html.erb`
|
1067
|
+
|
1068
|
+
```html+erb
|
1069
|
+
<%= render "shared/search_filters", search: @q do |f| %>
|
1070
|
+
<p>
|
1071
|
+
Name contains: <%= f.text_field :name_contains %>
|
1072
|
+
</p>
|
1073
|
+
<% end %>
|
1074
|
+
```
|
1075
|
+
|
1076
|
+
* `roles/index.html.erb`
|
1077
|
+
|
1078
|
+
```html+erb
|
1079
|
+
<%= render "shared/search_filters", search: @q do |f| %>
|
1080
|
+
<p>
|
1081
|
+
Title contains: <%= f.text_field :title_contains %>
|
1082
|
+
</p>
|
1083
|
+
<% end %>
|
1084
|
+
```
|
1085
|
+
|
1086
|
+
* `shared/_search_filters.html.erb`
|
1087
|
+
|
1088
|
+
```html+erb
|
1089
|
+
<%= form_for(search) do |f| %>
|
1090
|
+
<h1>Search form:</h1>
|
1091
|
+
<fieldset>
|
1092
|
+
<%= yield f %>
|
1093
|
+
</fieldset>
|
1094
|
+
<p>
|
1095
|
+
<%= f.submit "Search" %>
|
1096
|
+
</p>
|
1097
|
+
<% end %>
|
1098
|
+
```
|
1099
|
+
|
1100
|
+
TIP: For content that is shared among all pages in your application, you can use partials directly from layouts.
|
1101
|
+
|
1102
|
+
#### Partial Layouts
|
1103
|
+
|
1104
|
+
A partial can use its own layout file, just as a view can use a layout. For example, you might call a partial like this:
|
1105
|
+
|
1106
|
+
```erb
|
1107
|
+
<%= render partial: "link_area", layout: "graybar" %>
|
1108
|
+
```
|
1109
|
+
|
1110
|
+
This would look for a partial named `_link_area.html.erb` and render it using the layout `_graybar.html.erb`. Note that layouts for partials follow the same leading-underscore naming as regular partials, and are placed in the same folder with the partial that they belong to (not in the master `layouts` folder).
|
1111
|
+
|
1112
|
+
Also note that explicitly specifying `:partial` is required when passing additional options such as `:layout`.
|
1113
|
+
|
1114
|
+
#### Passing Local Variables
|
1115
|
+
|
1116
|
+
You can also pass local variables into partials, making them even more powerful and flexible. For example, you can use this technique to reduce duplication between new and edit pages, while still keeping a bit of distinct content:
|
1117
|
+
|
1118
|
+
* `new.html.erb`
|
1119
|
+
|
1120
|
+
```html+erb
|
1121
|
+
<h1>New zone</h1>
|
1122
|
+
<%= render partial: "form", locals: {zone: @zone} %>
|
1123
|
+
```
|
1124
|
+
|
1125
|
+
* `edit.html.erb`
|
1126
|
+
|
1127
|
+
```html+erb
|
1128
|
+
<h1>Editing zone</h1>
|
1129
|
+
<%= render partial: "form", locals: {zone: @zone} %>
|
1130
|
+
```
|
1131
|
+
|
1132
|
+
* `_form.html.erb`
|
1133
|
+
|
1134
|
+
```html+erb
|
1135
|
+
<%= form_for(zone) do |f| %>
|
1136
|
+
<p>
|
1137
|
+
<b>Zone name</b><br>
|
1138
|
+
<%= f.text_field :name %>
|
1139
|
+
</p>
|
1140
|
+
<p>
|
1141
|
+
<%= f.submit %>
|
1142
|
+
</p>
|
1143
|
+
<% end %>
|
1144
|
+
```
|
1145
|
+
|
1146
|
+
Although the same partial will be rendered into both views, Action View's submit helper will return "Create Zone" for the new action and "Update Zone" for the edit action.
|
1147
|
+
|
1148
|
+
To pass a local variable to a partial in only specific cases use the `local_assigns`.
|
1149
|
+
|
1150
|
+
* `index.html.erb`
|
1151
|
+
|
1152
|
+
```erb
|
1153
|
+
<%= render user.articles %>
|
1154
|
+
```
|
1155
|
+
|
1156
|
+
* `show.html.erb`
|
1157
|
+
|
1158
|
+
```erb
|
1159
|
+
<%= render article, full: true %>
|
1160
|
+
```
|
1161
|
+
|
1162
|
+
* `_article.html.erb`
|
1163
|
+
|
1164
|
+
```erb
|
1165
|
+
<h2><%= article.title %></h2>
|
1166
|
+
|
1167
|
+
<% if local_assigns[:full] %>
|
1168
|
+
<%= simple_format article.body %>
|
1169
|
+
<% else %>
|
1170
|
+
<%= truncate article.body %>
|
1171
|
+
<% end %>
|
1172
|
+
```
|
1173
|
+
|
1174
|
+
This way it is possible to use the partial without the need to declare all local variables.
|
1175
|
+
|
1176
|
+
Every partial also has a local variable with the same name as the partial (minus the leading underscore). You can pass an object in to this local variable via the `:object` option:
|
1177
|
+
|
1178
|
+
```erb
|
1179
|
+
<%= render partial: "customer", object: @new_customer %>
|
1180
|
+
```
|
1181
|
+
|
1182
|
+
Within the `customer` partial, the `customer` variable will refer to `@new_customer` from the parent view.
|
1183
|
+
|
1184
|
+
If you have an instance of a model to render into a partial, you can use a shorthand syntax:
|
1185
|
+
|
1186
|
+
```erb
|
1187
|
+
<%= render @customer %>
|
1188
|
+
```
|
1189
|
+
|
1190
|
+
Assuming that the `@customer` instance variable contains an instance of the `Customer` model, this will use `_customer.html.erb` to render it and will pass the local variable `customer` into the partial which will refer to the `@customer` instance variable in the parent view.
|
1191
|
+
|
1192
|
+
#### Rendering Collections
|
1193
|
+
|
1194
|
+
Partials are very useful in rendering collections. When you pass a collection to a partial via the `:collection` option, the partial will be inserted once for each member in the collection:
|
1195
|
+
|
1196
|
+
* `index.html.erb`
|
1197
|
+
|
1198
|
+
```html+erb
|
1199
|
+
<h1>Products</h1>
|
1200
|
+
<%= render partial: "product", collection: @products %>
|
1201
|
+
```
|
1202
|
+
|
1203
|
+
* `_product.html.erb`
|
1204
|
+
|
1205
|
+
```html+erb
|
1206
|
+
<p>Product Name: <%= product.name %></p>
|
1207
|
+
```
|
1208
|
+
|
1209
|
+
When a partial is called with a pluralized collection, then the individual instances of the partial have access to the member of the collection being rendered via a variable named after the partial. In this case, the partial is `_product`, and within the `_product` partial, you can refer to `product` to get the instance that is being rendered.
|
1210
|
+
|
1211
|
+
There is also a shorthand for this. Assuming `@products` is a collection of `product` instances, you can simply write this in the `index.html.erb` to produce the same result:
|
1212
|
+
|
1213
|
+
```html+erb
|
1214
|
+
<h1>Products</h1>
|
1215
|
+
<%= render @products %>
|
1216
|
+
```
|
1217
|
+
|
1218
|
+
Quails determines the name of the partial to use by looking at the model name in the collection. In fact, you can even create a heterogeneous collection and render it this way, and Quails will choose the proper partial for each member of the collection:
|
1219
|
+
|
1220
|
+
* `index.html.erb`
|
1221
|
+
|
1222
|
+
```html+erb
|
1223
|
+
<h1>Contacts</h1>
|
1224
|
+
<%= render [customer1, employee1, customer2, employee2] %>
|
1225
|
+
```
|
1226
|
+
|
1227
|
+
* `customers/_customer.html.erb`
|
1228
|
+
|
1229
|
+
```html+erb
|
1230
|
+
<p>Customer: <%= customer.name %></p>
|
1231
|
+
```
|
1232
|
+
|
1233
|
+
* `employees/_employee.html.erb`
|
1234
|
+
|
1235
|
+
```html+erb
|
1236
|
+
<p>Employee: <%= employee.name %></p>
|
1237
|
+
```
|
1238
|
+
|
1239
|
+
In this case, Quails will use the customer or employee partials as appropriate for each member of the collection.
|
1240
|
+
|
1241
|
+
In the event that the collection is empty, `render` will return nil, so it should be fairly simple to provide alternative content.
|
1242
|
+
|
1243
|
+
```html+erb
|
1244
|
+
<h1>Products</h1>
|
1245
|
+
<%= render(@products) || "There are no products available." %>
|
1246
|
+
```
|
1247
|
+
|
1248
|
+
#### Local Variables
|
1249
|
+
|
1250
|
+
To use a custom local variable name within the partial, specify the `:as` option in the call to the partial:
|
1251
|
+
|
1252
|
+
```erb
|
1253
|
+
<%= render partial: "product", collection: @products, as: :item %>
|
1254
|
+
```
|
1255
|
+
|
1256
|
+
With this change, you can access an instance of the `@products` collection as the `item` local variable within the partial.
|
1257
|
+
|
1258
|
+
You can also pass in arbitrary local variables to any partial you are rendering with the `locals: {}` option:
|
1259
|
+
|
1260
|
+
```erb
|
1261
|
+
<%= render partial: "product", collection: @products,
|
1262
|
+
as: :item, locals: {title: "Products Page"} %>
|
1263
|
+
```
|
1264
|
+
|
1265
|
+
In this case, the partial will have access to a local variable `title` with the value "Products Page".
|
1266
|
+
|
1267
|
+
TIP: Quails also makes a counter variable available within a partial called by the collection, named after the member of the collection followed by `_counter`. For example, if you're rendering `@products`, within the partial you can refer to `product_counter` to tell you how many times the partial has been rendered. This does not work in conjunction with the `as: :value` option.
|
1268
|
+
|
1269
|
+
You can also specify a second partial to be rendered between instances of the main partial by using the `:spacer_template` option:
|
1270
|
+
|
1271
|
+
#### Spacer Templates
|
1272
|
+
|
1273
|
+
```erb
|
1274
|
+
<%= render partial: @products, spacer_template: "product_ruler" %>
|
1275
|
+
```
|
1276
|
+
|
1277
|
+
Quails will render the `_product_ruler` partial (with no data passed in to it) between each pair of `_product` partials.
|
1278
|
+
|
1279
|
+
#### Collection Partial Layouts
|
1280
|
+
|
1281
|
+
When rendering collections it is also possible to use the `:layout` option:
|
1282
|
+
|
1283
|
+
```erb
|
1284
|
+
<%= render partial: "product", collection: @products, layout: "special_layout" %>
|
1285
|
+
```
|
1286
|
+
|
1287
|
+
The layout will be rendered together with the partial for each item in the collection. The current object and object_counter variables will be available in the layout as well, the same way they are within the partial.
|
1288
|
+
|
1289
|
+
### Using Nested Layouts
|
1290
|
+
|
1291
|
+
You may find that your application requires a layout that differs slightly from your regular application layout to support one particular controller. Rather than repeating the main layout and editing it, you can accomplish this by using nested layouts (sometimes called sub-templates). Here's an example:
|
1292
|
+
|
1293
|
+
Suppose you have the following `ApplicationController` layout:
|
1294
|
+
|
1295
|
+
* `app/views/layouts/application.html.erb`
|
1296
|
+
|
1297
|
+
```html+erb
|
1298
|
+
<html>
|
1299
|
+
<head>
|
1300
|
+
<title><%= @page_title or "Page Title" %></title>
|
1301
|
+
<%= stylesheet_link_tag "layout" %>
|
1302
|
+
<style><%= yield :stylesheets %></style>
|
1303
|
+
</head>
|
1304
|
+
<body>
|
1305
|
+
<div id="top_menu">Top menu items here</div>
|
1306
|
+
<div id="menu">Menu items here</div>
|
1307
|
+
<div id="content"><%= content_for?(:content) ? yield(:content) : yield %></div>
|
1308
|
+
</body>
|
1309
|
+
</html>
|
1310
|
+
```
|
1311
|
+
|
1312
|
+
On pages generated by `NewsController`, you want to hide the top menu and add a right menu:
|
1313
|
+
|
1314
|
+
* `app/views/layouts/news.html.erb`
|
1315
|
+
|
1316
|
+
```html+erb
|
1317
|
+
<% content_for :stylesheets do %>
|
1318
|
+
#top_menu {display: none}
|
1319
|
+
#right_menu {float: right; background-color: yellow; color: black}
|
1320
|
+
<% end %>
|
1321
|
+
<% content_for :content do %>
|
1322
|
+
<div id="right_menu">Right menu items here</div>
|
1323
|
+
<%= content_for?(:news_content) ? yield(:news_content) : yield %>
|
1324
|
+
<% end %>
|
1325
|
+
<%= render template: "layouts/application" %>
|
1326
|
+
```
|
1327
|
+
|
1328
|
+
That's it. The News views will use the new layout, hiding the top menu and adding a new right menu inside the "content" div.
|
1329
|
+
|
1330
|
+
There are several ways of getting similar results with different sub-templating schemes using this technique. Note that there is no limit in nesting levels. One can use the `ActionView::render` method via `render template: 'layouts/news'` to base a new layout on the News layout. If you are sure you will not subtemplate the `News` layout, you can replace the `content_for?(:news_content) ? yield(:news_content) : yield` with simply `yield`.
|