├── .devcontainer ├── Dockerfile ├── boot.sh └── devcontainer.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── autolabeler.yml ├── issue_template.md ├── no-response.yml ├── pull_request_template.md ├── security.md ├── stale.yml ├── verba-sequentur.yml └── workflows │ ├── build-and-test-dev-image.yml │ ├── lint.yml │ ├── mdl.yml │ ├── rubocop.yml │ └── scripts │ └── test-container.rb ├── .gitignore ├── .mdlrc ├── .mdlrc.rb ├── .rubocop.yml ├── .yardopts ├── .yarnrc ├── Brewfile ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── RAILS_VERSION ├── README.md ├── RELEASING_RAILS.md ├── Rakefile ├── actioncable ├── .babelrc ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── actioncable.gemspec ├── app │ ├── assets │ │ └── javascripts │ │ │ ├── .gitattributes │ │ │ ├── action_cable.js │ │ │ ├── actioncable.esm.js │ │ │ └── actioncable.js │ └── javascript │ │ └── action_cable │ │ ├── adapters.js │ │ ├── connection.js │ │ ├── connection_monitor.js │ │ ├── consumer.js │ │ ├── index.js │ │ ├── index_with_name_deprecation.js │ │ ├── internal.js │ │ ├── logger.js │ │ ├── subscription.js │ │ ├── subscription_guarantor.js │ │ └── subscriptions.js ├── bin │ └── test ├── karma.conf.js ├── lib │ ├── action_cable.rb │ ├── action_cable │ │ ├── channel │ │ │ ├── base.rb │ │ │ ├── broadcasting.rb │ │ │ ├── callbacks.rb │ │ │ ├── naming.rb │ │ │ ├── periodic_timers.rb │ │ │ ├── streams.rb │ │ │ └── test_case.rb │ │ ├── connection │ │ │ ├── authorization.rb │ │ │ ├── base.rb │ │ │ ├── callbacks.rb │ │ │ ├── client_socket.rb │ │ │ ├── identification.rb │ │ │ ├── internal_channel.rb │ │ │ ├── message_buffer.rb │ │ │ ├── stream.rb │ │ │ ├── stream_event_loop.rb │ │ │ ├── subscriptions.rb │ │ │ ├── tagged_logger_proxy.rb │ │ │ ├── test_case.rb │ │ │ └── web_socket.rb │ │ ├── deprecator.rb │ │ ├── engine.rb │ │ ├── gem_version.rb │ │ ├── helpers │ │ │ └── action_cable_helper.rb │ │ ├── remote_connections.rb │ │ ├── server │ │ │ ├── base.rb │ │ │ ├── broadcasting.rb │ │ │ ├── configuration.rb │ │ │ ├── connections.rb │ │ │ ├── worker.rb │ │ │ └── worker │ │ │ │ └── active_record_connection_management.rb │ │ ├── subscription_adapter │ │ │ ├── async.rb │ │ │ ├── base.rb │ │ │ ├── channel_prefix.rb │ │ │ ├── inline.rb │ │ │ ├── postgresql.rb │ │ │ ├── redis.rb │ │ │ ├── subscriber_map.rb │ │ │ └── test.rb │ │ ├── test_case.rb │ │ ├── test_helper.rb │ │ └── version.rb │ └── rails │ │ └── generators │ │ ├── channel │ │ ├── USAGE │ │ ├── channel_generator.rb │ │ └── templates │ │ │ ├── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ │ │ ├── channel.rb.tt │ │ │ └── javascript │ │ │ ├── channel.js.tt │ │ │ ├── consumer.js.tt │ │ │ └── index.js.tt │ │ └── test_unit │ │ ├── channel_generator.rb │ │ └── templates │ │ └── channel_test.rb.tt ├── package.json ├── rollup.config.js ├── rollup.config.test.js └── test │ ├── channel │ ├── base_test.rb │ ├── broadcasting_test.rb │ ├── naming_test.rb │ ├── periodic_timers_test.rb │ ├── rejection_test.rb │ ├── stream_test.rb │ └── test_case_test.rb │ ├── client_test.rb │ ├── connection │ ├── authorization_test.rb │ ├── base_test.rb │ ├── callbacks_test.rb │ ├── client_socket_test.rb │ ├── cross_site_forgery_test.rb │ ├── identifier_test.rb │ ├── multiple_identifiers_test.rb │ ├── stream_test.rb │ ├── string_identifier_test.rb │ ├── subscriptions_test.rb │ └── test_case_test.rb │ ├── javascript │ └── src │ │ ├── test.js │ │ ├── test_helpers │ │ ├── consumer_test_helper.js │ │ └── index.js │ │ └── unit │ │ ├── action_cable_test.js │ │ ├── connection_monitor_test.js │ │ ├── connection_test.js │ │ ├── consumer_test.js │ │ ├── subscription_guarantor_test.js │ │ ├── subscription_test.js │ │ └── subscriptions_test.js │ ├── javascript_package_test.rb │ ├── server │ ├── base_test.rb │ ├── broadcasting_test.rb │ └── health_check_test.rb │ ├── stubs │ ├── global_id.rb │ ├── room.rb │ ├── test_adapter.rb │ ├── test_connection.rb │ ├── test_server.rb │ └── user.rb │ ├── subscription_adapter │ ├── async_test.rb │ ├── base_test.rb │ ├── channel_prefix.rb │ ├── common.rb │ ├── inline_test.rb │ ├── postgresql_test.rb │ ├── redis_test.rb │ ├── subscriber_map_test.rb │ └── test_adapter_test.rb │ ├── test_helper.rb │ ├── test_helper_test.rb │ └── worker_test.rb ├── actionmailbox ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── actionmailbox.gemspec ├── app │ ├── controllers │ │ ├── action_mailbox │ │ │ ├── base_controller.rb │ │ │ └── ingresses │ │ │ │ ├── mailgun │ │ │ │ └── inbound_emails_controller.rb │ │ │ │ ├── mandrill │ │ │ │ └── inbound_emails_controller.rb │ │ │ │ ├── postmark │ │ │ │ └── inbound_emails_controller.rb │ │ │ │ ├── relay │ │ │ │ └── inbound_emails_controller.rb │ │ │ │ └── sendgrid │ │ │ │ └── inbound_emails_controller.rb │ │ └── rails │ │ │ └── conductor │ │ │ ├── action_mailbox │ │ │ ├── inbound_emails │ │ │ │ └── sources_controller.rb │ │ │ ├── inbound_emails_controller.rb │ │ │ ├── incinerates_controller.rb │ │ │ └── reroutes_controller.rb │ │ │ └── base_controller.rb │ ├── jobs │ │ └── action_mailbox │ │ │ ├── incineration_job.rb │ │ │ └── routing_job.rb │ ├── models │ │ └── action_mailbox │ │ │ ├── inbound_email.rb │ │ │ ├── inbound_email │ │ │ ├── incineratable.rb │ │ │ ├── incineratable │ │ │ │ └── incineration.rb │ │ │ ├── message_id.rb │ │ │ └── routable.rb │ │ │ └── record.rb │ └── views │ │ ├── layouts │ │ └── rails │ │ │ └── conductor.html.erb │ │ └── rails │ │ └── conductor │ │ └── action_mailbox │ │ └── inbound_emails │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── sources │ │ └── new.html.erb ├── bin │ └── test ├── config │ └── routes.rb ├── db │ └── migrate │ │ └── 20180917164000_create_action_mailbox_tables.rb ├── lib │ ├── action_mailbox.rb │ ├── action_mailbox │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── deprecator.rb │ │ ├── engine.rb │ │ ├── gem_version.rb │ │ ├── mail_ext.rb │ │ ├── mail_ext │ │ │ ├── address_equality.rb │ │ │ ├── address_wrapping.rb │ │ │ ├── addresses.rb │ │ │ ├── from_source.rb │ │ │ └── recipients.rb │ │ ├── relayer.rb │ │ ├── router.rb │ │ ├── router │ │ │ └── route.rb │ │ ├── routing.rb │ │ ├── test_case.rb │ │ ├── test_helper.rb │ │ └── version.rb │ ├── generators │ │ └── action_mailbox │ │ │ └── install │ │ │ └── install_generator.rb │ ├── rails │ │ └── generators │ │ │ ├── mailbox │ │ │ ├── USAGE │ │ │ ├── mailbox_generator.rb │ │ │ └── templates │ │ │ │ ├── application_mailbox.rb.tt │ │ │ │ └── mailbox.rb.tt │ │ │ └── test_unit │ │ │ ├── mailbox_generator.rb │ │ │ └── templates │ │ │ └── mailbox_test.rb.tt │ └── tasks │ │ ├── ingress.rake │ │ └── install.rake └── test │ ├── controllers │ ├── ingresses │ │ ├── mailgun │ │ │ └── inbound_emails_controller_test.rb │ │ ├── mandrill │ │ │ └── inbound_emails_controller_test.rb │ │ ├── postmark │ │ │ └── inbound_emails_controller_test.rb │ │ ├── relay │ │ │ └── inbound_emails_controller_test.rb │ │ └── sendgrid │ │ │ └── inbound_emails_controller_test.rb │ └── rails │ │ └── action_mailbox │ │ └── inbound_emails_controller_test.rb │ ├── dummy │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ └── scaffold.css │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── javascript │ │ │ └── packs │ │ │ │ └── application.js │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailboxes │ │ │ ├── application_mailbox.rb │ │ │ └── messages_mailbox.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ └── layouts │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── bin │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ └── permissions_policy.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20180208205311_create_action_mailbox_tables.rb │ │ │ └── 20180212164506_create_active_storage_tables.active_storage.rb │ │ └── schema.rb │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ └── storage │ │ └── .keep │ ├── fixtures │ └── files │ │ ├── avatar1.jpeg │ │ ├── avatar2.jpeg │ │ ├── invalid_utf.eml │ │ └── welcome.eml │ ├── generators │ └── mailbox_generator_test.rb │ ├── jobs │ └── incineration_job_test.rb │ ├── migrations_test.rb │ ├── test_helper.rb │ └── unit │ ├── inbound_email │ ├── incineration_test.rb │ └── message_id_test.rb │ ├── inbound_email_test.rb │ ├── mail_ext │ ├── address_equality_test.rb │ ├── address_wrapping_test.rb │ └── addresses_test.rb │ ├── mailbox │ ├── bouncing_test.rb │ ├── callbacks_test.rb │ ├── notifications_test.rb │ ├── routing_test.rb │ └── state_test.rb │ ├── relayer_test.rb │ ├── router_test.rb │ └── test_helper_test.rb ├── actionmailer ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── actionmailer.gemspec ├── bin │ └── test ├── lib │ ├── action_mailer.rb │ ├── action_mailer │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── collector.rb │ │ ├── delivery_methods.rb │ │ ├── deprecator.rb │ │ ├── gem_version.rb │ │ ├── inline_preview_interceptor.rb │ │ ├── log_subscriber.rb │ │ ├── mail_delivery_job.rb │ │ ├── mail_helper.rb │ │ ├── message_delivery.rb │ │ ├── parameterized.rb │ │ ├── preview.rb │ │ ├── queued_delivery.rb │ │ ├── railtie.rb │ │ ├── rescuable.rb │ │ ├── test_case.rb │ │ ├── test_helper.rb │ │ └── version.rb │ └── rails │ │ └── generators │ │ └── mailer │ │ ├── USAGE │ │ ├── mailer_generator.rb │ │ └── templates │ │ ├── application_mailer.rb.tt │ │ └── mailer.rb.tt └── test │ ├── abstract_unit.rb │ ├── assert_select_email_test.rb │ ├── asset_host_test.rb │ ├── base_test.rb │ ├── caching_test.rb │ ├── callbacks_test.rb │ ├── delivery_methods_test.rb │ ├── fixtures │ ├── anonymous │ │ └── welcome.erb │ ├── another.path │ │ └── base_mailer │ │ │ └── welcome.erb │ ├── asset_host_mailer │ │ └── email_with_asset.html.erb │ ├── asset_mailer │ │ └── welcome.html.erb │ ├── attachments │ │ ├── foo.jpg │ │ └── test.jpg │ ├── auto_layout_mailer │ │ ├── hello.html.erb │ │ ├── multipart.html.erb │ │ └── multipart.text.erb │ ├── base_mailer │ │ ├── attachment_with_content.erb │ │ ├── attachment_with_hash.html.erb │ │ ├── attachment_with_hash_default_encoding.html.erb │ │ ├── different_layout.html.erb │ │ ├── different_layout.text.erb │ │ ├── email_with_translations.html.erb │ │ ├── explicit_multipart_templates.html.erb │ │ ├── explicit_multipart_templates.text.erb │ │ ├── explicit_multipart_with_one_template.erb │ │ ├── html_only.html.erb │ │ ├── implicit_multipart.html.erb │ │ ├── implicit_multipart.text.erb │ │ ├── implicit_multipart_formats.html.erb │ │ ├── implicit_multipart_formats.text.erb │ │ ├── implicit_with_locale.de-AT.text.erb │ │ ├── implicit_with_locale.de.html.erb │ │ ├── implicit_with_locale.en.html.erb │ │ ├── implicit_with_locale.html.erb │ │ ├── implicit_with_locale.pl.text.erb │ │ ├── implicit_with_locale.text.erb │ │ ├── inline_and_other_attachments.html.erb │ │ ├── inline_and_other_attachments.text.erb │ │ ├── inline_attachment.html.erb │ │ ├── inline_attachment.text.erb │ │ ├── plain_text_only.text.erb │ │ ├── welcome.erb │ │ ├── welcome_with_headers.html.erb │ │ └── without_mail_call.erb │ ├── base_test │ │ ├── after_action_mailer │ │ │ └── welcome.html.erb │ │ ├── before_action_mailer │ │ │ └── welcome.html.erb │ │ ├── default_inline_attachment_mailer │ │ │ └── welcome.html.erb │ │ └── late_inline_attachment_mailer │ │ │ └── on_render.erb │ ├── caching_mailer │ │ ├── _partial.html.erb │ │ ├── fragment_cache.html.erb │ │ ├── fragment_cache_in_partials.html.erb │ │ ├── fragment_caching_options.html.erb │ │ ├── multipart_cache.html.erb │ │ ├── multipart_cache.text.erb │ │ └── skip_fragment_cache_digesting.html.erb │ ├── explicit_layout_mailer │ │ ├── logout.html.erb │ │ └── signup.html.erb │ ├── i18n_test_mailer │ │ └── mail_with_i18n_subject.erb │ ├── layouts │ │ ├── auto_layout_mailer.html.erb │ │ ├── auto_layout_mailer.text.erb │ │ ├── different_layout.html.erb │ │ ├── different_layout.text.erb │ │ └── spam.html.erb │ ├── mail_delivery_test │ │ └── delivery_mailer │ │ │ └── welcome.html.erb │ ├── nested_layout_mailer │ │ └── signup.html.erb │ ├── proc_mailer │ │ └── welcome.html.erb │ ├── raw_email │ ├── templates │ │ └── signed_up.erb │ ├── test_helper_mailer │ │ └── welcome │ └── url_test_mailer │ │ ├── exercise_url_for.erb │ │ └── signed_up_with_url.erb │ ├── i18n_with_controller_test.rb │ ├── log_subscriber_test.rb │ ├── mail_helper_test.rb │ ├── mail_layout_test.rb │ ├── mailers │ ├── asset_mailer.rb │ ├── base_mailer.rb │ ├── caching_mailer.rb │ ├── callback_mailer.rb │ ├── delayed_mailer.rb │ ├── params_mailer.rb │ └── proc_mailer.rb │ ├── message_delivery_test.rb │ ├── parameterized_test.rb │ ├── test_case_test.rb │ ├── test_helper_test.rb │ └── url_test.rb ├── actionpack ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── actionpack.gemspec ├── bin │ └── test ├── lib │ ├── abstract_controller.rb │ ├── abstract_controller │ │ ├── asset_paths.rb │ │ ├── base.rb │ │ ├── caching.rb │ │ ├── caching │ │ │ └── fragments.rb │ │ ├── callbacks.rb │ │ ├── collector.rb │ │ ├── deprecator.rb │ │ ├── error.rb │ │ ├── helpers.rb │ │ ├── logger.rb │ │ ├── railties │ │ │ └── routes_helpers.rb │ │ ├── rendering.rb │ │ ├── translation.rb │ │ └── url_for.rb │ ├── action_controller.rb │ ├── action_controller │ │ ├── api.rb │ │ ├── api │ │ │ └── api_rendering.rb │ │ ├── base.rb │ │ ├── caching.rb │ │ ├── deprecator.rb │ │ ├── form_builder.rb │ │ ├── log_subscriber.rb │ │ ├── metal.rb │ │ ├── metal │ │ │ ├── basic_implicit_render.rb │ │ │ ├── conditional_get.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies.rb │ │ │ ├── data_streaming.rb │ │ │ ├── default_headers.rb │ │ │ ├── etag_with_flash.rb │ │ │ ├── etag_with_template_digest.rb │ │ │ ├── exceptions.rb │ │ │ ├── flash.rb │ │ │ ├── head.rb │ │ │ ├── helpers.rb │ │ │ ├── http_authentication.rb │ │ │ ├── implicit_render.rb │ │ │ ├── instrumentation.rb │ │ │ ├── live.rb │ │ │ ├── logging.rb │ │ │ ├── mime_responds.rb │ │ │ ├── parameter_encoding.rb │ │ │ ├── params_wrapper.rb │ │ │ ├── permissions_policy.rb │ │ │ ├── redirecting.rb │ │ │ ├── renderers.rb │ │ │ ├── rendering.rb │ │ │ ├── request_forgery_protection.rb │ │ │ ├── rescue.rb │ │ │ ├── streaming.rb │ │ │ ├── strong_parameters.rb │ │ │ ├── testing.rb │ │ │ └── url_for.rb │ │ ├── railtie.rb │ │ ├── railties │ │ │ └── helpers.rb │ │ ├── renderer.rb │ │ ├── template_assertions.rb │ │ └── test_case.rb │ ├── action_dispatch.rb │ ├── action_dispatch │ │ ├── deprecator.rb │ │ ├── http │ │ │ ├── cache.rb │ │ │ ├── content_disposition.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameters.rb │ │ │ ├── filter_redirect.rb │ │ │ ├── headers.rb │ │ │ ├── mime_negotiation.rb │ │ │ ├── mime_type.rb │ │ │ ├── mime_types.rb │ │ │ ├── parameters.rb │ │ │ ├── permissions_policy.rb │ │ │ ├── rack_cache.rb │ │ │ ├── request.rb │ │ │ ├── response.rb │ │ │ ├── upload.rb │ │ │ └── url.rb │ │ ├── journey.rb │ │ ├── journey │ │ │ ├── formatter.rb │ │ │ ├── gtg │ │ │ │ ├── builder.rb │ │ │ │ ├── simulator.rb │ │ │ │ └── transition_table.rb │ │ │ ├── nfa │ │ │ │ └── dot.rb │ │ │ ├── nodes │ │ │ │ └── node.rb │ │ │ ├── parser.rb │ │ │ ├── parser.y │ │ │ ├── parser_extras.rb │ │ │ ├── path │ │ │ │ └── pattern.rb │ │ │ ├── route.rb │ │ │ ├── router.rb │ │ │ ├── router │ │ │ │ └── utils.rb │ │ │ ├── routes.rb │ │ │ ├── scanner.rb │ │ │ ├── visitors.rb │ │ │ └── visualizer │ │ │ │ ├── fsm.css │ │ │ │ ├── fsm.js │ │ │ │ └── index.html.erb │ │ ├── log_subscriber.rb │ │ ├── middleware │ │ │ ├── actionable_exceptions.rb │ │ │ ├── assume_ssl.rb │ │ │ ├── callbacks.rb │ │ │ ├── cookies.rb │ │ │ ├── debug_exceptions.rb │ │ │ ├── debug_locks.rb │ │ │ ├── debug_view.rb │ │ │ ├── exception_wrapper.rb │ │ │ ├── executor.rb │ │ │ ├── flash.rb │ │ │ ├── host_authorization.rb │ │ │ ├── public_exceptions.rb │ │ │ ├── reloader.rb │ │ │ ├── remote_ip.rb │ │ │ ├── request_id.rb │ │ │ ├── server_timing.rb │ │ │ ├── session │ │ │ │ ├── abstract_store.rb │ │ │ │ ├── cache_store.rb │ │ │ │ ├── cookie_store.rb │ │ │ │ └── mem_cache_store.rb │ │ │ ├── show_exceptions.rb │ │ │ ├── ssl.rb │ │ │ ├── stack.rb │ │ │ ├── static.rb │ │ │ └── templates │ │ │ │ ├── rescues │ │ │ │ ├── _actions.html.erb │ │ │ │ ├── _actions.text.erb │ │ │ │ ├── _message_and_suggestions.html.erb │ │ │ │ ├── _request_and_response.html.erb │ │ │ │ ├── _request_and_response.text.erb │ │ │ │ ├── _source.html.erb │ │ │ │ ├── _source.text.erb │ │ │ │ ├── _trace.html.erb │ │ │ │ ├── _trace.text.erb │ │ │ │ ├── blocked_host.html.erb │ │ │ │ ├── blocked_host.text.erb │ │ │ │ ├── diagnostics.html.erb │ │ │ │ ├── diagnostics.text.erb │ │ │ │ ├── invalid_statement.html.erb │ │ │ │ ├── invalid_statement.text.erb │ │ │ │ ├── layout.erb │ │ │ │ ├── missing_exact_template.html.erb │ │ │ │ ├── missing_exact_template.text.erb │ │ │ │ ├── missing_template.html.erb │ │ │ │ ├── missing_template.text.erb │ │ │ │ ├── routing_error.html.erb │ │ │ │ ├── routing_error.text.erb │ │ │ │ ├── template_error.html.erb │ │ │ │ ├── template_error.text.erb │ │ │ │ ├── unknown_action.html.erb │ │ │ │ └── unknown_action.text.erb │ │ │ │ └── routes │ │ │ │ ├── _route.html.erb │ │ │ │ └── _table.html.erb │ │ ├── railtie.rb │ │ ├── request │ │ │ ├── session.rb │ │ │ └── utils.rb │ │ ├── routing.rb │ │ ├── routing │ │ │ ├── endpoint.rb │ │ │ ├── inspector.rb │ │ │ ├── mapper.rb │ │ │ ├── polymorphic_routes.rb │ │ │ ├── redirection.rb │ │ │ ├── route_set.rb │ │ │ ├── routes_proxy.rb │ │ │ └── url_for.rb │ │ ├── system_test_case.rb │ │ ├── system_testing │ │ │ ├── browser.rb │ │ │ ├── driver.rb │ │ │ ├── server.rb │ │ │ └── test_helpers │ │ │ │ ├── screenshot_helper.rb │ │ │ │ └── setup_and_teardown.rb │ │ └── testing │ │ │ ├── assertion_response.rb │ │ │ ├── assertions.rb │ │ │ ├── assertions │ │ │ ├── response.rb │ │ │ └── routing.rb │ │ │ ├── integration.rb │ │ │ ├── request_encoder.rb │ │ │ ├── test_process.rb │ │ │ ├── test_request.rb │ │ │ └── test_response.rb │ ├── action_pack.rb │ └── action_pack │ │ ├── gem_version.rb │ │ └── version.rb └── test │ ├── abstract │ ├── callbacks_test.rb │ ├── collector_test.rb │ └── translation_test.rb │ ├── abstract_unit.rb │ ├── assertions │ └── response_assertions_test.rb │ ├── controller │ ├── action_pack_assertions_test.rb │ ├── api │ │ ├── conditional_get_test.rb │ │ ├── data_streaming_test.rb │ │ ├── implicit_render_test.rb │ │ ├── params_wrapper_test.rb │ │ ├── redirect_to_test.rb │ │ ├── renderers_test.rb │ │ ├── url_for_test.rb │ │ ├── with_cookies_test.rb │ │ └── with_helpers_test.rb │ ├── base_test.rb │ ├── caching_test.rb │ ├── content_type_test.rb │ ├── controller_fixtures │ │ ├── app │ │ │ └── controllers │ │ │ │ ├── admin │ │ │ │ └── user_controller.rb │ │ │ │ └── user_controller.rb │ │ └── vendor │ │ │ └── plugins │ │ │ └── bad_plugin │ │ │ └── lib │ │ │ └── plugin_controller.rb │ ├── default_url_options_with_before_action_test.rb │ ├── filters_test.rb │ ├── flash_hash_test.rb │ ├── flash_test.rb │ ├── form_builder_test.rb │ ├── helper_test.rb │ ├── http_basic_authentication_test.rb │ ├── http_digest_authentication_test.rb │ ├── http_token_authentication_test.rb │ ├── integration_test.rb │ ├── live_stream_test.rb │ ├── localized_templates_test.rb │ ├── log_subscriber_test.rb │ ├── logging_test.rb │ ├── metal │ │ └── renderers_test.rb │ ├── metal_test.rb │ ├── mime │ │ ├── accept_format_test.rb │ │ └── respond_to_test.rb │ ├── new_base │ │ ├── bare_metal_test.rb │ │ ├── base_test.rb │ │ ├── content_negotiation_test.rb │ │ ├── content_type_test.rb │ │ ├── middleware_test.rb │ │ ├── render_action_test.rb │ │ ├── render_body_test.rb │ │ ├── render_file_test.rb │ │ ├── render_html_test.rb │ │ ├── render_implicit_action_test.rb │ │ ├── render_layout_test.rb │ │ ├── render_partial_test.rb │ │ ├── render_plain_test.rb │ │ ├── render_streaming_test.rb │ │ ├── render_template_test.rb │ │ ├── render_test.rb │ │ └── render_xml_test.rb │ ├── output_escaping_test.rb │ ├── parameter_encoding_test.rb │ ├── parameters │ │ ├── accessors_test.rb │ │ ├── always_permitted_parameters_test.rb │ │ ├── dup_test.rb │ │ ├── equality_test.rb │ │ ├── log_on_unpermitted_params_test.rb │ │ ├── multi_parameter_attributes_test.rb │ │ ├── mutators_test.rb │ │ ├── nested_parameters_permit_test.rb │ │ ├── parameters_permit_test.rb │ │ ├── raise_on_unpermitted_params_test.rb │ │ └── serialization_test.rb │ ├── parameters_integration_test.rb │ ├── params_parse_test.rb │ ├── params_wrapper_test.rb │ ├── permitted_params_test.rb │ ├── redirect_test.rb │ ├── render_js_test.rb │ ├── render_json_test.rb │ ├── render_test.rb │ ├── render_to_string_test.rb │ ├── render_xml_test.rb │ ├── renderer_test.rb │ ├── renderers_test.rb │ ├── request │ │ └── test_request_test.rb │ ├── request_forgery_protection_test.rb │ ├── required_params_test.rb │ ├── rescue_test.rb │ ├── resources_test.rb │ ├── route_helpers_test.rb │ ├── routing_test.rb │ ├── runner_test.rb │ ├── send_file_test.rb │ ├── show_exceptions_test.rb │ ├── streaming_test.rb │ ├── test_case_test.rb │ ├── url_for_integration_test.rb │ ├── url_for_test.rb │ └── webservice_test.rb │ ├── dispatch │ ├── actionable_exceptions_test.rb │ ├── callbacks_test.rb │ ├── content_disposition_test.rb │ ├── content_security_policy_test.rb │ ├── cookies_test.rb │ ├── debug_exceptions_test.rb │ ├── debug_locks_test.rb │ ├── exception_wrapper_test.rb │ ├── executor_test.rb │ ├── header_test.rb │ ├── host_authorization_test.rb │ ├── live_response_test.rb │ ├── mapper_test.rb │ ├── middleware_stack_test.rb │ ├── mime_type_test.rb │ ├── mount_test.rb │ ├── permissions_policy_test.rb │ ├── prefix_generation_test.rb │ ├── rack_cache_test.rb │ ├── reloader_test.rb │ ├── request │ │ ├── json_params_parsing_test.rb │ │ ├── multipart_params_parsing_test.rb │ │ ├── query_string_parsing_test.rb │ │ ├── session_test.rb │ │ └── url_encoded_params_parsing_test.rb │ ├── request_id_test.rb │ ├── request_test.rb │ ├── response_test.rb │ ├── routing │ │ ├── concerns_test.rb │ │ ├── custom_url_helpers_test.rb │ │ ├── inspector_test.rb │ │ ├── instrumentation_test.rb │ │ ├── ipv6_redirect_test.rb │ │ ├── log_subscriber_test.rb │ │ ├── non_dispatch_routed_app_test.rb │ │ └── route_set_test.rb │ ├── routing_assertions_test.rb │ ├── routing_test.rb │ ├── runner_test.rb │ ├── server_timing_test.rb │ ├── session │ │ ├── abstract_secure_store_test.rb │ │ ├── abstract_store_test.rb │ │ ├── cache_store_test.rb │ │ ├── cookie_store_test.rb │ │ ├── mem_cache_store_test.rb │ │ └── test_session_test.rb │ ├── show_exceptions_test.rb │ ├── ssl_test.rb │ ├── static_test.rb │ ├── system_testing │ │ ├── driver_test.rb │ │ ├── screenshot_helper_test.rb │ │ ├── server_test.rb │ │ └── system_test_case_test.rb │ ├── test_request_test.rb │ ├── test_response_test.rb │ ├── uploaded_file_test.rb │ └── url_generation_test.rb │ ├── fixtures │ ├── _top_level_partial_only.erb │ ├── alternate_helpers │ │ └── foo_helper.rb │ ├── bad_customers │ │ └── _bad_customer.html.erb │ ├── collection_cache │ │ └── index.html.erb │ ├── company.rb │ ├── customers │ │ ├── _commented_customer.html.erb │ │ └── _customer.html.erb │ ├── filter_test │ │ └── implicit_actions │ │ │ ├── edit.html.erb │ │ │ └── show.html.erb │ ├── functional_caching │ │ ├── _formatted_partial.html.erb │ │ ├── _partial.erb │ │ ├── formatted_fragment_cached.html.erb │ │ ├── formatted_fragment_cached.xml.builder │ │ ├── formatted_fragment_cached_with_variant.html+phone.erb │ │ ├── fragment_cached.html.erb │ │ ├── fragment_cached_with_options.html.erb │ │ ├── fragment_cached_without_digest.html.erb │ │ ├── html_fragment_cached_with_partial.html.erb │ │ ├── inline_fragment_cached.html.erb │ │ └── xml_fragment_cached_with_html_partial.xml.builder │ ├── helpers │ │ ├── abc_helper.rb │ │ ├── fun │ │ │ ├── games_helper.rb │ │ │ └── pdf_helper.rb │ │ ├── just_me_helper.rb │ │ └── me_too_helper.rb │ ├── helpers1_pack │ │ └── pack1_helper.rb │ ├── helpers2_pack │ │ └── pack2_helper.rb │ ├── helpers_typo │ │ └── admin │ │ │ └── users_helper.rb │ ├── implicit_render_test │ │ ├── empty_action_with_mobile_variant.html+mobile.erb │ │ └── empty_action_with_template.html.erb │ ├── layouts │ │ ├── _customers.erb │ │ ├── block_with_layout.erb │ │ ├── builder.builder │ │ ├── partial_with_layout.erb │ │ ├── standard.html.erb │ │ ├── talk_from_action.erb │ │ ├── with_html_partial.html.erb │ │ ├── xhr.html.erb │ │ └── yield.erb │ ├── load_me.rb │ ├── localized │ │ ├── hello_world.de.html │ │ ├── hello_world.de_AT.html │ │ ├── hello_world.en.html │ │ └── hello_world.it.erb │ ├── multipart │ │ ├── binary_file │ │ ├── boundary_problem_file │ │ ├── bracketed_param │ │ ├── bracketed_utf8_param │ │ ├── empty │ │ ├── hello.txt │ │ ├── large_text_file │ │ ├── mixed_files │ │ ├── none │ │ ├── ruby_on_rails.jpg │ │ ├── single_parameter │ │ ├── single_utf8_param │ │ ├── text_file │ │ └── utf8_filename │ ├── namespaced │ │ └── implicit_render_test │ │ │ └── hello_world.erb │ ├── old_content_type │ │ ├── render_default_content_types_for_respond_to.xml.erb │ │ ├── render_default_for_builder.builder │ │ └── render_default_for_erb.erb │ ├── post_test │ │ ├── layouts │ │ │ ├── post.html.erb │ │ │ └── super_post.iphone.erb │ │ ├── post │ │ │ ├── index.html.erb │ │ │ └── index.iphone.erb │ │ └── super_post │ │ │ ├── index.html.erb │ │ │ └── index.iphone.erb │ ├── public │ │ ├── 400.html │ │ ├── 404.html │ │ ├── 500.da.html │ │ ├── 500.html │ │ ├── bar.html │ │ ├── bar │ │ │ └── index.html │ │ ├── foo │ │ │ ├── bar.html │ │ │ ├── baz.css │ │ │ ├── index.html │ │ │ ├── other-index.html │ │ │ ├── こんにちは.html │ │ │ ├── さようなら.html │ │ │ └── さようなら.html.gz │ │ ├── gzip │ │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js │ │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js.br │ │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js.gz │ │ │ ├── foo.zoo │ │ │ └── foo.zoo.gz │ │ ├── index.html │ │ └── other-index.html │ ├── respond_to │ │ ├── all_types_with_layout.html.erb │ │ ├── custom_constant_handling_without_block.mobile.erb │ │ ├── iphone_with_html_response_type.html.erb │ │ ├── iphone_with_html_response_type.iphone.erb │ │ ├── layouts │ │ │ ├── missing.html.erb │ │ │ ├── standard.html.erb │ │ │ └── standard.iphone.erb │ │ ├── using_defaults.html.erb │ │ ├── using_defaults.xml.builder │ │ ├── using_defaults_with_all.html.erb │ │ ├── using_defaults_with_type_list.html.erb │ │ ├── using_defaults_with_type_list.xml.builder │ │ ├── variant_any_implicit_render.html+phablet.erb │ │ ├── variant_any_implicit_render.html+tablet.erb │ │ ├── variant_inline_syntax_without_block.html+phone.erb │ │ ├── variant_plus_none_for_format.html.erb │ │ └── variant_with_implicit_template_rendering.html+mobile.erb │ ├── ruby_template.ruby │ ├── session_autoload_test │ │ └── session_autoload_test │ │ │ └── foo.rb │ ├── shared.html.erb │ ├── star_star_mime │ │ └── index.js.erb │ ├── test │ │ ├── _partial.erb │ │ ├── _partial.html.erb │ │ ├── _partial.js.erb │ │ ├── dot.directory │ │ │ └── render_file_with_ivar.erb │ │ ├── formatted_xml_erb.builder │ │ ├── formatted_xml_erb.html.erb │ │ ├── formatted_xml_erb.xml.erb │ │ ├── hello │ │ │ └── hello.erb │ │ ├── hello_world.erb │ │ ├── hello_world_with_partial.html.erb │ │ ├── hello_xml_world.builder │ │ ├── implicit_content_type.atom.builder │ │ ├── render_file_with_ivar.erb │ │ ├── render_file_with_locals.erb │ │ └── with_implicit_template.erb │ └── 公共 │ │ ├── bar.html │ │ ├── bar │ │ └── index.html │ │ ├── foo │ │ ├── bar.html │ │ ├── baz.css │ │ ├── index.html │ │ ├── other-index.html │ │ ├── こんにちは.html │ │ ├── さようなら.html │ │ └── さようなら.html.gz │ │ ├── gzip │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js.br │ │ ├── application-a71b3024f80aea3181c09774ca17e712.js.gz │ │ ├── foo.zoo │ │ └── foo.zoo.gz │ │ ├── index.html │ │ └── other-index.html │ ├── journey │ ├── gtg │ │ ├── builder_test.rb │ │ └── transition_table_test.rb │ ├── nodes │ │ ├── ast_test.rb │ │ └── symbol_test.rb │ ├── path │ │ └── pattern_test.rb │ ├── route │ │ └── definition │ │ │ ├── parser_test.rb │ │ │ └── scanner_test.rb │ ├── route_test.rb │ ├── router │ │ └── utils_test.rb │ ├── router_test.rb │ └── routes_test.rb │ ├── lib │ ├── controller │ │ ├── fake_controllers.rb │ │ └── fake_models.rb │ └── test_renderable.rb │ ├── routing │ └── helper_test.rb │ └── support │ └── path_helper.rb ├── actiontext ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── actiontext.gemspec ├── app │ ├── assets │ │ ├── javascripts │ │ │ ├── actiontext.js │ │ │ └── trix.js │ │ └── stylesheets │ │ │ └── trix.css │ ├── helpers │ │ └── action_text │ │ │ ├── content_helper.rb │ │ │ └── tag_helper.rb │ ├── javascript │ │ └── actiontext │ │ │ ├── attachment_upload.js │ │ │ └── index.js │ ├── models │ │ └── action_text │ │ │ ├── encrypted_rich_text.rb │ │ │ ├── record.rb │ │ │ └── rich_text.rb │ └── views │ │ ├── action_text │ │ ├── attachables │ │ │ ├── _content_attachment.html.erb │ │ │ ├── _missing_attachable.html.erb │ │ │ └── _remote_image.html.erb │ │ ├── attachment_galleries │ │ │ └── _attachment_gallery.html.erb │ │ └── contents │ │ │ └── _content.html.erb │ │ ├── active_storage │ │ └── blobs │ │ │ └── _blob.html.erb │ │ └── layouts │ │ └── action_text │ │ └── contents │ │ └── _content.html.erb ├── bin │ ├── test │ ├── webpack │ └── webpack-dev-server ├── db │ └── migrate │ │ └── 20180528164100_create_action_text_tables.rb ├── lib │ ├── action_text.rb │ ├── action_text │ │ ├── attachable.rb │ │ ├── attachables │ │ │ ├── content_attachment.rb │ │ │ ├── missing_attachable.rb │ │ │ └── remote_image.rb │ │ ├── attachment.rb │ │ ├── attachment_gallery.rb │ │ ├── attachments │ │ │ ├── caching.rb │ │ │ ├── minification.rb │ │ │ └── trix_conversion.rb │ │ ├── attribute.rb │ │ ├── content.rb │ │ ├── deprecator.rb │ │ ├── encryption.rb │ │ ├── engine.rb │ │ ├── fixture_set.rb │ │ ├── fragment.rb │ │ ├── gem_version.rb │ │ ├── html_conversion.rb │ │ ├── plain_text_conversion.rb │ │ ├── rendering.rb │ │ ├── serialization.rb │ │ ├── system_test_helper.rb │ │ ├── trix_attachment.rb │ │ └── version.rb │ ├── generators │ │ └── action_text │ │ │ └── install │ │ │ ├── install_generator.rb │ │ │ └── templates │ │ │ └── actiontext.css │ ├── rails │ │ └── generators │ │ │ └── test_unit │ │ │ ├── install_generator.rb │ │ │ └── templates │ │ │ └── fixtures.yml │ └── tasks │ │ └── actiontext.rake ├── package.json ├── rollup.config.js └── test │ ├── application_system_test_case.rb │ ├── dummy │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ ├── messages.css │ │ │ │ └── scaffold.css │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── admin │ │ │ │ └── messages_controller.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── messages_controller.rb │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ └── messages_helper.rb │ │ ├── javascript │ │ │ └── application.js │ │ ├── jobs │ │ │ ├── application_job.rb │ │ │ └── broadcast_job.rb │ │ ├── mailers │ │ │ ├── application_mailer.rb │ │ │ └── messages_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ ├── encrypted_message.rb │ │ │ ├── message.rb │ │ │ ├── page.rb │ │ │ ├── person.rb │ │ │ └── review.rb │ │ └── views │ │ │ ├── admin │ │ │ └── messages │ │ │ │ └── show.html.erb │ │ │ ├── layouts │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ │ │ ├── messages │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── edit.json.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ ├── show.html.erb │ │ │ └── show.json.erb │ │ │ ├── messages_mailer │ │ │ └── notification.html.erb │ │ │ └── people │ │ │ ├── _attachable.html.erb │ │ │ ├── _missing_attachable.html.erb │ │ │ └── _trix_content_attachment.html.erb │ ├── bin │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── importmap.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ └── permissions_policy.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20180208205311_create_messages.rb │ │ │ ├── 20180212164506_create_active_storage_tables.rb │ │ │ ├── 20180528164100_create_action_text_tables.rb │ │ │ ├── 20181003185713_create_people.rb │ │ │ ├── 20190305172303_create_pages.rb │ │ │ └── 20190317200724_create_reviews.rb │ │ └── schema.rb │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ ├── storage │ │ └── .keep │ └── tmp │ │ ├── .keep │ │ └── storage │ │ └── .keep │ ├── fixtures │ ├── action_text │ │ └── rich_texts.yml │ ├── files │ │ └── racecar.jpg │ ├── messages.yml │ ├── people.yml │ └── reviews.yml │ ├── integration │ ├── controller_render_test.rb │ ├── job_render_test.rb │ └── mailer_render_test.rb │ ├── system │ └── system_test_helper_test.rb │ ├── template │ └── form_helper_test.rb │ ├── test_helper.rb │ └── unit │ ├── attachable_test.rb │ ├── attachment_test.rb │ ├── content_test.rb │ ├── fixture_set_test.rb │ ├── model_encryption_test.rb │ ├── model_test.rb │ ├── plain_text_conversion_test.rb │ ├── strict_loading_test.rb │ └── trix_attachment_test.rb ├── actionview ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── RUNNING_UJS_TESTS.rdoc ├── RUNNING_UNIT_TESTS.rdoc ├── Rakefile ├── actionview.gemspec ├── app │ ├── assets │ │ └── javascripts │ │ │ ├── rails-ujs.esm.js │ │ │ └── rails-ujs.js │ └── javascript │ │ ├── MIT-LICENSE │ │ ├── README.md │ │ └── rails-ujs │ │ ├── features │ │ ├── confirm.js │ │ ├── disable.js │ │ ├── method.js │ │ └── remote.js │ │ ├── index.js │ │ └── utils │ │ ├── ajax.js │ │ ├── constants.js │ │ ├── csp.js │ │ ├── csrf.js │ │ ├── dom.js │ │ ├── event.js │ │ └── form.js ├── bin │ └── test ├── karma.conf.js ├── lib │ ├── action_view.rb │ └── action_view │ │ ├── base.rb │ │ ├── buffers.rb │ │ ├── cache_expiry.rb │ │ ├── context.rb │ │ ├── dependency_tracker.rb │ │ ├── dependency_tracker │ │ ├── erb_tracker.rb │ │ └── ripper_tracker.rb │ │ ├── deprecator.rb │ │ ├── digestor.rb │ │ ├── flows.rb │ │ ├── gem_version.rb │ │ ├── helpers.rb │ │ ├── helpers │ │ ├── active_model_helper.rb │ │ ├── asset_tag_helper.rb │ │ ├── asset_url_helper.rb │ │ ├── atom_feed_helper.rb │ │ ├── cache_helper.rb │ │ ├── capture_helper.rb │ │ ├── content_exfiltration_prevention_helper.rb │ │ ├── controller_helper.rb │ │ ├── csp_helper.rb │ │ ├── csrf_helper.rb │ │ ├── date_helper.rb │ │ ├── debug_helper.rb │ │ ├── form_helper.rb │ │ ├── form_options_helper.rb │ │ ├── form_tag_helper.rb │ │ ├── javascript_helper.rb │ │ ├── number_helper.rb │ │ ├── output_safety_helper.rb │ │ ├── rendering_helper.rb │ │ ├── sanitize_helper.rb │ │ ├── tag_helper.rb │ │ ├── tags.rb │ │ ├── tags │ │ │ ├── base.rb │ │ │ ├── check_box.rb │ │ │ ├── checkable.rb │ │ │ ├── collection_check_boxes.rb │ │ │ ├── collection_helpers.rb │ │ │ ├── collection_radio_buttons.rb │ │ │ ├── collection_select.rb │ │ │ ├── color_field.rb │ │ │ ├── date_field.rb │ │ │ ├── date_select.rb │ │ │ ├── datetime_field.rb │ │ │ ├── datetime_local_field.rb │ │ │ ├── datetime_select.rb │ │ │ ├── email_field.rb │ │ │ ├── file_field.rb │ │ │ ├── grouped_collection_select.rb │ │ │ ├── hidden_field.rb │ │ │ ├── label.rb │ │ │ ├── month_field.rb │ │ │ ├── number_field.rb │ │ │ ├── password_field.rb │ │ │ ├── placeholderable.rb │ │ │ ├── radio_button.rb │ │ │ ├── range_field.rb │ │ │ ├── search_field.rb │ │ │ ├── select.rb │ │ │ ├── select_renderer.rb │ │ │ ├── tel_field.rb │ │ │ ├── text_area.rb │ │ │ ├── text_field.rb │ │ │ ├── time_field.rb │ │ │ ├── time_select.rb │ │ │ ├── time_zone_select.rb │ │ │ ├── translator.rb │ │ │ ├── url_field.rb │ │ │ ├── week_field.rb │ │ │ └── weekday_select.rb │ │ ├── text_helper.rb │ │ ├── translation_helper.rb │ │ └── url_helper.rb │ │ ├── layouts.rb │ │ ├── locale │ │ └── en.yml │ │ ├── log_subscriber.rb │ │ ├── lookup_context.rb │ │ ├── model_naming.rb │ │ ├── path_registry.rb │ │ ├── path_set.rb │ │ ├── railtie.rb │ │ ├── record_identifier.rb │ │ ├── render_parser.rb │ │ ├── renderer │ │ ├── abstract_renderer.rb │ │ ├── collection_renderer.rb │ │ ├── object_renderer.rb │ │ ├── partial_renderer.rb │ │ ├── partial_renderer │ │ │ └── collection_caching.rb │ │ ├── renderer.rb │ │ ├── streaming_template_renderer.rb │ │ └── template_renderer.rb │ │ ├── rendering.rb │ │ ├── ripper_ast_parser.rb │ │ ├── routing_url_for.rb │ │ ├── tasks │ │ └── cache_digests.rake │ │ ├── template.rb │ │ ├── template │ │ ├── error.rb │ │ ├── handlers.rb │ │ ├── handlers │ │ │ ├── builder.rb │ │ │ ├── erb.rb │ │ │ ├── erb │ │ │ │ └── erubi.rb │ │ │ ├── html.rb │ │ │ └── raw.rb │ │ ├── html.rb │ │ ├── inline.rb │ │ ├── raw_file.rb │ │ ├── renderable.rb │ │ ├── resolver.rb │ │ ├── sources.rb │ │ ├── sources │ │ │ └── file.rb │ │ ├── text.rb │ │ └── types.rb │ │ ├── template_details.rb │ │ ├── template_path.rb │ │ ├── test_case.rb │ │ ├── testing │ │ └── resolvers.rb │ │ ├── unbound_template.rb │ │ ├── version.rb │ │ └── view_paths.rb ├── package.json ├── rollup.config.js ├── rollup.config.test.js └── test │ ├── abstract_unit.rb │ ├── actionpack │ ├── abstract │ │ ├── abstract_controller_test.rb │ │ ├── helper_test.rb │ │ ├── layouts_test.rb │ │ ├── render_test.rb │ │ └── views │ │ │ ├── abstract_controller │ │ │ └── testing │ │ │ │ ├── me3 │ │ │ │ ├── formatted.html.erb │ │ │ │ └── index.erb │ │ │ │ └── me4 │ │ │ │ └── index.erb │ │ │ ├── action_with_ivars.erb │ │ │ ├── helper_test.erb │ │ │ ├── index.erb │ │ │ ├── layouts │ │ │ ├── abstract_controller │ │ │ │ └── testing │ │ │ │ │ └── me4.erb │ │ │ └── application.erb │ │ │ ├── naked_render.erb │ │ │ └── with_final_newline.erb │ └── controller │ │ ├── capture_test.rb │ │ ├── layout_test.rb │ │ ├── render_test.rb │ │ └── view_paths_test.rb │ ├── active_record_unit.rb │ ├── activerecord │ ├── controller_runtime_test.rb │ ├── debug_helper_test.rb │ ├── form_helper_activerecord_test.rb │ ├── multifetch_cache_test.rb │ ├── partial_rendering_query_test.rb │ ├── polymorphic_routes_test.rb │ ├── relation_cache_test.rb │ └── render_partial_with_record_identification_test.rb │ ├── buffers_test.rb │ ├── fixtures │ ├── _top_level_partial.html.erb │ ├── _top_level_partial_only.erb │ ├── actionpack │ │ ├── bad_customers │ │ │ └── _bad_customer.html.erb │ │ ├── customers │ │ │ └── _customer.html.erb │ │ ├── fun │ │ │ └── games │ │ │ │ ├── _form.erb │ │ │ │ └── hello_world.erb │ │ ├── good_customers │ │ │ └── _good_customer.html.erb │ │ ├── hello.html │ │ ├── layout_tests │ │ │ ├── alt │ │ │ │ └── layouts │ │ │ │ │ └── alt.erb │ │ │ ├── layouts │ │ │ │ ├── controller_name_space │ │ │ │ │ └── nested.erb │ │ │ │ ├── item.erb │ │ │ │ ├── layout_test.erb │ │ │ │ ├── multiple_extensions.html.erb │ │ │ │ ├── symlinked │ │ │ │ │ └── symlinked_layout.erb │ │ │ │ └── third_party_template_library.mab │ │ │ └── views │ │ │ │ ├── goodbye.erb │ │ │ │ └── hello.erb │ │ ├── layouts │ │ │ ├── _column.html.erb │ │ │ ├── _customers.erb │ │ │ ├── _partial_and_yield.erb │ │ │ ├── _yield_only.erb │ │ │ ├── _yield_with_params.erb │ │ │ ├── block_with_layout.erb │ │ │ ├── builder.builder │ │ │ ├── partial_with_layout.erb │ │ │ ├── standard.html.erb │ │ │ ├── standard.text.erb │ │ │ ├── streaming.erb │ │ │ ├── talk_from_action.erb │ │ │ ├── with_html_partial.html.erb │ │ │ ├── xhr.html.erb │ │ │ ├── yield.erb │ │ │ ├── yield_with_render_inline_inside.erb │ │ │ └── yield_with_render_partial_inside.erb │ │ ├── quiz │ │ │ └── questions │ │ │ │ └── _question.html.erb │ │ ├── shared.html.erb │ │ └── test │ │ │ ├── _changing_priority.html.erb │ │ │ ├── _changing_priority.json.erb │ │ │ ├── _counter.html.erb │ │ │ ├── _customer.erb │ │ │ ├── _customer_counter.erb │ │ │ ├── _customer_counter_with_as.erb │ │ │ ├── _customer_greeting.erb │ │ │ ├── _customer_iteration.erb │ │ │ ├── _customer_iteration_with_as.erb │ │ │ ├── _customer_with_var.erb │ │ │ ├── _directory │ │ │ └── _partial_with_locales.html.erb │ │ │ ├── _first_json_partial.json.erb │ │ │ ├── _form.erb │ │ │ ├── _hash_greeting.erb │ │ │ ├── _hash_object.erb │ │ │ ├── _hello.builder │ │ │ ├── _json_change_priority.json.erb │ │ │ ├── _labelling_form.erb │ │ │ ├── _layout_for_partial.html.erb │ │ │ ├── _partial.erb │ │ │ ├── _partial.html.erb │ │ │ ├── _partial.js.erb │ │ │ ├── _partial_for_use_in_layout.html.erb │ │ │ ├── _partial_html_erb.html.erb │ │ │ ├── _partial_name_local_variable.erb │ │ │ ├── _partial_only.erb │ │ │ ├── _partial_only_html.html │ │ │ ├── _partial_with_partial.erb │ │ │ ├── _person.erb │ │ │ ├── _raise_indentation.html.erb │ │ │ ├── _second_json_partial.json.erb │ │ │ ├── action_talk_to_layout.erb │ │ │ ├── calling_partial_with_layout.html.erb │ │ │ ├── capturing.erb │ │ │ ├── change_priority.html.erb │ │ │ ├── content_for.erb │ │ │ ├── content_for_concatenated.erb │ │ │ ├── content_for_with_parameter.erb │ │ │ ├── dot.directory │ │ │ └── render_template_with_ivar.erb │ │ │ ├── formatted_html_erb.html.erb │ │ │ ├── formatted_xml_erb.builder │ │ │ ├── formatted_xml_erb.html.erb │ │ │ ├── formatted_xml_erb.xml.erb │ │ │ ├── greeting.html.erb │ │ │ ├── greeting.xml.erb │ │ │ ├── hello,world.erb │ │ │ ├── hello.builder │ │ │ ├── hello │ │ │ └── hello.erb │ │ │ ├── hello_world.erb │ │ │ ├── hello_world_container.builder │ │ │ ├── hello_world_from_rxml.builder │ │ │ ├── hello_world_with_layout_false.erb │ │ │ ├── hello_world_with_partial.html.erb │ │ │ ├── hello_xml_world.builder │ │ │ ├── html_template.html.erb │ │ │ ├── hyphen-ated.erb │ │ │ ├── implicit_content_type.atom.builder │ │ │ ├── list.erb │ │ │ ├── non_erb_block_content_for.builder │ │ │ ├── potential_conflicts.erb │ │ │ ├── proper_block_detection.erb │ │ │ ├── raise.html.erb │ │ │ ├── render_file_from_template.html.erb │ │ │ ├── render_file_with_locals_and_default.erb │ │ │ ├── render_implicit_html_template_from_xhr_request.da.html.erb │ │ │ ├── render_implicit_html_template_from_xhr_request.html.erb │ │ │ ├── render_implicit_js_template_without_layout.js.erb │ │ │ ├── render_partial_inside_directory.html.erb │ │ │ ├── render_template_with_ivar.erb │ │ │ ├── render_template_with_locals.erb │ │ │ ├── render_to_string_test.erb │ │ │ ├── render_two_partials.html.erb │ │ │ ├── using_layout_around_block.html.erb │ │ │ ├── with_html_partial.html.erb │ │ │ ├── with_partial.html.erb │ │ │ ├── with_partial.text.erb │ │ │ └── with_xml_template.html.erb │ ├── comments │ │ ├── empty.de.html.erb │ │ ├── empty.html+grid.erb │ │ ├── empty.html.builder │ │ ├── empty.html.erb │ │ └── empty.xml.erb │ ├── companies.yml │ ├── company.rb │ ├── customers │ │ ├── _customer.html.erb │ │ └── _customer.xml.erb │ ├── db_definitions │ │ └── sqlite.sql │ ├── developer.rb │ ├── developers.yml │ ├── developers │ │ └── _developer.erb │ ├── developers_projects.yml │ ├── digestor │ │ ├── api │ │ │ └── comments │ │ │ │ ├── _comment.json.erb │ │ │ │ └── _comments.json.erb │ │ ├── comments │ │ │ ├── _comment.html.erb │ │ │ ├── _comments.html.erb │ │ │ └── show.js.erb │ │ ├── events │ │ │ ├── _completed.html.erb │ │ │ ├── _event.html.erb │ │ │ └── index.html.erb │ │ ├── level │ │ │ ├── _recursion.html.erb │ │ │ ├── below │ │ │ │ ├── _header.html.erb │ │ │ │ └── index.html.erb │ │ │ └── recursion.html.erb │ │ └── messages │ │ │ ├── _form.html.erb │ │ │ ├── _header.html.erb │ │ │ ├── _message.html.erb │ │ │ ├── actions │ │ │ └── _move.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html+iphone.erb │ │ │ ├── peek.html.erb │ │ │ ├── show.html.erb │ │ │ └── thread.json.erb │ ├── fun │ │ ├── games │ │ │ ├── _game.erb │ │ │ └── hello_world.erb │ │ └── serious │ │ │ └── games │ │ │ └── _game.erb │ ├── games │ │ └── _game.erb │ ├── good_customers │ │ └── _good_customer.html.erb │ ├── helpers │ │ ├── abc_helper.rb │ │ └── helpery_test_helper.rb │ ├── layout_tests │ │ └── alt │ │ │ └── hello.erb │ ├── layouts │ │ ├── _column.html.erb │ │ ├── _customers.erb │ │ ├── _partial_and_yield.erb │ │ ├── _yield_only.erb │ │ ├── _yield_with_params.erb │ │ ├── render_partial_html.erb │ │ ├── streaming.erb │ │ ├── streaming_with_capture.erb │ │ ├── streaming_with_locale.erb │ │ ├── yield.erb │ │ ├── yield_with_render_inline_inside.erb │ │ └── yield_with_render_partial_inside.erb │ ├── mascot.rb │ ├── mascots.yml │ ├── mascots │ │ └── _mascot.html.erb │ ├── override │ │ └── test │ │ │ └── hello_world.erb │ ├── override2 │ │ └── layouts │ │ │ └── test │ │ │ └── sub.erb │ ├── plain_text.raw │ ├── plain_text_with_characters.raw │ ├── project.rb │ ├── projects.yml │ ├── projects │ │ └── _project.erb │ ├── public │ │ ├── elsewhere │ │ │ ├── cools.js │ │ │ └── file.css │ │ ├── foo │ │ │ └── baz.css │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── bank.js │ │ │ ├── common.javascript │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── prototype.js │ │ │ ├── robber.js │ │ │ ├── subdir │ │ │ │ └── subdir.js │ │ │ └── version.1.0.js │ │ └── stylesheets │ │ │ ├── bank.css │ │ │ ├── random.styles │ │ │ ├── robber.css │ │ │ ├── subdir │ │ │ └── subdir.css │ │ │ └── version.1.0.css │ ├── replies.yml │ ├── replies │ │ └── _reply.erb │ ├── reply.rb │ ├── respond_to │ │ └── using_defaults_with_all.html.erb │ ├── ruby_template.ruby │ ├── shared.html.erb │ ├── test │ │ ├── _200.html.erb │ │ ├── _FooBar.html.erb │ │ ├── _a-in.html.erb │ │ ├── _b_layout_for_partial.html.erb │ │ ├── _b_layout_for_partial_with_object.html.erb │ │ ├── _b_layout_for_partial_with_object_counter.html.erb │ │ ├── _builder_tag_nested_in_content_tag.erb │ │ ├── _cached_customer.erb │ │ ├── _cached_customer_as.erb │ │ ├── _cached_nested_cached_customer.erb │ │ ├── _cached_set.erb │ │ ├── _changing_priority.html.erb │ │ ├── _changing_priority.json.erb │ │ ├── _content_tag_nested_in_content_tag.erb │ │ ├── _counter.html.erb │ │ ├── _customer.erb │ │ ├── _customer.mobile.erb │ │ ├── _customer_greeting.erb │ │ ├── _customer_with_var.erb │ │ ├── _directory │ │ │ └── _partial_with_locales.html.erb │ │ ├── _first.html.erb │ │ ├── _first.xml.erb │ │ ├── _first_json_partial.json.erb │ │ ├── _first_layer.html.erb │ │ ├── _first_layer.xml.erb │ │ ├── _from_helper.erb │ │ ├── _js_html_fallback.html.erb │ │ ├── _json_change_priority.json.erb │ │ ├── _klass.erb │ │ ├── _label_with_block.erb │ │ ├── _layout_for_block_with_args.html.erb │ │ ├── _layout_for_partial.html.erb │ │ ├── _layout_with_partial_and_yield.html.erb │ │ ├── _local_inspector.html.erb │ │ ├── _multifetch.html.erb │ │ ├── _nested_cached_customer.erb │ │ ├── _object_inspector.erb │ │ ├── _one.html.erb │ │ ├── _partial.erb │ │ ├── _partial.html.erb │ │ ├── _partial.js.erb │ │ ├── _partial_for_use_in_layout.html.erb │ │ ├── _partial_iteration_1.erb │ │ ├── _partial_iteration_2.erb │ │ ├── _partial_name_in_local_assigns.erb │ │ ├── _partial_name_local_variable.erb │ │ ├── _partial_only.erb │ │ ├── _partial_shortcut_with_block_content.html.erb │ │ ├── _partial_with_layout.erb │ │ ├── _partial_with_layout_block_content.erb │ │ ├── _partial_with_layout_block_partial.erb │ │ ├── _partial_with_only_html_version.html.erb │ │ ├── _partial_with_partial.erb │ │ ├── _partial_with_variants.html+grid.erb │ │ ├── _partialhtml.html │ │ ├── _raise.html.erb │ │ ├── _raise_indentation.html.erb │ │ ├── _second.html.erb │ │ ├── _second.xml.erb │ │ ├── _second_json_partial.json.erb │ │ ├── _second_layer.html.erb │ │ ├── _second_layer.xml.erb │ │ ├── _template_not_named_customer.html.erb │ │ ├── _two.html.erb │ │ ├── _utf8_partial.html.erb │ │ ├── _utf8_partial_magic.html.erb │ │ ├── _🍣.erb │ │ ├── basic.html.erb │ │ ├── cache_fragment_inside_render_layout_block_1.html.erb │ │ ├── cache_fragment_inside_render_layout_block_2.html.erb │ │ ├── caching_predicate.html.erb │ │ ├── caching_predicate_outside_cache.html.erb │ │ ├── calling_partial_with_layout.html.erb │ │ ├── change_priority.html.erb │ │ ├── dont_pick_me │ │ ├── dot.directory │ │ │ └── render_template_with_ivar.erb │ │ ├── greeting.xml.erb │ │ ├── hello.builder │ │ ├── hello │ │ │ └── hello.erb │ │ ├── hello_world.da.html.erb │ │ ├── hello_world.erb │ │ ├── hello_world.erb~ │ │ ├── hello_world.html+phone.erb │ │ ├── hello_world.pt-BR.html.erb │ │ ├── hello_world.text+phone.erb │ │ ├── hello_world_with_partial.html.erb │ │ ├── html_template.html.erb │ │ ├── js_html_fallback.js.erb │ │ ├── layout_render_file.erb │ │ ├── layout_render_object.erb │ │ ├── list.erb │ │ ├── malformed │ │ │ ├── malformed.en.html.erb~ │ │ │ ├── malformed.erb~ │ │ │ ├── malformed.html.erb~ │ │ │ └── malformed~ │ │ ├── mixing_formats.html.erb │ │ ├── mixing_formats_deep.html.erb │ │ ├── nested_layout.erb │ │ ├── nested_streaming.erb │ │ ├── nil_return.erb │ │ ├── one.html.erb │ │ ├── render_file_inspect_local_assigns.erb │ │ ├── render_file_unicode_local.erb │ │ ├── render_file_with_locals_and_default.erb │ │ ├── render_file_with_ruby_keyword_locals.erb │ │ ├── render_partial_inside_directory.html.erb │ │ ├── render_template_with_ivar.erb │ │ ├── render_template_with_locals.erb │ │ ├── render_two_partials.html.erb │ │ ├── runtime_error.html.erb │ │ ├── streaming.erb │ │ ├── streaming_buster.erb │ │ ├── streaming_with_locale.erb │ │ ├── sub_template_raise.html.erb │ │ ├── syntax_error.html.erb │ │ ├── template.erb │ │ ├── test_template_with_delegation_reserved_keywords.erb │ │ ├── uncacheable.html.erb │ │ ├── unparseable_runtime_error.html.erb │ │ ├── unparseable_runtime_error_2.html.erb │ │ ├── update_element_with_capture.erb │ │ ├── utf8.html.erb │ │ ├── utf8_magic.html.erb │ │ └── utf8_magic_with_bare_partial.html.erb │ ├── topic.rb │ ├── topics.yml │ ├── topics │ │ └── _topic.html.erb │ ├── translations │ │ └── templates │ │ │ ├── _partial.html.erb │ │ │ ├── array.erb │ │ │ ├── default.erb │ │ │ ├── found.erb │ │ │ ├── found_yield_block.html.erb │ │ │ ├── found_yield_single_argument.html.erb │ │ │ ├── missing.erb │ │ │ ├── missing_with_default_yield_block.erb │ │ │ ├── missing_with_default_yield_single_argument_block.erb │ │ │ ├── missing_yield_block.erb │ │ │ ├── missing_yield_single_argument_block.erb │ │ │ ├── partial_lazy_translation.html.erb │ │ │ └── partial_lazy_translation_block.html.erb │ └── with_format.json.erb │ ├── lib │ ├── controller │ │ └── fake_models.rb │ └── test_renderable.rb │ ├── template │ ├── active_model_helper_test.rb │ ├── asset_tag_helper_test.rb │ ├── atom_feed_helper_test.rb │ ├── capture_helper_test.rb │ ├── compiled_templates_test.rb │ ├── controller_helper_test.rb │ ├── csp_helper_test.rb │ ├── csrf_helper_test.rb │ ├── date_helper_i18n_test.rb │ ├── date_helper_test.rb │ ├── dependency_tracker_test.rb │ ├── digestor_test.rb │ ├── erb │ │ ├── erbubi_test.rb │ │ ├── form_for_test.rb │ │ ├── helper.rb │ │ └── tag_helper_test.rb │ ├── erb_util_test.rb │ ├── file_system_resolver_test.rb │ ├── form_collections_helper_test.rb │ ├── form_helper │ │ └── form_with_test.rb │ ├── form_helper_test.rb │ ├── form_options_helper_i18n_test.rb │ ├── form_options_helper_test.rb │ ├── form_tag_helper_test.rb │ ├── html_test.rb │ ├── javascript_helper_test.rb │ ├── log_subscriber_test.rb │ ├── lookup_context_test.rb │ ├── number_helper_test.rb │ ├── output_safety_helper_test.rb │ ├── partial_iteration_test.rb │ ├── record_identifier_test.rb │ ├── render_test.rb │ ├── resolver_shared_tests.rb │ ├── sanitize_helper_test.rb │ ├── streaming_render_test.rb │ ├── tag_helper_test.rb │ ├── template_error_test.rb │ ├── template_path_test.rb │ ├── template_test.rb │ ├── test_case_test.rb │ ├── test_test.rb │ ├── testing │ │ ├── fixture_resolver_test.rb │ │ └── null_resolver_test.rb │ ├── text_helper_test.rb │ ├── text_test.rb │ ├── translation_helper_test.rb │ └── url_helper_test.rb │ └── ujs │ ├── config.ru │ ├── public │ └── test │ │ ├── .eslintrc.yml │ │ ├── call-ajax.js │ │ ├── call-remote-callbacks.js │ │ ├── call-remote.js │ │ ├── csrf-refresh.js │ │ ├── csrf-token.js │ │ ├── data-confirm.js │ │ ├── data-disable-with.js │ │ ├── data-disable.js │ │ ├── data-method.js │ │ ├── data-remote.js │ │ ├── override.js │ │ └── settings.js │ ├── server.rb │ └── src │ ├── attach-bindings.js │ └── test.js ├── activejob ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── activejob.gemspec ├── bin │ └── test ├── lib │ ├── active_job.rb │ ├── active_job │ │ ├── arguments.rb │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── configured_job.rb │ │ ├── core.rb │ │ ├── deprecator.rb │ │ ├── enqueuing.rb │ │ ├── exceptions.rb │ │ ├── execution.rb │ │ ├── gem_version.rb │ │ ├── instrumentation.rb │ │ ├── log_subscriber.rb │ │ ├── logging.rb │ │ ├── queue_adapter.rb │ │ ├── queue_adapters.rb │ │ ├── queue_adapters │ │ │ ├── async_adapter.rb │ │ │ ├── backburner_adapter.rb │ │ │ ├── delayed_job_adapter.rb │ │ │ ├── inline_adapter.rb │ │ │ ├── queue_classic_adapter.rb │ │ │ ├── resque_adapter.rb │ │ │ ├── sidekiq_adapter.rb │ │ │ ├── sneakers_adapter.rb │ │ │ ├── sucker_punch_adapter.rb │ │ │ └── test_adapter.rb │ │ ├── queue_name.rb │ │ ├── queue_priority.rb │ │ ├── railtie.rb │ │ ├── serializers.rb │ │ ├── serializers │ │ │ ├── big_decimal_serializer.rb │ │ │ ├── date_serializer.rb │ │ │ ├── date_time_serializer.rb │ │ │ ├── duration_serializer.rb │ │ │ ├── module_serializer.rb │ │ │ ├── object_serializer.rb │ │ │ ├── range_serializer.rb │ │ │ ├── symbol_serializer.rb │ │ │ ├── time_object_serializer.rb │ │ │ ├── time_serializer.rb │ │ │ └── time_with_zone_serializer.rb │ │ ├── test_case.rb │ │ ├── test_helper.rb │ │ ├── timezones.rb │ │ ├── translation.rb │ │ └── version.rb │ └── rails │ │ └── generators │ │ └── job │ │ ├── USAGE │ │ ├── job_generator.rb │ │ └── templates │ │ ├── application_job.rb.tt │ │ └── job.rb.tt └── test │ ├── adapters │ ├── async.rb │ ├── backburner.rb │ ├── delayed_job.rb │ ├── inline.rb │ ├── queue_classic.rb │ ├── resque.rb │ ├── sidekiq.rb │ ├── sneakers.rb │ ├── sucker_punch.rb │ └── test.rb │ ├── cases │ ├── adapter_test.rb │ ├── argument_serialization_test.rb │ ├── callbacks_test.rb │ ├── delayed_job_adapter_test.rb │ ├── exceptions_test.rb │ ├── job_serialization_test.rb │ ├── logging_test.rb │ ├── queue_adapter_test.rb │ ├── queue_naming_test.rb │ ├── queue_priority_test.rb │ ├── queuing_test.rb │ ├── rescue_test.rb │ ├── serializers_test.rb │ ├── test_case_test.rb │ ├── test_helper_test.rb │ ├── timezones_test.rb │ └── translation_test.rb │ ├── helper.rb │ ├── integration │ └── queuing_test.rb │ ├── jobs │ ├── abort_before_enqueue_job.rb │ ├── application_job.rb │ ├── arguments_round_trip_job.rb │ ├── callback_job.rb │ ├── configuration_job.rb │ ├── disable_log_job.rb │ ├── enqueue_error_job.rb │ ├── gid_job.rb │ ├── hello_job.rb │ ├── inherited_job.rb │ ├── kwargs_job.rb │ ├── logging_job.rb │ ├── multiple_kwargs_job.rb │ ├── nested_job.rb │ ├── overridden_logging_job.rb │ ├── prefixed_job.rb │ ├── provider_jid_job.rb │ ├── queue_adapter_job.rb │ ├── queue_as_job.rb │ ├── raising_job.rb │ ├── rescue_job.rb │ ├── retry_job.rb │ ├── timezone_dependent_job.rb │ └── translated_hello_job.rb │ ├── models │ └── person.rb │ └── support │ ├── backburner │ └── inline.rb │ ├── delayed_job │ └── delayed │ │ ├── backend │ │ └── test.rb │ │ └── serialization │ │ └── test.rb │ ├── integration │ ├── adapters │ │ ├── async.rb │ │ ├── backburner.rb │ │ ├── delayed_job.rb │ │ ├── inline.rb │ │ ├── queue_classic.rb │ │ ├── resque.rb │ │ ├── sidekiq.rb │ │ ├── sneakers.rb │ │ └── sucker_punch.rb │ ├── dummy_app_template.rb │ ├── helper.rb │ ├── jobs_manager.rb │ └── test_case_helpers.rb │ ├── job_buffer.rb │ ├── queue_classic │ └── inline.rb │ ├── sneakers │ └── inline.rb │ └── stubs │ └── strong_parameters.rb ├── activemodel ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── activemodel.gemspec ├── bin │ └── test ├── lib │ ├── active_model.rb │ └── active_model │ │ ├── access.rb │ │ ├── api.rb │ │ ├── attribute.rb │ │ ├── attribute │ │ └── user_provided_default.rb │ │ ├── attribute_assignment.rb │ │ ├── attribute_methods.rb │ │ ├── attribute_mutation_tracker.rb │ │ ├── attribute_registration.rb │ │ ├── attribute_set.rb │ │ ├── attribute_set │ │ ├── builder.rb │ │ └── yaml_encoder.rb │ │ ├── attributes.rb │ │ ├── callbacks.rb │ │ ├── conversion.rb │ │ ├── deprecator.rb │ │ ├── dirty.rb │ │ ├── error.rb │ │ ├── errors.rb │ │ ├── forbidden_attributes_protection.rb │ │ ├── gem_version.rb │ │ ├── lint.rb │ │ ├── locale │ │ └── en.yml │ │ ├── model.rb │ │ ├── naming.rb │ │ ├── nested_error.rb │ │ ├── railtie.rb │ │ ├── secure_password.rb │ │ ├── serialization.rb │ │ ├── serializers │ │ └── json.rb │ │ ├── translation.rb │ │ ├── type.rb │ │ ├── type │ │ ├── big_integer.rb │ │ ├── binary.rb │ │ ├── boolean.rb │ │ ├── date.rb │ │ ├── date_time.rb │ │ ├── decimal.rb │ │ ├── float.rb │ │ ├── helpers.rb │ │ ├── helpers │ │ │ ├── accepts_multiparameter_time.rb │ │ │ ├── mutable.rb │ │ │ ├── numeric.rb │ │ │ ├── time_value.rb │ │ │ └── timezone.rb │ │ ├── immutable_string.rb │ │ ├── integer.rb │ │ ├── registry.rb │ │ ├── serialize_cast_value.rb │ │ ├── string.rb │ │ ├── time.rb │ │ └── value.rb │ │ ├── validations.rb │ │ ├── validations │ │ ├── absence.rb │ │ ├── acceptance.rb │ │ ├── callbacks.rb │ │ ├── clusivity.rb │ │ ├── comparability.rb │ │ ├── comparison.rb │ │ ├── confirmation.rb │ │ ├── exclusion.rb │ │ ├── format.rb │ │ ├── helper_methods.rb │ │ ├── inclusion.rb │ │ ├── length.rb │ │ ├── numericality.rb │ │ ├── presence.rb │ │ ├── resolve_value.rb │ │ ├── validates.rb │ │ └── with.rb │ │ ├── validator.rb │ │ └── version.rb └── test │ ├── cases │ ├── access_test.rb │ ├── api_test.rb │ ├── attribute_assignment_test.rb │ ├── attribute_methods_test.rb │ ├── attribute_registration_test.rb │ ├── attribute_set_test.rb │ ├── attribute_test.rb │ ├── attributes_dirty_test.rb │ ├── attributes_test.rb │ ├── callbacks_test.rb │ ├── conversion_test.rb │ ├── dirty_test.rb │ ├── error_test.rb │ ├── errors_test.rb │ ├── forbidden_attributes_protection_test.rb │ ├── helper.rb │ ├── lint_test.rb │ ├── model_test.rb │ ├── naming_test.rb │ ├── nested_error_test.rb │ ├── railtie_test.rb │ ├── secure_password_test.rb │ ├── serialization_test.rb │ ├── serializers │ │ └── json_serialization_test.rb │ ├── translation_test.rb │ ├── type │ │ ├── big_integer_test.rb │ │ ├── binary_test.rb │ │ ├── boolean_test.rb │ │ ├── date_test.rb │ │ ├── date_time_test.rb │ │ ├── decimal_test.rb │ │ ├── float_test.rb │ │ ├── immutable_string_test.rb │ │ ├── integer_test.rb │ │ ├── registry_test.rb │ │ ├── serialize_cast_value_test.rb │ │ ├── string_test.rb │ │ ├── time_test.rb │ │ └── value_test.rb │ ├── type_test.rb │ ├── validations │ │ ├── absence_validation_test.rb │ │ ├── acceptance_validation_test.rb │ │ ├── callbacks_test.rb │ │ ├── comparison_validation_test.rb │ │ ├── conditional_validation_test.rb │ │ ├── confirmation_validation_test.rb │ │ ├── exclusion_validation_test.rb │ │ ├── format_validation_test.rb │ │ ├── i18n_generate_message_validation_test.rb │ │ ├── i18n_validation_test.rb │ │ ├── inclusion_validation_test.rb │ │ ├── length_validation_test.rb │ │ ├── numericality_validation_test.rb │ │ ├── presence_validation_test.rb │ │ ├── validates_test.rb │ │ ├── validations_context_test.rb │ │ └── with_validation_test.rb │ └── validations_test.rb │ ├── models │ ├── account.rb │ ├── blog_post.rb │ ├── contact.rb │ ├── custom_reader.rb │ ├── helicopter.rb │ ├── person.rb │ ├── person_with_validator.rb │ ├── reply.rb │ ├── sheep.rb │ ├── topic.rb │ ├── track_back.rb │ ├── user.rb │ └── visitor.rb │ └── validators │ ├── email_validator.rb │ └── namespace │ └── email_validator.rb ├── activerecord ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── RUNNING_UNIT_TESTS.rdoc ├── Rakefile ├── activerecord.gemspec ├── bin │ └── test ├── examples │ ├── performance.rb │ └── simple.rb ├── lib │ ├── active_record.rb │ ├── active_record │ │ ├── aggregations.rb │ │ ├── association_relation.rb │ │ ├── associations.rb │ │ ├── associations │ │ │ ├── alias_tracker.rb │ │ │ ├── association.rb │ │ │ ├── association_scope.rb │ │ │ ├── belongs_to_association.rb │ │ │ ├── belongs_to_polymorphic_association.rb │ │ │ ├── builder │ │ │ │ ├── association.rb │ │ │ │ ├── belongs_to.rb │ │ │ │ ├── collection_association.rb │ │ │ │ ├── has_and_belongs_to_many.rb │ │ │ │ ├── has_many.rb │ │ │ │ ├── has_one.rb │ │ │ │ └── singular_association.rb │ │ │ ├── collection_association.rb │ │ │ ├── collection_proxy.rb │ │ │ ├── disable_joins_association_scope.rb │ │ │ ├── foreign_association.rb │ │ │ ├── has_many_association.rb │ │ │ ├── has_many_through_association.rb │ │ │ ├── has_one_association.rb │ │ │ ├── has_one_through_association.rb │ │ │ ├── join_dependency.rb │ │ │ ├── join_dependency │ │ │ │ ├── join_association.rb │ │ │ │ ├── join_base.rb │ │ │ │ └── join_part.rb │ │ │ ├── preloader.rb │ │ │ ├── preloader │ │ │ │ ├── association.rb │ │ │ │ ├── batch.rb │ │ │ │ ├── branch.rb │ │ │ │ └── through_association.rb │ │ │ ├── singular_association.rb │ │ │ └── through_association.rb │ │ ├── asynchronous_queries_tracker.rb │ │ ├── attribute_assignment.rb │ │ ├── attribute_methods.rb │ │ ├── attribute_methods │ │ │ ├── before_type_cast.rb │ │ │ ├── dirty.rb │ │ │ ├── primary_key.rb │ │ │ ├── query.rb │ │ │ ├── read.rb │ │ │ ├── serialization.rb │ │ │ ├── time_zone_conversion.rb │ │ │ └── write.rb │ │ ├── attributes.rb │ │ ├── autosave_association.rb │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── coders │ │ │ ├── column_serializer.rb │ │ │ ├── json.rb │ │ │ └── yaml_column.rb │ │ ├── connection_adapters.rb │ │ ├── connection_adapters │ │ │ ├── abstract │ │ │ │ ├── connection_handler.rb │ │ │ │ ├── connection_pool.rb │ │ │ │ ├── connection_pool │ │ │ │ │ ├── queue.rb │ │ │ │ │ └── reaper.rb │ │ │ │ ├── database_limits.rb │ │ │ │ ├── database_statements.rb │ │ │ │ ├── query_cache.rb │ │ │ │ ├── quoting.rb │ │ │ │ ├── savepoints.rb │ │ │ │ ├── schema_creation.rb │ │ │ │ ├── schema_definitions.rb │ │ │ │ ├── schema_dumper.rb │ │ │ │ ├── schema_statements.rb │ │ │ │ └── transaction.rb │ │ │ ├── abstract_adapter.rb │ │ │ ├── abstract_mysql_adapter.rb │ │ │ ├── column.rb │ │ │ ├── deduplicable.rb │ │ │ ├── mysql │ │ │ │ ├── column.rb │ │ │ │ ├── database_statements.rb │ │ │ │ ├── explain_pretty_printer.rb │ │ │ │ ├── quoting.rb │ │ │ │ ├── schema_creation.rb │ │ │ │ ├── schema_definitions.rb │ │ │ │ ├── schema_dumper.rb │ │ │ │ ├── schema_statements.rb │ │ │ │ └── type_metadata.rb │ │ │ ├── mysql2 │ │ │ │ └── database_statements.rb │ │ │ ├── mysql2_adapter.rb │ │ │ ├── pool_config.rb │ │ │ ├── pool_manager.rb │ │ │ ├── postgresql │ │ │ │ ├── column.rb │ │ │ │ ├── database_statements.rb │ │ │ │ ├── explain_pretty_printer.rb │ │ │ │ ├── oid.rb │ │ │ │ ├── oid │ │ │ │ │ ├── array.rb │ │ │ │ │ ├── bit.rb │ │ │ │ │ ├── bit_varying.rb │ │ │ │ │ ├── bytea.rb │ │ │ │ │ ├── cidr.rb │ │ │ │ │ ├── date.rb │ │ │ │ │ ├── date_time.rb │ │ │ │ │ ├── decimal.rb │ │ │ │ │ ├── enum.rb │ │ │ │ │ ├── hstore.rb │ │ │ │ │ ├── inet.rb │ │ │ │ │ ├── interval.rb │ │ │ │ │ ├── jsonb.rb │ │ │ │ │ ├── legacy_point.rb │ │ │ │ │ ├── macaddr.rb │ │ │ │ │ ├── money.rb │ │ │ │ │ ├── oid.rb │ │ │ │ │ ├── point.rb │ │ │ │ │ ├── range.rb │ │ │ │ │ ├── specialized_string.rb │ │ │ │ │ ├── timestamp.rb │ │ │ │ │ ├── timestamp_with_time_zone.rb │ │ │ │ │ ├── type_map_initializer.rb │ │ │ │ │ ├── uuid.rb │ │ │ │ │ ├── vector.rb │ │ │ │ │ └── xml.rb │ │ │ │ ├── quoting.rb │ │ │ │ ├── referential_integrity.rb │ │ │ │ ├── schema_creation.rb │ │ │ │ ├── schema_definitions.rb │ │ │ │ ├── schema_dumper.rb │ │ │ │ ├── schema_statements.rb │ │ │ │ ├── type_metadata.rb │ │ │ │ └── utils.rb │ │ │ ├── postgresql_adapter.rb │ │ │ ├── schema_cache.rb │ │ │ ├── sql_type_metadata.rb │ │ │ ├── sqlite3 │ │ │ │ ├── column.rb │ │ │ │ ├── database_statements.rb │ │ │ │ ├── explain_pretty_printer.rb │ │ │ │ ├── quoting.rb │ │ │ │ ├── schema_creation.rb │ │ │ │ ├── schema_definitions.rb │ │ │ │ ├── schema_dumper.rb │ │ │ │ └── schema_statements.rb │ │ │ ├── sqlite3_adapter.rb │ │ │ ├── statement_pool.rb │ │ │ ├── trilogy │ │ │ │ ├── database_statements.rb │ │ │ │ ├── errors.rb │ │ │ │ └── lost_connection_exception_translator.rb │ │ │ └── trilogy_adapter.rb │ │ ├── connection_handling.rb │ │ ├── core.rb │ │ ├── counter_cache.rb │ │ ├── database_configurations.rb │ │ ├── database_configurations │ │ │ ├── connection_url_resolver.rb │ │ │ ├── database_config.rb │ │ │ ├── hash_config.rb │ │ │ └── url_config.rb │ │ ├── delegated_type.rb │ │ ├── deprecator.rb │ │ ├── destroy_association_async_job.rb │ │ ├── disable_joins_association_relation.rb │ │ ├── dynamic_matchers.rb │ │ ├── encryption.rb │ │ ├── encryption │ │ │ ├── auto_filtered_parameters.rb │ │ │ ├── cipher.rb │ │ │ ├── cipher │ │ │ │ └── aes256_gcm.rb │ │ │ ├── config.rb │ │ │ ├── configurable.rb │ │ │ ├── context.rb │ │ │ ├── contexts.rb │ │ │ ├── derived_secret_key_provider.rb │ │ │ ├── deterministic_key_provider.rb │ │ │ ├── encryptable_record.rb │ │ │ ├── encrypted_attribute_type.rb │ │ │ ├── encrypted_fixtures.rb │ │ │ ├── encrypting_only_encryptor.rb │ │ │ ├── encryptor.rb │ │ │ ├── envelope_encryption_key_provider.rb │ │ │ ├── errors.rb │ │ │ ├── extended_deterministic_queries.rb │ │ │ ├── extended_deterministic_uniqueness_validator.rb │ │ │ ├── key.rb │ │ │ ├── key_generator.rb │ │ │ ├── key_provider.rb │ │ │ ├── message.rb │ │ │ ├── message_serializer.rb │ │ │ ├── null_encryptor.rb │ │ │ ├── properties.rb │ │ │ ├── read_only_null_encryptor.rb │ │ │ └── scheme.rb │ │ ├── enum.rb │ │ ├── errors.rb │ │ ├── explain.rb │ │ ├── explain_registry.rb │ │ ├── explain_subscriber.rb │ │ ├── fixture_set │ │ │ ├── file.rb │ │ │ ├── model_metadata.rb │ │ │ ├── render_context.rb │ │ │ ├── table_row.rb │ │ │ └── table_rows.rb │ │ ├── fixtures.rb │ │ ├── future_result.rb │ │ ├── gem_version.rb │ │ ├── inheritance.rb │ │ ├── insert_all.rb │ │ ├── integration.rb │ │ ├── internal_metadata.rb │ │ ├── legacy_yaml_adapter.rb │ │ ├── locale │ │ │ └── en.yml │ │ ├── locking │ │ │ ├── optimistic.rb │ │ │ └── pessimistic.rb │ │ ├── log_subscriber.rb │ │ ├── marshalling.rb │ │ ├── message_pack.rb │ │ ├── middleware │ │ │ ├── database_selector.rb │ │ │ ├── database_selector │ │ │ │ ├── resolver.rb │ │ │ │ └── resolver │ │ │ │ │ └── session.rb │ │ │ └── shard_selector.rb │ │ ├── migration.rb │ │ ├── migration │ │ │ ├── command_recorder.rb │ │ │ ├── compatibility.rb │ │ │ ├── default_strategy.rb │ │ │ ├── execution_strategy.rb │ │ │ └── join_table.rb │ │ ├── model_schema.rb │ │ ├── nested_attributes.rb │ │ ├── no_touching.rb │ │ ├── normalization.rb │ │ ├── persistence.rb │ │ ├── promise.rb │ │ ├── query_cache.rb │ │ ├── query_logs.rb │ │ ├── query_logs_formatter.rb │ │ ├── querying.rb │ │ ├── railtie.rb │ │ ├── railties │ │ │ ├── console_sandbox.rb │ │ │ ├── controller_runtime.rb │ │ │ ├── databases.rake │ │ │ └── job_runtime.rb │ │ ├── readonly_attributes.rb │ │ ├── reflection.rb │ │ ├── relation.rb │ │ ├── relation │ │ │ ├── batches.rb │ │ │ ├── batches │ │ │ │ └── batch_enumerator.rb │ │ │ ├── calculations.rb │ │ │ ├── delegation.rb │ │ │ ├── finder_methods.rb │ │ │ ├── from_clause.rb │ │ │ ├── merger.rb │ │ │ ├── predicate_builder.rb │ │ │ ├── predicate_builder │ │ │ │ ├── array_handler.rb │ │ │ │ ├── association_query_value.rb │ │ │ │ ├── basic_object_handler.rb │ │ │ │ ├── polymorphic_array_value.rb │ │ │ │ ├── range_handler.rb │ │ │ │ └── relation_handler.rb │ │ │ ├── query_attribute.rb │ │ │ ├── query_methods.rb │ │ │ ├── record_fetch_warning.rb │ │ │ ├── spawn_methods.rb │ │ │ └── where_clause.rb │ │ ├── result.rb │ │ ├── runtime_registry.rb │ │ ├── sanitization.rb │ │ ├── schema.rb │ │ ├── schema_dumper.rb │ │ ├── schema_migration.rb │ │ ├── scoping.rb │ │ ├── scoping │ │ │ ├── default.rb │ │ │ └── named.rb │ │ ├── secure_password.rb │ │ ├── secure_token.rb │ │ ├── serialization.rb │ │ ├── signed_id.rb │ │ ├── statement_cache.rb │ │ ├── store.rb │ │ ├── suppressor.rb │ │ ├── table_metadata.rb │ │ ├── tasks │ │ │ ├── database_tasks.rb │ │ │ ├── mysql_database_tasks.rb │ │ │ ├── postgresql_database_tasks.rb │ │ │ └── sqlite_database_tasks.rb │ │ ├── test_databases.rb │ │ ├── test_fixtures.rb │ │ ├── timestamp.rb │ │ ├── token_for.rb │ │ ├── touch_later.rb │ │ ├── transactions.rb │ │ ├── translation.rb │ │ ├── type.rb │ │ ├── type │ │ │ ├── adapter_specific_registry.rb │ │ │ ├── date.rb │ │ │ ├── date_time.rb │ │ │ ├── decimal_without_scale.rb │ │ │ ├── hash_lookup_type_map.rb │ │ │ ├── internal │ │ │ │ └── timezone.rb │ │ │ ├── json.rb │ │ │ ├── serialized.rb │ │ │ ├── text.rb │ │ │ ├── time.rb │ │ │ ├── type_map.rb │ │ │ └── unsigned_integer.rb │ │ ├── type_caster.rb │ │ ├── type_caster │ │ │ ├── connection.rb │ │ │ └── map.rb │ │ ├── validations.rb │ │ ├── validations │ │ │ ├── absence.rb │ │ │ ├── associated.rb │ │ │ ├── length.rb │ │ │ ├── numericality.rb │ │ │ ├── presence.rb │ │ │ └── uniqueness.rb │ │ └── version.rb │ ├── arel.rb │ ├── arel │ │ ├── alias_predication.rb │ │ ├── attributes │ │ │ └── attribute.rb │ │ ├── collectors │ │ │ ├── bind.rb │ │ │ ├── composite.rb │ │ │ ├── plain_string.rb │ │ │ ├── sql_string.rb │ │ │ └── substitute_binds.rb │ │ ├── crud.rb │ │ ├── delete_manager.rb │ │ ├── errors.rb │ │ ├── expressions.rb │ │ ├── factory_methods.rb │ │ ├── filter_predications.rb │ │ ├── insert_manager.rb │ │ ├── math.rb │ │ ├── nodes.rb │ │ ├── nodes │ │ │ ├── and.rb │ │ │ ├── ascending.rb │ │ │ ├── binary.rb │ │ │ ├── bind_param.rb │ │ │ ├── bound_sql_literal.rb │ │ │ ├── case.rb │ │ │ ├── casted.rb │ │ │ ├── comment.rb │ │ │ ├── count.rb │ │ │ ├── cte.rb │ │ │ ├── delete_statement.rb │ │ │ ├── descending.rb │ │ │ ├── equality.rb │ │ │ ├── extract.rb │ │ │ ├── false.rb │ │ │ ├── filter.rb │ │ │ ├── fragments.rb │ │ │ ├── full_outer_join.rb │ │ │ ├── function.rb │ │ │ ├── grouping.rb │ │ │ ├── homogeneous_in.rb │ │ │ ├── in.rb │ │ │ ├── infix_operation.rb │ │ │ ├── inner_join.rb │ │ │ ├── insert_statement.rb │ │ │ ├── join_source.rb │ │ │ ├── leading_join.rb │ │ │ ├── matches.rb │ │ │ ├── named_function.rb │ │ │ ├── node.rb │ │ │ ├── node_expression.rb │ │ │ ├── ordering.rb │ │ │ ├── outer_join.rb │ │ │ ├── over.rb │ │ │ ├── regexp.rb │ │ │ ├── right_outer_join.rb │ │ │ ├── select_core.rb │ │ │ ├── select_statement.rb │ │ │ ├── sql_literal.rb │ │ │ ├── string_join.rb │ │ │ ├── table_alias.rb │ │ │ ├── terminal.rb │ │ │ ├── true.rb │ │ │ ├── unary.rb │ │ │ ├── unary_operation.rb │ │ │ ├── unqualified_column.rb │ │ │ ├── update_statement.rb │ │ │ ├── values_list.rb │ │ │ ├── window.rb │ │ │ └── with.rb │ │ ├── order_predications.rb │ │ ├── predications.rb │ │ ├── select_manager.rb │ │ ├── table.rb │ │ ├── tree_manager.rb │ │ ├── update_manager.rb │ │ ├── visitors.rb │ │ ├── visitors │ │ │ ├── dot.rb │ │ │ ├── mysql.rb │ │ │ ├── postgresql.rb │ │ │ ├── sqlite.rb │ │ │ ├── to_sql.rb │ │ │ └── visitor.rb │ │ └── window_predications.rb │ └── rails │ │ └── generators │ │ ├── active_record.rb │ │ └── active_record │ │ ├── application_record │ │ ├── USAGE │ │ ├── application_record_generator.rb │ │ └── templates │ │ │ └── application_record.rb.tt │ │ ├── migration.rb │ │ ├── migration │ │ ├── migration_generator.rb │ │ └── templates │ │ │ ├── create_table_migration.rb.tt │ │ │ └── migration.rb.tt │ │ ├── model │ │ ├── USAGE │ │ ├── model_generator.rb │ │ └── templates │ │ │ ├── abstract_base_class.rb.tt │ │ │ ├── model.rb.tt │ │ │ └── module.rb.tt │ │ └── multi_db │ │ ├── multi_db_generator.rb │ │ └── templates │ │ └── multi_db.rb.tt └── test │ ├── active_record │ └── connection_adapters │ │ └── fake_adapter.rb │ ├── activejob │ ├── destroy_association_async_job_test.rb │ ├── destroy_association_async_test.rb │ ├── helper.rb │ ├── job_runtime_test.rb │ └── unloadable_base_job.rb │ ├── assets │ ├── example.log │ ├── flowers.jpg │ ├── schema_dump_5_1.yml │ └── test.txt │ ├── cases │ ├── active_record_schema_test.rb │ ├── adapter_prevent_writes_test.rb │ ├── adapter_test.rb │ ├── adapters │ │ ├── abstract_mysql_adapter │ │ │ ├── active_schema_test.rb │ │ │ ├── adapter_prevent_writes_test.rb │ │ │ ├── auto_increment_test.rb │ │ │ ├── bind_parameter_test.rb │ │ │ ├── case_sensitivity_test.rb │ │ │ ├── charset_collation_test.rb │ │ │ ├── connection_test.rb │ │ │ ├── count_deleted_rows_with_lock_test.rb │ │ │ ├── datetime_precision_quoting_test.rb │ │ │ ├── json_test.rb │ │ │ ├── mysql_boolean_test.rb │ │ │ ├── mysql_enum_test.rb │ │ │ ├── mysql_explain_test.rb │ │ │ ├── nested_deadlock_test.rb │ │ │ ├── optimizer_hints_test.rb │ │ │ ├── quoting_test.rb │ │ │ ├── schema_migrations_test.rb │ │ │ ├── schema_test.rb │ │ │ ├── set_test.rb │ │ │ ├── sp_test.rb │ │ │ ├── sql_types_test.rb │ │ │ ├── table_options_test.rb │ │ │ ├── transaction_test.rb │ │ │ ├── unsigned_type_test.rb │ │ │ └── virtual_column_test.rb │ │ ├── mysql2 │ │ │ ├── dbconsole_test.rb │ │ │ ├── mysql2_adapter_test.rb │ │ │ └── mysql2_rake_test.rb │ │ ├── postgresql │ │ │ ├── active_schema_test.rb │ │ │ ├── array_test.rb │ │ │ ├── bind_parameter_test.rb │ │ │ ├── bit_string_test.rb │ │ │ ├── bytea_test.rb │ │ │ ├── case_insensitive_test.rb │ │ │ ├── change_schema_test.rb │ │ │ ├── cidr_test.rb │ │ │ ├── citext_test.rb │ │ │ ├── collation_test.rb │ │ │ ├── composite_test.rb │ │ │ ├── connection_test.rb │ │ │ ├── create_unlogged_tables_test.rb │ │ │ ├── datatype_test.rb │ │ │ ├── date_test.rb │ │ │ ├── dbconsole_test.rb │ │ │ ├── domain_test.rb │ │ │ ├── enum_test.rb │ │ │ ├── explain_test.rb │ │ │ ├── extension_migration_test.rb │ │ │ ├── foreign_table_test.rb │ │ │ ├── full_text_test.rb │ │ │ ├── geometric_test.rb │ │ │ ├── hstore_test.rb │ │ │ ├── infinity_test.rb │ │ │ ├── integer_test.rb │ │ │ ├── interval_test.rb │ │ │ ├── invertible_migration_test.rb │ │ │ ├── json_test.rb │ │ │ ├── ltree_test.rb │ │ │ ├── money_test.rb │ │ │ ├── network_test.rb │ │ │ ├── numbers_test.rb │ │ │ ├── optimizer_hints_test.rb │ │ │ ├── partitions_test.rb │ │ │ ├── postgresql_adapter_prevent_writes_test.rb │ │ │ ├── postgresql_adapter_test.rb │ │ │ ├── postgresql_rake_test.rb │ │ │ ├── prepared_statements_disabled_test.rb │ │ │ ├── quoting_test.rb │ │ │ ├── range_test.rb │ │ │ ├── referential_integrity_test.rb │ │ │ ├── rename_table_test.rb │ │ │ ├── schema_authorization_test.rb │ │ │ ├── schema_test.rb │ │ │ ├── serial_test.rb │ │ │ ├── statement_pool_test.rb │ │ │ ├── timestamp_test.rb │ │ │ ├── transaction_nested_test.rb │ │ │ ├── transaction_test.rb │ │ │ ├── type_lookup_test.rb │ │ │ ├── utils_test.rb │ │ │ ├── uuid_test.rb │ │ │ ├── virtual_column_test.rb │ │ │ └── xml_test.rb │ │ ├── sqlite3 │ │ │ ├── bind_parameter_test.rb │ │ │ ├── collation_test.rb │ │ │ ├── copy_table_test.rb │ │ │ ├── dbconsole_test.rb │ │ │ ├── explain_test.rb │ │ │ ├── json_test.rb │ │ │ ├── quoting_test.rb │ │ │ ├── sqlite3_adapter_prevent_writes_test.rb │ │ │ ├── sqlite3_adapter_test.rb │ │ │ ├── sqlite3_create_folder_test.rb │ │ │ ├── sqlite_rake_test.rb │ │ │ ├── statement_pool_test.rb │ │ │ └── transaction_test.rb │ │ └── trilogy │ │ │ ├── dbconsole_test.rb │ │ │ ├── trilogy_adapter_test.rb │ │ │ └── trilogy_rake_test.rb │ ├── aggregations_test.rb │ ├── annotate_test.rb │ ├── arel │ │ ├── attributes │ │ │ ├── attribute_test.rb │ │ │ └── math_test.rb │ │ ├── attributes_test.rb │ │ ├── collectors │ │ │ ├── bind_test.rb │ │ │ ├── composite_test.rb │ │ │ ├── sql_string_test.rb │ │ │ └── substitute_bind_collector_test.rb │ │ ├── crud_test.rb │ │ ├── delete_manager_test.rb │ │ ├── factory_methods_test.rb │ │ ├── helper.rb │ │ ├── insert_manager_test.rb │ │ ├── nodes │ │ │ ├── and_test.rb │ │ │ ├── as_test.rb │ │ │ ├── ascending_test.rb │ │ │ ├── bin_test.rb │ │ │ ├── binary_test.rb │ │ │ ├── bind_param_test.rb │ │ │ ├── bound_sql_literal_test.rb │ │ │ ├── case_test.rb │ │ │ ├── casted_test.rb │ │ │ ├── comment_test.rb │ │ │ ├── count_test.rb │ │ │ ├── cte_test.rb │ │ │ ├── delete_statement_test.rb │ │ │ ├── descending_test.rb │ │ │ ├── distinct_test.rb │ │ │ ├── equality_test.rb │ │ │ ├── extract_test.rb │ │ │ ├── false_test.rb │ │ │ ├── filter_test.rb │ │ │ ├── fragments_test.rb │ │ │ ├── grouping_test.rb │ │ │ ├── homogeneous_in_test.rb │ │ │ ├── infix_operation_test.rb │ │ │ ├── insert_statement_test.rb │ │ │ ├── named_function_test.rb │ │ │ ├── node_test.rb │ │ │ ├── not_test.rb │ │ │ ├── or_test.rb │ │ │ ├── over_test.rb │ │ │ ├── select_core_test.rb │ │ │ ├── select_statement_test.rb │ │ │ ├── sql_literal_test.rb │ │ │ ├── sum_test.rb │ │ │ ├── table_alias_test.rb │ │ │ ├── true_test.rb │ │ │ ├── unary_operation_test.rb │ │ │ ├── update_statement_test.rb │ │ │ └── window_test.rb │ │ ├── nodes_test.rb │ │ ├── select_manager_test.rb │ │ ├── support │ │ │ └── fake_record.rb │ │ ├── table_test.rb │ │ ├── update_manager_test.rb │ │ └── visitors │ │ │ ├── dispatch_contamination_test.rb │ │ │ ├── dot_test.rb │ │ │ ├── mysql_test.rb │ │ │ ├── postgres_test.rb │ │ │ ├── sqlite_test.rb │ │ │ └── to_sql_test.rb │ ├── associations │ │ ├── belongs_to_associations_test.rb │ │ ├── bidirectional_destroy_dependencies_test.rb │ │ ├── callbacks_test.rb │ │ ├── cascaded_eager_loading_test.rb │ │ ├── eager_load_includes_full_sti_class_test.rb │ │ ├── eager_load_nested_include_test.rb │ │ ├── eager_singularization_test.rb │ │ ├── eager_test.rb │ │ ├── extension_test.rb │ │ ├── has_and_belongs_to_many_associations_test.rb │ │ ├── has_many_associations_test.rb │ │ ├── has_many_through_associations_test.rb │ │ ├── has_many_through_disable_joins_associations_test.rb │ │ ├── has_one_associations_test.rb │ │ ├── has_one_through_associations_test.rb │ │ ├── has_one_through_disable_joins_associations_test.rb │ │ ├── inner_join_association_test.rb │ │ ├── inverse_associations_test.rb │ │ ├── join_model_test.rb │ │ ├── left_outer_join_association_test.rb │ │ ├── nested_through_associations_test.rb │ │ └── required_test.rb │ ├── associations_test.rb │ ├── asynchronous_queries_test.rb │ ├── attribute_methods │ │ └── read_test.rb │ ├── attribute_methods_test.rb │ ├── attributes_test.rb │ ├── autosave_association_test.rb │ ├── base_prevent_writes_test.rb │ ├── base_test.rb │ ├── batches_test.rb │ ├── binary_test.rb │ ├── bind_parameter_test.rb │ ├── boolean_test.rb │ ├── cache_key_test.rb │ ├── calculations_test.rb │ ├── callbacks_test.rb │ ├── clone_test.rb │ ├── coders │ │ ├── json_test.rb │ │ └── yaml_column_test.rb │ ├── collection_cache_key_test.rb │ ├── column_alias_test.rb │ ├── column_definition_test.rb │ ├── comment_test.rb │ ├── connection_adapters │ │ ├── adapter_leasing_test.rb │ │ ├── connection_handler_test.rb │ │ ├── connection_handlers_multi_db_test.rb │ │ ├── connection_handlers_multi_pool_config_test.rb │ │ ├── connection_handlers_sharding_db_test.rb │ │ ├── connection_swapping_nested_test.rb │ │ ├── merge_and_resolve_default_url_config_test.rb │ │ ├── mysql_type_lookup_test.rb │ │ ├── schema_cache_test.rb │ │ ├── standalone_connection_test.rb │ │ └── type_lookup_test.rb │ ├── connection_management_test.rb │ ├── connection_pool_test.rb │ ├── core_test.rb │ ├── counter_cache_test.rb │ ├── custom_locking_test.rb │ ├── database_configurations │ │ ├── hash_config_test.rb │ │ └── resolver_test.rb │ ├── database_configurations_test.rb │ ├── database_selector_test.rb │ ├── database_statements_test.rb │ ├── date_test.rb │ ├── date_time_precision_test.rb │ ├── date_time_test.rb │ ├── defaults_test.rb │ ├── delegated_type_test.rb │ ├── dirty_test.rb │ ├── disconnected_test.rb │ ├── dup_test.rb │ ├── encryption │ │ ├── cipher │ │ │ └── aes256_gcm_test.rb │ │ ├── cipher_test.rb │ │ ├── concurrency_test.rb │ │ ├── config_test.rb │ │ ├── configurable_test.rb │ │ ├── contexts_test.rb │ │ ├── derived_secret_key_provider_test.rb │ │ ├── deterministic_key_provider_test.rb │ │ ├── encryptable_record_api_test.rb │ │ ├── encryptable_record_test.rb │ │ ├── encrypted_fixtures_test.rb │ │ ├── encrypting_only_encryptor_test.rb │ │ ├── encryption_schemes_test.rb │ │ ├── encryptor_test.rb │ │ ├── envelope_encryption_key_provider_test.rb │ │ ├── extended_deterministic_queries_test.rb │ │ ├── helper.rb │ │ ├── key_generator_test.rb │ │ ├── key_provider_test.rb │ │ ├── key_test.rb │ │ ├── message_serializer_test.rb │ │ ├── message_test.rb │ │ ├── null_encryptor_test.rb │ │ ├── performance │ │ │ ├── encryption_performance_test.rb │ │ │ ├── envelope_encryption_performance_test.rb │ │ │ ├── extended_deterministic_queries_performance_test.rb │ │ │ └── storage_performance_test.rb │ │ ├── properties_test.rb │ │ ├── read_only_null_encryptor_test.rb │ │ ├── scheme_test.rb │ │ ├── unencrypted_attributes_test.rb │ │ └── uniqueness_validations_test.rb │ ├── enum_test.rb │ ├── errors_test.rb │ ├── excluding_test.rb │ ├── explain_subscriber_test.rb │ ├── explain_test.rb │ ├── filter_attributes_test.rb │ ├── finder_respond_to_test.rb │ ├── finder_test.rb │ ├── fixture_set │ │ └── file_test.rb │ ├── fixtures_test.rb │ ├── forbidden_attributes_protection_test.rb │ ├── habtm_destroy_order_test.rb │ ├── helper.rb │ ├── hot_compatibility_test.rb │ ├── i18n_test.rb │ ├── inheritance_test.rb │ ├── insert_all_test.rb │ ├── instrumentation_test.rb │ ├── integration_test.rb │ ├── invalid_connection_test.rb │ ├── invertible_migration_test.rb │ ├── json_attribute_test.rb │ ├── json_serialization_test.rb │ ├── json_shared_test_cases.rb │ ├── locking_test.rb │ ├── log_subscriber_test.rb │ ├── marshal_serialization_test.rb │ ├── message_pack_test.rb │ ├── migration │ │ ├── change_schema_test.rb │ │ ├── change_table_test.rb │ │ ├── check_constraint_test.rb │ │ ├── column_attributes_test.rb │ │ ├── column_positioning_test.rb │ │ ├── columns_test.rb │ │ ├── command_recorder_test.rb │ │ ├── compatibility_test.rb │ │ ├── create_join_table_test.rb │ │ ├── exclusion_constraint_test.rb │ │ ├── foreign_key_test.rb │ │ ├── helper.rb │ │ ├── index_test.rb │ │ ├── invalid_options_test.rb │ │ ├── logger_test.rb │ │ ├── pending_migrations_test.rb │ │ ├── references_foreign_key_test.rb │ │ ├── references_index_test.rb │ │ ├── references_statements_test.rb │ │ ├── rename_table_test.rb │ │ ├── schema_definitions_test.rb │ │ └── unique_key_test.rb │ ├── migration_test.rb │ ├── migrator_test.rb │ ├── mixin_test.rb │ ├── modules_test.rb │ ├── multi_db_migrator_test.rb │ ├── multiparameter_attributes_test.rb │ ├── multiple_db_test.rb │ ├── nested_attributes_test.rb │ ├── nested_attributes_with_callbacks_test.rb │ ├── normalized_attribute_test.rb │ ├── null_relation_test.rb │ ├── numeric_data_test.rb │ ├── persistence_test.rb │ ├── pooled_connections_test.rb │ ├── prepared_statement_status_test.rb │ ├── primary_class_test.rb │ ├── primary_keys_test.rb │ ├── query_cache_test.rb │ ├── query_logs_test.rb │ ├── quoting_test.rb │ ├── readonly_test.rb │ ├── reaper_test.rb │ ├── reflection_test.rb │ ├── relation │ │ ├── and_test.rb │ │ ├── delegation_test.rb │ │ ├── delete_all_test.rb │ │ ├── field_ordered_values_test.rb │ │ ├── load_async_test.rb │ │ ├── merging_test.rb │ │ ├── mutation_test.rb │ │ ├── or_test.rb │ │ ├── predicate_builder_test.rb │ │ ├── record_fetch_warning_test.rb │ │ ├── select_test.rb │ │ ├── structural_compatibility_test.rb │ │ ├── update_all_test.rb │ │ ├── where_chain_test.rb │ │ ├── where_clause_test.rb │ │ ├── where_test.rb │ │ └── with_test.rb │ ├── relation_test.rb │ ├── relations_test.rb │ ├── reload_models_test.rb │ ├── reserved_word_test.rb │ ├── result_test.rb │ ├── sanitize_test.rb │ ├── schema_dumper_test.rb │ ├── schema_loading_test.rb │ ├── scoping │ │ ├── default_scoping_test.rb │ │ ├── named_scoping_test.rb │ │ └── relation_scoping_test.rb │ ├── secure_password_test.rb │ ├── secure_token_test.rb │ ├── serialization_test.rb │ ├── serialized_attribute_test.rb │ ├── shard_selector_test.rb │ ├── signed_id_test.rb │ ├── statement_cache_test.rb │ ├── statement_invalid_test.rb │ ├── store_test.rb │ ├── strict_loading_test.rb │ ├── suppressor_test.rb │ ├── tasks │ │ └── database_tasks_test.rb │ ├── test_case.rb │ ├── test_databases_test.rb │ ├── test_fixtures_test.rb │ ├── time_precision_test.rb │ ├── timestamp_test.rb │ ├── token_for_test.rb │ ├── touch_later_test.rb │ ├── transaction_callbacks_test.rb │ ├── transaction_isolation_test.rb │ ├── transactions_test.rb │ ├── type │ │ ├── adapter_specific_registry_test.rb │ │ ├── date_time_test.rb │ │ ├── integer_test.rb │ │ ├── string_test.rb │ │ ├── time_test.rb │ │ ├── type_map_test.rb │ │ └── unsigned_integer_test.rb │ ├── type_test.rb │ ├── types_test.rb │ ├── unconnected_test.rb │ ├── unsafe_raw_sql_test.rb │ ├── validations │ │ ├── absence_validation_test.rb │ │ ├── association_validation_test.rb │ │ ├── i18n_generate_message_validation_test.rb │ │ ├── i18n_validation_test.rb │ │ ├── length_validation_test.rb │ │ ├── numericality_validation_test.rb │ │ ├── presence_validation_test.rb │ │ └── uniqueness_validation_test.rb │ ├── validations_repair_helper.rb │ ├── validations_test.rb │ ├── view_test.rb │ └── yaml_serialization_test.rb │ ├── config.example.yml │ ├── config.rb │ ├── fixtures │ ├── 1_need_quoting.yml │ ├── accounts.yml │ ├── admin │ │ ├── accounts.yml │ │ ├── randomly_named_a9.yml │ │ ├── randomly_named_b0.yml │ │ └── users.yml │ ├── all │ │ ├── admin │ │ ├── developers.yml │ │ ├── namespaced │ │ │ └── accounts.yml │ │ ├── people.yml │ │ └── tasks.yml │ ├── author_addresses.yml │ ├── author_favorites.yml │ ├── authors.yml │ ├── bad_posts.yml │ ├── binaries.yml │ ├── books.yml │ ├── bulbs.yml │ ├── cake_designers.yml │ ├── cars.yml │ ├── categories.yml │ ├── categories │ │ ├── special_categories.yml │ │ └── subsubdir │ │ │ └── arbitrary_filename.yml │ ├── categories_ordered.yml │ ├── categories_posts.yml │ ├── categorizations.yml │ ├── chefs.yml │ ├── citations.yml │ ├── clothing_items.yml │ ├── clubs.yml │ ├── collections.yml │ ├── colleges.yml │ ├── comments.yml │ ├── companies.yml │ ├── computers.yml │ ├── content.yml │ ├── content_positions.yml │ ├── courses.yml │ ├── cpk_authors.yml │ ├── cpk_books.yml │ ├── cpk_order_agreements.yml │ ├── cpk_order_tags.yml │ ├── cpk_orders.yml │ ├── cpk_reviews.yml │ ├── cpk_tags.yml │ ├── customers.yml │ ├── dashboards.yml │ ├── dead_parrots.yml │ ├── developers.yml │ ├── developers_projects.yml │ ├── dog_lovers.yml │ ├── dogs.yml │ ├── doubloons.yml │ ├── drink_designers.yml │ ├── edges.yml │ ├── encrypted_book_that_ignores_cases.yml │ ├── encrypted_books.yml │ ├── entrants.yml │ ├── essays.yml │ ├── faces.yml │ ├── fk_object_to_point_to.yml │ ├── fk_test_has_fk.yml │ ├── fk_test_has_pk.yml │ ├── friendships.yml │ ├── funny_jokes.yml │ ├── humans.yml │ ├── interests.yml │ ├── items.yml │ ├── jobs.yml │ ├── legacy_things.yml │ ├── live_parrots.yml │ ├── mateys.yml │ ├── member_details.yml │ ├── member_types.yml │ ├── members.yml │ ├── memberships.yml │ ├── minimalistics.yml │ ├── minivans.yml │ ├── mixed_case_monkeys.yml │ ├── mixins.yml │ ├── movies.yml │ ├── naked │ │ └── yml │ │ │ ├── accounts.yml │ │ │ ├── companies.yml │ │ │ ├── courses.yml │ │ │ ├── courses_with_invalid_key.yml │ │ │ ├── parrots.yml │ │ │ └── trees.yml │ ├── nodes.yml │ ├── organizations.yml │ ├── other_books.yml │ ├── other_comments.yml │ ├── other_dogs.yml │ ├── other_posts.yml │ ├── other_topics.yml │ ├── owners.yml │ ├── paragraphs.yml │ ├── parrots.yml │ ├── parrots_pirates.yml │ ├── people.yml │ ├── peoples_treasures.yml │ ├── pets.yml │ ├── pirates.yml │ ├── posts.yml │ ├── price_estimates.yml │ ├── primary_key_error │ │ └── primary_key_error.yml │ ├── products.yml │ ├── projects.yml │ ├── randomly_named_a9.yml │ ├── ratings.yml │ ├── readers.yml │ ├── references.yml │ ├── reserved_words │ │ ├── distinct.yml │ │ ├── distinct_select.yml │ │ ├── group.yml │ │ ├── select.yml │ │ └── values.yml │ ├── sharded_blog_posts.yml │ ├── sharded_blog_posts_tags.yml │ ├── sharded_blogs.yml │ ├── sharded_comments.yml │ ├── sharded_tags.yml │ ├── ships.yml │ ├── speedometers.yml │ ├── sponsors.yml │ ├── strict_zines.yml │ ├── string_key_objects.yml │ ├── subscribers.yml │ ├── subscriptions.yml │ ├── taggings.yml │ ├── tags.yml │ ├── tasks.yml │ ├── to_be_linked │ │ ├── accounts.yml │ │ └── users.yml │ ├── topics.yml │ ├── toys.yml │ ├── traffic_lights.yml │ ├── treasures.yml │ ├── trees.yml │ ├── uuid_children.yml │ ├── uuid_parents.yml │ ├── variants.yml │ ├── vegetables.yml │ ├── vertices.yml │ ├── virtual_columns.yml │ ├── warehouse-things.yml │ └── zines.yml │ ├── migrations │ ├── 10_urban │ │ └── 9_add_expressions.rb │ ├── decimal │ │ └── 1_give_me_big_numbers.rb │ ├── empty │ │ └── .keep │ ├── magic │ │ └── 1_currencies_have_symbols.rb │ ├── missing │ │ ├── 1000_people_have_middle_names.rb │ │ ├── 1_people_have_last_names.rb │ │ ├── 3_we_need_reminders.rb │ │ └── 4_innocent_jointable.rb │ ├── old_and_new_versions │ │ ├── 20210716122844_add_people_description.rb │ │ ├── 20210716123013_add_people_number_of_legs.rb │ │ ├── 230_add_people_hobby.rb │ │ └── 231_add_people_last_name.rb │ ├── rename │ │ ├── 1_we_need_things.rb │ │ └── 2_rename_things.rb │ ├── scope │ │ ├── 1_unscoped.rb │ │ └── 2_mysql_only.mysql.rb │ ├── to_copy │ │ ├── 1_people_have_hobbies.rb │ │ └── 2_people_have_descriptions.rb │ ├── to_copy2 │ │ ├── 1_create_articles.rb │ │ └── 2_create_comments.rb │ ├── to_copy_with_name_collision │ │ └── 1_people_have_hobbies.rb │ ├── to_copy_with_timestamps │ │ ├── 20090101010101_people_have_hobbies.rb │ │ └── 20090101010202_people_have_descriptions.rb │ ├── to_copy_with_timestamps2 │ │ ├── 20090101010101_create_articles.rb │ │ └── 20090101010202_create_comments.rb │ ├── valid │ │ ├── 1_valid_people_have_last_names.rb │ │ ├── 2_we_need_reminders.rb │ │ └── 3_innocent_jointable.rb │ ├── valid_with_subdirectories │ │ ├── 1_valid_people_have_last_names.rb │ │ ├── sub │ │ │ └── 2_we_need_reminders.rb │ │ └── sub1 │ │ │ └── 3_innocent_jointable.rb │ ├── valid_with_timestamps │ │ ├── 20100101010101_valid_with_timestamps_people_have_last_names.rb │ │ ├── 20100201010101_valid_with_timestamps_we_need_reminders.rb │ │ └── 20100301010101_valid_with_timestamps_innocent_jointable.rb │ └── version_check │ │ └── 20131219224947_migration_version_check.rb │ ├── models │ ├── account.rb │ ├── admin.rb │ ├── admin │ │ ├── account.rb │ │ ├── randomly_named_c1.rb │ │ ├── user.rb │ │ └── user_json.rb │ ├── aircraft.rb │ ├── arunit2_model.rb │ ├── attachment.rb │ ├── author.rb │ ├── author_encrypted.rb │ ├── auto_id.rb │ ├── autoloadable │ │ └── extra_firm.rb │ ├── binary.rb │ ├── bird.rb │ ├── book.rb │ ├── book_destroy_async.rb │ ├── book_encrypted.rb │ ├── boolean.rb │ ├── branch.rb │ ├── bulb.rb │ ├── cake_designer.rb │ ├── car.rb │ ├── carrier.rb │ ├── cart.rb │ ├── cat.rb │ ├── categorization.rb │ ├── category.rb │ ├── chat_message.rb │ ├── chef.rb │ ├── citation.rb │ ├── clothing_item.rb │ ├── club.rb │ ├── college.rb │ ├── column.rb │ ├── column_name.rb │ ├── comment.rb │ ├── company.rb │ ├── company_in_module.rb │ ├── computer.rb │ ├── contact.rb │ ├── content.rb │ ├── contract.rb │ ├── country.rb │ ├── course.rb │ ├── cpk.rb │ ├── cpk │ │ ├── author.rb │ │ ├── book.rb │ │ ├── chapter.rb │ │ ├── order.rb │ │ ├── order_agreement.rb │ │ ├── order_tag.rb │ │ ├── review.rb │ │ └── tag.rb │ ├── customer.rb │ ├── customer_carrier.rb │ ├── dashboard.rb │ ├── default.rb │ ├── department.rb │ ├── destroy_async_parent.rb │ ├── destroy_async_parent_soft_delete.rb │ ├── developer.rb │ ├── discount.rb │ ├── dl_keyed_belongs_to.rb │ ├── dl_keyed_belongs_to_soft_delete.rb │ ├── dl_keyed_has_many.rb │ ├── dl_keyed_has_many_through.rb │ ├── dl_keyed_has_one.rb │ ├── dl_keyed_join.rb │ ├── dog.rb │ ├── dog_lover.rb │ ├── doubloon.rb │ ├── drink_designer.rb │ ├── edge.rb │ ├── electron.rb │ ├── engine.rb │ ├── entrant.rb │ ├── entry.rb │ ├── essay.rb │ ├── essay_destroy_async.rb │ ├── event.rb │ ├── eye.rb │ ├── face.rb │ ├── family.rb │ ├── family_tree.rb │ ├── friendship.rb │ ├── frog.rb │ ├── guid.rb │ ├── guitar.rb │ ├── hardback.rb │ ├── hotel.rb │ ├── human.rb │ ├── image.rb │ ├── interest.rb │ ├── invoice.rb │ ├── invokes_an_undefined_method.rb │ ├── item.rb │ ├── job.rb │ ├── joke.rb │ ├── keyboard.rb │ ├── legacy_thing.rb │ ├── lesson.rb │ ├── line_item.rb │ ├── liquid.rb │ ├── matey.rb │ ├── measurement.rb │ ├── member.rb │ ├── member_detail.rb │ ├── member_type.rb │ ├── membership.rb │ ├── mentor.rb │ ├── message.rb │ ├── minimalistic.rb │ ├── minivan.rb │ ├── mixed_case_monkey.rb │ ├── molecule.rb │ ├── mouse.rb │ ├── movie.rb │ ├── need_quoting.rb │ ├── node.rb │ ├── non_primary_key.rb │ ├── notification.rb │ ├── numeric_data.rb │ ├── order.rb │ ├── organization.rb │ ├── other_dog.rb │ ├── owner.rb │ ├── paragraph.rb │ ├── parrot.rb │ ├── person.rb │ ├── personal_legacy_thing.rb │ ├── pet.rb │ ├── pet_treasure.rb │ ├── pirate.rb │ ├── possession.rb │ ├── post.rb │ ├── post_encrypted.rb │ ├── price_estimate.rb │ ├── professor.rb │ ├── project.rb │ ├── publisher.rb │ ├── publisher │ │ ├── article.rb │ │ └── magazine.rb │ ├── raises_argument_error.rb │ ├── raises_no_method_error.rb │ ├── randomly_named_c1.rb │ ├── rating.rb │ ├── reader.rb │ ├── recipe.rb │ ├── recipient.rb │ ├── record.rb │ ├── reference.rb │ ├── reply.rb │ ├── room.rb │ ├── section.rb │ ├── seminar.rb │ ├── session.rb │ ├── sharded.rb │ ├── sharded │ │ ├── blog.rb │ │ ├── blog_post.rb │ │ ├── blog_post_destroy_async.rb │ │ ├── blog_post_tag.rb │ │ ├── blog_post_with_revision.rb │ │ ├── comment.rb │ │ ├── comment_destroy_async.rb │ │ └── tag.rb │ ├── ship.rb │ ├── ship_part.rb │ ├── shipping_line.rb │ ├── shop.rb │ ├── shop_account.rb │ ├── speedometer.rb │ ├── sponsor.rb │ ├── squeak.rb │ ├── strict_zine.rb │ ├── string_key_object.rb │ ├── student.rb │ ├── subscriber.rb │ ├── subscription.rb │ ├── tag.rb │ ├── tagging.rb │ ├── task.rb │ ├── too_long_table_name.rb │ ├── topic.rb │ ├── toy.rb │ ├── traffic_light.rb │ ├── traffic_light_encrypted.rb │ ├── translation.rb │ ├── treasure.rb │ ├── treaty.rb │ ├── tree.rb │ ├── tuning_peg.rb │ ├── tyre.rb │ ├── user.rb │ ├── user_with_invalid_relation.rb │ ├── uuid_child.rb │ ├── uuid_comment.rb │ ├── uuid_entry.rb │ ├── uuid_item.rb │ ├── uuid_message.rb │ ├── uuid_parent.rb │ ├── vegetables.rb │ ├── vertex.rb │ ├── warehouse_thing.rb │ ├── wheel.rb │ ├── without_table.rb │ └── zine.rb │ ├── schema │ ├── mysql2_specific_schema.rb │ ├── oracle_specific_schema.rb │ ├── postgresql_specific_schema.rb │ ├── schema.rb │ ├── sqlite_specific_schema.rb │ └── trilogy_specific_schema.rb │ ├── storage │ └── test.sqlite3 │ └── support │ ├── adapter_helper.rb │ ├── async_helper.rb │ ├── config.rb │ ├── connection.rb │ ├── connection_helper.rb │ ├── ddl_helper.rb │ ├── load_schema_helper.rb │ ├── marshal_compatibility_fixtures │ ├── Mysql2 │ │ ├── rails_6_1_topic.dump │ │ ├── rails_6_1_topic_associations.dump │ │ ├── rails_7_1_topic.dump │ │ └── rails_7_1_topic_associations.dump │ ├── PostgreSQL │ │ ├── rails_6_1_topic.dump │ │ ├── rails_6_1_topic_associations.dump │ │ ├── rails_7_1_topic.dump │ │ └── rails_7_1_topic_associations.dump │ ├── SQLite │ │ ├── rails_6_1_topic.dump │ │ ├── rails_6_1_topic_associations.dump │ │ ├── rails_7_1_topic.dump │ │ └── rails_7_1_topic_associations.dump │ └── Trilogy │ │ ├── rails_6_1_topic.dump │ │ ├── rails_6_1_topic_associations.dump │ │ ├── rails_7_1_topic.dump │ │ └── rails_7_1_topic_associations.dump │ ├── schema_dumping_helper.rb │ ├── stubs │ └── strong_parameters.rb │ ├── tools.rb │ └── yaml_compatibility_fixtures │ ├── rails_4_1.yml │ ├── rails_4_1_no_symbol.yml │ ├── rails_4_2_0.yml │ ├── rails_v1_mysql.yml │ └── rails_v2.yml ├── activestorage ├── .babelrc ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── activestorage.gemspec ├── app │ ├── assets │ │ └── javascripts │ │ │ ├── .gitattributes │ │ │ ├── activestorage.esm.js │ │ │ └── activestorage.js │ ├── controllers │ │ ├── active_storage │ │ │ ├── base_controller.rb │ │ │ ├── blobs │ │ │ │ ├── proxy_controller.rb │ │ │ │ └── redirect_controller.rb │ │ │ ├── direct_uploads_controller.rb │ │ │ ├── disk_controller.rb │ │ │ └── representations │ │ │ │ ├── base_controller.rb │ │ │ │ ├── proxy_controller.rb │ │ │ │ └── redirect_controller.rb │ │ └── concerns │ │ │ └── active_storage │ │ │ ├── file_server.rb │ │ │ ├── set_blob.rb │ │ │ ├── set_current.rb │ │ │ └── streaming.rb │ ├── javascript │ │ └── activestorage │ │ │ ├── blob_record.js │ │ │ ├── blob_upload.js │ │ │ ├── direct_upload.js │ │ │ ├── direct_upload_controller.js │ │ │ ├── direct_uploads_controller.js │ │ │ ├── file_checksum.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ └── ujs.js │ ├── jobs │ │ └── active_storage │ │ │ ├── analyze_job.rb │ │ │ ├── base_job.rb │ │ │ ├── mirror_job.rb │ │ │ └── purge_job.rb │ └── models │ │ └── active_storage │ │ ├── attachment.rb │ │ ├── blob.rb │ │ ├── blob │ │ ├── analyzable.rb │ │ ├── identifiable.rb │ │ └── representable.rb │ │ ├── current.rb │ │ ├── filename.rb │ │ ├── preview.rb │ │ ├── record.rb │ │ ├── variant.rb │ │ ├── variant_record.rb │ │ ├── variant_with_record.rb │ │ └── variation.rb ├── bin │ └── test ├── config │ └── routes.rb ├── db │ ├── migrate │ │ └── 20170806125915_create_active_storage_tables.rb │ └── update_migrate │ │ ├── 20190112182829_add_service_name_to_active_storage_blobs.rb │ │ ├── 20191206030411_create_active_storage_variant_records.rb │ │ └── 20211119233751_remove_not_null_on_active_storage_blobs_checksum.rb ├── lib │ ├── active_storage.rb │ ├── active_storage │ │ ├── analyzer.rb │ │ ├── analyzer │ │ │ ├── audio_analyzer.rb │ │ │ ├── image_analyzer.rb │ │ │ ├── image_analyzer │ │ │ │ ├── image_magick.rb │ │ │ │ └── vips.rb │ │ │ ├── null_analyzer.rb │ │ │ └── video_analyzer.rb │ │ ├── attached.rb │ │ ├── attached │ │ │ ├── changes.rb │ │ │ ├── changes │ │ │ │ ├── create_many.rb │ │ │ │ ├── create_one.rb │ │ │ │ ├── create_one_of_many.rb │ │ │ │ ├── delete_many.rb │ │ │ │ ├── delete_one.rb │ │ │ │ ├── detach_many.rb │ │ │ │ ├── detach_one.rb │ │ │ │ ├── purge_many.rb │ │ │ │ └── purge_one.rb │ │ │ ├── many.rb │ │ │ ├── model.rb │ │ │ └── one.rb │ │ ├── deprecator.rb │ │ ├── downloader.rb │ │ ├── engine.rb │ │ ├── errors.rb │ │ ├── fixture_set.rb │ │ ├── gem_version.rb │ │ ├── log_subscriber.rb │ │ ├── previewer.rb │ │ ├── previewer │ │ │ ├── mupdf_previewer.rb │ │ │ ├── poppler_pdf_previewer.rb │ │ │ └── video_previewer.rb │ │ ├── reflection.rb │ │ ├── service.rb │ │ ├── service │ │ │ ├── azure_storage_service.rb │ │ │ ├── configurator.rb │ │ │ ├── disk_service.rb │ │ │ ├── gcs_service.rb │ │ │ ├── mirror_service.rb │ │ │ ├── registry.rb │ │ │ └── s3_service.rb │ │ ├── transformers │ │ │ ├── image_processing_transformer.rb │ │ │ └── transformer.rb │ │ └── version.rb │ └── tasks │ │ └── activestorage.rake ├── package.json ├── rollup.config.js └── test │ ├── analyzer │ ├── audio_analyzer_test.rb │ ├── image_analyzer │ │ ├── image_magick_test.rb │ │ └── vips_test.rb │ └── video_analyzer_test.rb │ ├── controllers │ ├── blobs │ │ ├── proxy_controller_test.rb │ │ └── redirect_controller_test.rb │ ├── direct_uploads_controller_test.rb │ ├── disk_controller_test.rb │ └── representations │ │ ├── proxy_controller_test.rb │ │ └── redirect_controller_test.rb │ ├── database │ ├── create_groups_migration.rb │ ├── create_users_migration.rb │ └── setup.rb │ ├── dummy │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ └── layouts │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── bin │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ └── permissions_policy.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ └── storage.yml │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ └── storage │ │ └── .keep │ ├── engine_test.rb │ ├── fixture_set_test.rb │ ├── fixtures │ ├── active_storage │ │ ├── attachments.yml │ │ └── blobs.yml │ ├── files │ │ ├── audio.mp3 │ │ ├── colors.bmp │ │ ├── cropped.pdf │ │ ├── empty_file.txt │ │ ├── favicon.ico │ │ ├── icon.psd │ │ ├── icon.svg │ │ ├── image.gif │ │ ├── racecar.jpg │ │ ├── racecar.tif │ │ ├── racecar_rotated.jpg │ │ ├── report.pdf │ │ ├── rotated_video.mp4 │ │ ├── video.mp4 │ │ ├── video.webm │ │ ├── video_with_rectangular_samples.mp4 │ │ ├── video_with_undefined_display_aspect_ratio.mp4 │ │ ├── video_without_audio_stream.mp4 │ │ └── video_without_video_stream.mp4 │ └── users.yml │ ├── javascript_package_test.rb │ ├── jobs │ ├── analyze_job_test.rb │ └── purge_job_test.rb │ ├── migrations_test.rb │ ├── models │ ├── attached │ │ ├── many_test.rb │ │ └── one_test.rb │ ├── attachment_test.rb │ ├── blob_test.rb │ ├── filename_test.rb │ ├── presence_validation_test.rb │ ├── preview_test.rb │ ├── reflection_test.rb │ ├── representation_test.rb │ ├── strict_loading_test.rb │ ├── variant_test.rb │ └── variant_with_record_test.rb │ ├── previewer │ ├── mupdf_previewer_test.rb │ ├── poppler_pdf_previewer_test.rb │ └── video_previewer_test.rb │ ├── service │ ├── azure_storage_public_service_test.rb │ ├── azure_storage_service_test.rb │ ├── configurations.example.yml │ ├── configurations.yml.enc │ ├── configurator_test.rb │ ├── disk_public_service_test.rb │ ├── disk_service_test.rb │ ├── gcs_public_service_test.rb │ ├── gcs_service_test.rb │ ├── mirror_service_test.rb │ ├── s3_public_service_test.rb │ ├── s3_service_test.rb │ └── shared_service_tests.rb │ ├── template │ ├── audio_tag_test.rb │ ├── image_tag_test.rb │ └── video_tag_test.rb │ ├── test_helper.rb │ └── urls │ ├── rails_storage_proxy_url_test.rb │ └── rails_storage_redirect_url_test.rb ├── activesupport ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── activesupport.gemspec ├── bin │ └── test ├── lib │ ├── active_support.rb │ └── active_support │ │ ├── actionable_error.rb │ │ ├── all.rb │ │ ├── array_inquirer.rb │ │ ├── backtrace_cleaner.rb │ │ ├── benchmarkable.rb │ │ ├── builder.rb │ │ ├── cache.rb │ │ ├── cache │ │ ├── file_store.rb │ │ ├── mem_cache_store.rb │ │ ├── memory_store.rb │ │ ├── null_store.rb │ │ ├── redis_cache_store.rb │ │ ├── serializer_with_fallback.rb │ │ └── strategy │ │ │ ├── local_cache.rb │ │ │ └── local_cache_middleware.rb │ │ ├── callbacks.rb │ │ ├── code_generator.rb │ │ ├── concern.rb │ │ ├── concurrency │ │ ├── load_interlock_aware_monitor.rb │ │ ├── null_lock.rb │ │ └── share_lock.rb │ │ ├── configurable.rb │ │ ├── configuration_file.rb │ │ ├── core_ext.rb │ │ ├── core_ext │ │ ├── array.rb │ │ ├── array │ │ │ ├── access.rb │ │ │ ├── conversions.rb │ │ │ ├── extract.rb │ │ │ ├── extract_options.rb │ │ │ ├── grouping.rb │ │ │ ├── inquiry.rb │ │ │ └── wrap.rb │ │ ├── benchmark.rb │ │ ├── big_decimal.rb │ │ ├── big_decimal │ │ │ └── conversions.rb │ │ ├── class.rb │ │ ├── class │ │ │ ├── attribute.rb │ │ │ ├── attribute_accessors.rb │ │ │ └── subclasses.rb │ │ ├── date.rb │ │ ├── date │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── calculations.rb │ │ │ ├── conversions.rb │ │ │ └── zones.rb │ │ ├── date_and_time │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ └── zones.rb │ │ ├── date_time.rb │ │ ├── date_time │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ └── conversions.rb │ │ ├── digest.rb │ │ ├── digest │ │ │ └── uuid.rb │ │ ├── enumerable.rb │ │ ├── erb │ │ │ └── util.rb │ │ ├── file.rb │ │ ├── file │ │ │ └── atomic.rb │ │ ├── hash.rb │ │ ├── hash │ │ │ ├── conversions.rb │ │ │ ├── deep_merge.rb │ │ │ ├── deep_transform_values.rb │ │ │ ├── except.rb │ │ │ ├── indifferent_access.rb │ │ │ ├── keys.rb │ │ │ ├── reverse_merge.rb │ │ │ └── slice.rb │ │ ├── integer.rb │ │ ├── integer │ │ │ ├── inflections.rb │ │ │ ├── multiple.rb │ │ │ └── time.rb │ │ ├── kernel.rb │ │ ├── kernel │ │ │ ├── concern.rb │ │ │ ├── reporting.rb │ │ │ └── singleton_class.rb │ │ ├── load_error.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── aliasing.rb │ │ │ ├── anonymous.rb │ │ │ ├── attr_internal.rb │ │ │ ├── attribute_accessors.rb │ │ │ ├── attribute_accessors_per_thread.rb │ │ │ ├── concerning.rb │ │ │ ├── delegation.rb │ │ │ ├── deprecation.rb │ │ │ ├── introspection.rb │ │ │ ├── redefine_method.rb │ │ │ └── remove_method.rb │ │ ├── name_error.rb │ │ ├── numeric.rb │ │ ├── numeric │ │ │ ├── bytes.rb │ │ │ ├── conversions.rb │ │ │ └── time.rb │ │ ├── object.rb │ │ ├── object │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── conversions.rb │ │ │ ├── deep_dup.rb │ │ │ ├── duplicable.rb │ │ │ ├── inclusion.rb │ │ │ ├── instance_variables.rb │ │ │ ├── json.rb │ │ │ ├── to_param.rb │ │ │ ├── to_query.rb │ │ │ ├── try.rb │ │ │ ├── with.rb │ │ │ └── with_options.rb │ │ ├── pathname.rb │ │ ├── pathname │ │ │ ├── blank.rb │ │ │ └── existence.rb │ │ ├── range.rb │ │ ├── range │ │ │ ├── compare_range.rb │ │ │ ├── conversions.rb │ │ │ ├── each.rb │ │ │ └── overlap.rb │ │ ├── regexp.rb │ │ ├── securerandom.rb │ │ ├── string.rb │ │ ├── string │ │ │ ├── access.rb │ │ │ ├── behavior.rb │ │ │ ├── conversions.rb │ │ │ ├── exclude.rb │ │ │ ├── filters.rb │ │ │ ├── indent.rb │ │ │ ├── inflections.rb │ │ │ ├── inquiry.rb │ │ │ ├── multibyte.rb │ │ │ ├── output_safety.rb │ │ │ ├── starts_ends_with.rb │ │ │ ├── strip.rb │ │ │ └── zones.rb │ │ ├── symbol.rb │ │ ├── symbol │ │ │ └── starts_ends_with.rb │ │ ├── thread │ │ │ └── backtrace │ │ │ │ └── location.rb │ │ ├── time.rb │ │ └── time │ │ │ ├── acts_like.rb │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ ├── conversions.rb │ │ │ └── zones.rb │ │ ├── current_attributes.rb │ │ ├── current_attributes │ │ └── test_helper.rb │ │ ├── dependencies.rb │ │ ├── dependencies │ │ ├── autoload.rb │ │ ├── interlock.rb │ │ └── require_dependency.rb │ │ ├── deprecation.rb │ │ ├── deprecation │ │ ├── behaviors.rb │ │ ├── constant_accessor.rb │ │ ├── deprecators.rb │ │ ├── disallowed.rb │ │ ├── instance_delegator.rb │ │ ├── method_wrappers.rb │ │ ├── proxy_wrappers.rb │ │ └── reporting.rb │ │ ├── deprecator.rb │ │ ├── descendants_tracker.rb │ │ ├── digest.rb │ │ ├── duration.rb │ │ ├── duration │ │ ├── iso8601_parser.rb │ │ └── iso8601_serializer.rb │ │ ├── encrypted_configuration.rb │ │ ├── encrypted_file.rb │ │ ├── environment_inquirer.rb │ │ ├── error_reporter.rb │ │ ├── error_reporter │ │ └── test_helper.rb │ │ ├── evented_file_update_checker.rb │ │ ├── execution_context.rb │ │ ├── execution_context │ │ └── test_helper.rb │ │ ├── execution_wrapper.rb │ │ ├── executor.rb │ │ ├── executor │ │ └── test_helper.rb │ │ ├── file_update_checker.rb │ │ ├── fork_tracker.rb │ │ ├── gem_version.rb │ │ ├── gzip.rb │ │ ├── hash_with_indifferent_access.rb │ │ ├── html_safe_translation.rb │ │ ├── i18n.rb │ │ ├── i18n_railtie.rb │ │ ├── inflections.rb │ │ ├── inflector.rb │ │ ├── inflector │ │ ├── inflections.rb │ │ ├── methods.rb │ │ └── transliterate.rb │ │ ├── isolated_execution_state.rb │ │ ├── json.rb │ │ ├── json │ │ ├── decoding.rb │ │ └── encoding.rb │ │ ├── key_generator.rb │ │ ├── lazy_load_hooks.rb │ │ ├── locale │ │ ├── en.rb │ │ └── en.yml │ │ ├── log_subscriber.rb │ │ ├── log_subscriber │ │ └── test_helper.rb │ │ ├── logger.rb │ │ ├── logger_silence.rb │ │ ├── logger_thread_safe_level.rb │ │ ├── message_encryptor.rb │ │ ├── message_encryptors.rb │ │ ├── message_pack.rb │ │ ├── message_pack │ │ ├── cache_serializer.rb │ │ ├── extensions.rb │ │ └── serializer.rb │ │ ├── message_verifier.rb │ │ ├── message_verifiers.rb │ │ ├── messages │ │ ├── codec.rb │ │ ├── metadata.rb │ │ ├── rotation_configuration.rb │ │ ├── rotation_coordinator.rb │ │ ├── rotator.rb │ │ └── serializer_with_fallback.rb │ │ ├── multibyte.rb │ │ ├── multibyte │ │ ├── chars.rb │ │ └── unicode.rb │ │ ├── notifications.rb │ │ ├── notifications │ │ ├── fanout.rb │ │ └── instrumenter.rb │ │ ├── number_helper.rb │ │ ├── number_helper │ │ ├── number_converter.rb │ │ ├── number_to_currency_converter.rb │ │ ├── number_to_delimited_converter.rb │ │ ├── number_to_human_converter.rb │ │ ├── number_to_human_size_converter.rb │ │ ├── number_to_percentage_converter.rb │ │ ├── number_to_phone_converter.rb │ │ ├── number_to_rounded_converter.rb │ │ └── rounding_helper.rb │ │ ├── option_merger.rb │ │ ├── ordered_hash.rb │ │ ├── ordered_options.rb │ │ ├── parameter_filter.rb │ │ ├── proxy_object.rb │ │ ├── rails.rb │ │ ├── railtie.rb │ │ ├── reloader.rb │ │ ├── rescuable.rb │ │ ├── ruby_features.rb │ │ ├── secure_compare_rotator.rb │ │ ├── security_utils.rb │ │ ├── string_inquirer.rb │ │ ├── subscriber.rb │ │ ├── syntax_error_proxy.rb │ │ ├── tagged_logging.rb │ │ ├── test_case.rb │ │ ├── testing │ │ ├── assertions.rb │ │ ├── autorun.rb │ │ ├── constant_lookup.rb │ │ ├── constant_stubbing.rb │ │ ├── declarative.rb │ │ ├── deprecation.rb │ │ ├── error_reporter_assertions.rb │ │ ├── file_fixtures.rb │ │ ├── isolation.rb │ │ ├── method_call_assertions.rb │ │ ├── parallelization.rb │ │ ├── parallelization │ │ │ ├── server.rb │ │ │ └── worker.rb │ │ ├── parallelize_executor.rb │ │ ├── setup_and_teardown.rb │ │ ├── stream.rb │ │ ├── strict_warnings.rb │ │ ├── tagged_logging.rb │ │ └── time_helpers.rb │ │ ├── time.rb │ │ ├── time_with_zone.rb │ │ ├── values │ │ └── time_zone.rb │ │ ├── version.rb │ │ ├── xml_mini.rb │ │ └── xml_mini │ │ ├── jdom.rb │ │ ├── libxml.rb │ │ ├── libxmlsax.rb │ │ ├── nokogiri.rb │ │ ├── nokogirisax.rb │ │ └── rexml.rb └── test │ ├── abstract_unit.rb │ ├── actionable_error_test.rb │ ├── array_inquirer_test.rb │ ├── autoload_test.rb │ ├── autoloading_fixtures │ ├── raises_load_error.rb │ ├── raises_name_error.rb │ └── raises_no_method_error.rb │ ├── benchmarkable_test.rb │ ├── broadcast_logger_test.rb │ ├── cache │ ├── behaviors.rb │ ├── behaviors │ │ ├── cache_delete_matched_behavior.rb │ │ ├── cache_increment_decrement_behavior.rb │ │ ├── cache_instrumentation_behavior.rb │ │ ├── cache_logging_behavior.rb │ │ ├── cache_store_behavior.rb │ │ ├── cache_store_coder_behavior.rb │ │ ├── cache_store_compression_behavior.rb │ │ ├── cache_store_format_version_behavior.rb │ │ ├── cache_store_version_behavior.rb │ │ ├── connection_pool_behavior.rb │ │ ├── encoded_key_cache_behavior.rb │ │ ├── failure_raising_behavior.rb │ │ ├── failure_safety_behavior.rb │ │ └── local_cache_behavior.rb │ ├── cache_entry_test.rb │ ├── cache_key_test.rb │ ├── cache_store_logger_test.rb │ ├── cache_store_namespace_test.rb │ ├── cache_store_setting_test.rb │ ├── local_cache_middleware_test.rb │ ├── serializer_with_fallback_test.rb │ └── stores │ │ ├── file_store_test.rb │ │ ├── mem_cache_store_test.rb │ │ ├── memory_store_test.rb │ │ ├── null_store_test.rb │ │ └── redis_cache_store_test.rb │ ├── callback_inheritance_test.rb │ ├── callbacks_test.rb │ ├── clean_backtrace_test.rb │ ├── clean_logger_test.rb │ ├── concern_test.rb │ ├── concurrency │ └── load_interlock_aware_monitor_test.rb │ ├── configurable_test.rb │ ├── configuration_file_test.rb │ ├── constantize_test_cases.rb │ ├── constantize_test_helpers.rb │ ├── core_ext │ ├── array │ │ ├── access_test.rb │ │ ├── conversions_test.rb │ │ ├── extract_options_test.rb │ │ ├── extract_test.rb │ │ ├── grouping_test.rb │ │ └── wrap_test.rb │ ├── bigdecimal_test.rb │ ├── class │ │ └── attribute_test.rb │ ├── class_test.rb │ ├── date_and_time_behavior.rb │ ├── date_and_time_compatibility_test.rb │ ├── date_ext_test.rb │ ├── date_time_ext_test.rb │ ├── digest │ │ └── uuid_test.rb │ ├── duration_test.rb │ ├── enumerable_test.rb │ ├── erb_util_test.rb │ ├── file_test.rb │ ├── hash │ │ └── transform_values_test.rb │ ├── hash_ext_test.rb │ ├── integer_ext_test.rb │ ├── kernel │ │ └── concern_test.rb │ ├── kernel_test.rb │ ├── load_error_test.rb │ ├── module │ │ ├── anonymous_test.rb │ │ ├── attr_internal_test.rb │ │ ├── attribute_accessor_per_thread_test.rb │ │ ├── attribute_accessor_test.rb │ │ ├── attribute_aliasing_test.rb │ │ ├── concerning_test.rb │ │ ├── introspection_test.rb │ │ └── remove_method_test.rb │ ├── module_test.rb │ ├── name_error_test.rb │ ├── numeric_ext_test.rb │ ├── object │ │ ├── acts_like_test.rb │ │ ├── blank_test.rb │ │ ├── deep_dup_test.rb │ │ ├── duplicable_test.rb │ │ ├── inclusion_test.rb │ │ ├── instance_variables_test.rb │ │ ├── json_cherry_pick_test.rb │ │ ├── json_gem_encoding_test.rb │ │ ├── to_param_test.rb │ │ ├── to_query_test.rb │ │ ├── try_test.rb │ │ └── with_test.rb │ ├── pathname │ │ ├── blank_test.rb │ │ └── existence_test.rb │ ├── range_ext_test.rb │ ├── regexp_ext_test.rb │ ├── secure_random_test.rb │ ├── string_ext_test.rb │ ├── symbol_ext_test.rb │ ├── time_ext_test.rb │ └── time_with_zone_test.rb │ ├── current_attributes_test.rb │ ├── dependencies │ ├── check_warnings.rb │ ├── conflict.rb │ ├── cross_site_depender.rb │ ├── module_folder │ │ └── lib_class.rb │ ├── mutual_one.rb │ ├── mutual_two.rb │ ├── raises_exception.rb │ ├── requires_nonexistent0.rb │ ├── requires_nonexistent1.rb │ ├── service_one.rb │ └── service_two.rb │ ├── dependencies_test.rb │ ├── deprecation │ ├── deprecators_test.rb │ ├── method_wrappers_test.rb │ └── proxy_wrappers_test.rb │ ├── deprecation_test.rb │ ├── descendants_tracker_test.rb │ ├── digest_test.rb │ ├── encrypted_configuration_test.rb │ ├── encrypted_file_test.rb │ ├── environment_inquirer_test.rb │ ├── error_reporter_test.rb │ ├── evented_file_update_checker_test.rb │ ├── execution_context_test.rb │ ├── executor_test.rb │ ├── file_fixtures │ └── sample.txt │ ├── file_update_checker_shared_tests.rb │ ├── file_update_checker_test.rb │ ├── fixtures │ ├── autoload │ │ ├── another_class.rb │ │ └── some_class.rb │ ├── concern │ │ └── some_concern.rb │ └── xml │ │ ├── jdom_doctype.dtd │ │ ├── jdom_entities.txt │ │ └── jdom_include.txt │ ├── fork_tracker_test.rb │ ├── gzip_test.rb │ ├── hash_with_indifferent_access_test.rb │ ├── i18n_test.rb │ ├── inflector_test.rb │ ├── inflector_test_cases.rb │ ├── isolated_execution_state_test.rb │ ├── json │ ├── decoding_test.rb │ ├── encoding_test.rb │ └── encoding_test_cases.rb │ ├── key_generator_test.rb │ ├── lazy_load_hooks_test.rb │ ├── log_subscriber_test.rb │ ├── logger_test.rb │ ├── message_encryptor_test.rb │ ├── message_encryptors_test.rb │ ├── message_pack │ ├── cache_serializer_test.rb │ ├── serializer_test.rb │ └── shared_serializer_tests.rb │ ├── message_verifier_test.rb │ ├── message_verifiers_test.rb │ ├── messages │ ├── message_codec_tests.rb │ ├── message_encryptor_metadata_test.rb │ ├── message_encryptor_rotator_test.rb │ ├── message_metadata_tests.rb │ ├── message_rotator_tests.rb │ ├── message_verifier_metadata_test.rb │ ├── message_verifier_rotator_test.rb │ ├── rotation_configuration_test.rb │ └── serializer_with_fallback_test.rb │ ├── multibyte_chars_test.rb │ ├── multibyte_proxy_test.rb │ ├── multibyte_test_helpers.rb │ ├── notifications │ ├── evented_notification_test.rb │ └── instrumenter_test.rb │ ├── notifications_test.rb │ ├── number_helper_i18n_test.rb │ ├── number_helper_test.rb │ ├── option_merger_test.rb │ ├── ordered_hash_test.rb │ ├── ordered_options_test.rb │ ├── parameter_filter_test.rb │ ├── reloader_test.rb │ ├── rescuable_test.rb │ ├── rotation_coordinator_tests.rb │ ├── safe_buffer_test.rb │ ├── secure_compare_rotator_test.rb │ ├── security_utils_test.rb │ ├── share_lock_test.rb │ ├── silence_logger_test.rb │ ├── string_inquirer_test.rb │ ├── subscriber_test.rb │ ├── tagged_logging_test.rb │ ├── test_case_test.rb │ ├── testing │ ├── after_teardown_test.rb │ ├── constant_lookup_test.rb │ ├── file_fixtures_test.rb │ └── method_call_assertions_test.rb │ ├── time_travel_test.rb │ ├── time_zone_test.rb │ ├── time_zone_test_helpers.rb │ ├── transliterate_test.rb │ ├── xml_mini │ ├── jdom_engine_test.rb │ ├── libxml_engine_test.rb │ ├── libxmlsax_engine_test.rb │ ├── nokogiri_engine_test.rb │ ├── nokogirisax_engine_test.rb │ ├── rexml_engine_test.rb │ └── xml_mini_engine_test.rb │ └── xml_mini_test.rb ├── codespell.txt ├── docs ├── 2_2_release_notes.html ├── 2_3_release_notes.html ├── 3_0_release_notes.html ├── 3_1_release_notes.html ├── 3_2_release_notes.html ├── 4_0_release_notes.html ├── 4_1_release_notes.html ├── 4_2_release_notes.html ├── 5_0_release_notes.html ├── 5_1_release_notes.html ├── 5_2_release_notes.html ├── 6_0_release_notes.html ├── 6_1_release_notes.html ├── 7_0_release_notes.html ├── 7_1_release_notes.html ├── CNAME ├── action_cable_overview.html ├── action_controller_overview.html ├── action_mailbox_basics.html ├── action_mailer_basics.html ├── action_text_overview.html ├── action_view_helpers.html ├── action_view_overview.html ├── active_job_basics.html ├── active_model_basics.html ├── active_record_basics.html ├── active_record_callbacks.html ├── active_record_encryption.html ├── active_record_migrations.html ├── active_record_multiple_databases.html ├── active_record_postgresql.html ├── active_record_querying.html ├── active_record_validations.html ├── active_storage_overview.html ├── active_support_core_extensions.html ├── active_support_instrumentation.html ├── api_app.html ├── api_documentation_guidelines.html ├── asset_pipeline.html ├── association_basics.html ├── autoloading_and_reloading_constants.html ├── caching_with_rails.html ├── classic_to_zeitwerk_howto.html ├── command_line.html ├── configuring.html ├── contributing_to_ruby_on_rails.html ├── debugging_rails_applications.html ├── development_dependencies_install.html ├── engines.html ├── error_reporting.html ├── form_helpers.html ├── generators.html ├── getting_started.html ├── i18n.html ├── images │ ├── 4_0_release_notes │ │ └── rails4_features.png │ ├── active_record_querying │ │ └── bookstore_models.png │ ├── association_basics │ │ ├── belongs_to.png │ │ ├── habtm.png │ │ ├── has_many.png │ │ ├── has_many_through.png │ │ ├── has_one.png │ │ ├── has_one_through.png │ │ └── polymorphic.png │ ├── book_icon.gif │ ├── book_icon.svg │ ├── bullet.gif │ ├── bullet_dark.gif │ ├── chapters_icon.gif │ ├── check_bullet.gif │ ├── check_icon.svg │ ├── cog_icon.svg │ ├── dynamic_method_class_eval.png │ ├── favicon.ico │ ├── feature_tile.gif │ ├── footer_tile.gif │ ├── getting_started │ │ ├── article_with_comments.png │ │ ├── challenge.png │ │ └── rails_welcome.png │ ├── grey_bullet.gif │ ├── hand_icon.svg │ ├── header_tile.gif │ ├── i18n │ │ ├── demo_html_safe.png │ │ ├── demo_localized_pirate.png │ │ ├── demo_translated_en.png │ │ ├── demo_translated_pirate.png │ │ ├── demo_translation_missing.png │ │ └── demo_untranslated.png │ ├── info_icon.svg │ ├── nav_arrow.gif │ ├── note_icon.svg │ ├── rails_guides_kindle_cover.jpg │ ├── rails_guides_logo.gif │ ├── rails_guides_logo_1x.png │ ├── rails_guides_logo_2x.png │ ├── security │ │ ├── csrf.png │ │ └── session_fixation.png │ ├── tab_grey.gif │ ├── tab_info.gif │ ├── tab_note.gif │ ├── tab_red.gif │ ├── tab_yellow.gif │ └── up_white_arrow.png ├── index.html ├── initialization.html ├── javascripts │ ├── .gitattributes │ ├── @hotwired--turbo.js │ ├── clipboard.js │ └── guides.js ├── layouts_and_rendering.html ├── maintenance_policy.html ├── plugins.html ├── rails_application_templates.html ├── rails_on_rack.html ├── robots.txt ├── routing.html ├── ruby_on_rails_guides_guidelines.html ├── security.html ├── stylesheets │ ├── dark.css │ ├── epub.css │ ├── highlight.css │ ├── main.css │ ├── print.css │ ├── reset.css │ └── style.css ├── testing.html ├── threading_and_code_execution.html ├── upgrading_ruby_on_rails.html ├── webpacker.html └── working_with_javascript_in_rails.html ├── guides ├── .document ├── .rubocop.yml ├── CHANGELOG.md ├── Rakefile ├── assets │ ├── images │ │ ├── 4_0_release_notes │ │ │ └── rails4_features.png │ │ ├── active_record_querying │ │ │ └── bookstore_models.png │ │ ├── association_basics │ │ │ ├── belongs_to.png │ │ │ ├── habtm.png │ │ │ ├── has_many.png │ │ │ ├── has_many_through.png │ │ │ ├── has_one.png │ │ │ ├── has_one_through.png │ │ │ └── polymorphic.png │ │ ├── book_icon.gif │ │ ├── book_icon.svg │ │ ├── bullet.gif │ │ ├── bullet_dark.gif │ │ ├── chapters_icon.gif │ │ ├── check_bullet.gif │ │ ├── check_icon.svg │ │ ├── cog_icon.svg │ │ ├── dynamic_method_class_eval.png │ │ ├── favicon.ico │ │ ├── feature_tile.gif │ │ ├── footer_tile.gif │ │ ├── getting_started │ │ │ ├── article_with_comments.png │ │ │ ├── challenge.png │ │ │ └── rails_welcome.png │ │ ├── grey_bullet.gif │ │ ├── hand_icon.svg │ │ ├── header_tile.gif │ │ ├── i18n │ │ │ ├── demo_html_safe.png │ │ │ ├── demo_localized_pirate.png │ │ │ ├── demo_translated_en.png │ │ │ ├── demo_translated_pirate.png │ │ │ ├── demo_translation_missing.png │ │ │ └── demo_untranslated.png │ │ ├── info_icon.svg │ │ ├── nav_arrow.gif │ │ ├── note_icon.svg │ │ ├── rails_guides_kindle_cover.jpg │ │ ├── rails_guides_logo.gif │ │ ├── rails_guides_logo_1x.png │ │ ├── rails_guides_logo_2x.png │ │ ├── security │ │ │ ├── csrf.png │ │ │ └── session_fixation.png │ │ ├── tab_grey.gif │ │ ├── tab_info.gif │ │ ├── tab_note.gif │ │ ├── tab_red.gif │ │ ├── tab_yellow.gif │ │ └── up_white_arrow.png │ ├── javascripts │ │ ├── .gitattributes │ │ ├── @hotwired--turbo.js │ │ ├── clipboard.js │ │ └── guides.js │ ├── robots.txt │ └── stylesheets │ │ ├── dark.css │ │ ├── epub.css │ │ ├── highlight.css │ │ ├── main.css │ │ ├── print.css │ │ ├── reset.css │ │ └── style.css ├── bug_report_templates │ ├── action_controller_gem.rb │ ├── action_controller_main.rb │ ├── action_mailbox_gem.rb │ ├── action_mailbox_main.rb │ ├── active_job_gem.rb │ ├── active_job_main.rb │ ├── active_record_gem.rb │ ├── active_record_main.rb │ ├── active_record_migrations_gem.rb │ ├── active_record_migrations_main.rb │ ├── active_storage_gem.rb │ ├── active_storage_main.rb │ ├── benchmark.rb │ ├── generic_gem.rb │ └── generic_main.rb ├── rails_guides.rb ├── rails_guides │ ├── epub.rb │ ├── epub_packer.rb │ ├── generator.rb │ ├── helpers.rb │ ├── markdown.rb │ └── markdown │ │ ├── epub_renderer.rb │ │ └── renderer.rb ├── source │ ├── 2_2_release_notes.md │ ├── 2_3_release_notes.md │ ├── 3_0_release_notes.md │ ├── 3_1_release_notes.md │ ├── 3_2_release_notes.md │ ├── 4_0_release_notes.md │ ├── 4_1_release_notes.md │ ├── 4_2_release_notes.md │ ├── 5_0_release_notes.md │ ├── 5_1_release_notes.md │ ├── 5_2_release_notes.md │ ├── 6_0_release_notes.md │ ├── 6_1_release_notes.md │ ├── 7_0_release_notes.md │ ├── 7_1_release_notes.md │ ├── _license.html.erb │ ├── _welcome.html.erb │ ├── action_cable_overview.md │ ├── action_controller_overview.md │ ├── action_mailbox_basics.md │ ├── action_mailer_basics.md │ ├── action_text_overview.md │ ├── action_view_helpers.md │ ├── action_view_overview.md │ ├── active_job_basics.md │ ├── active_model_basics.md │ ├── active_record_basics.md │ ├── active_record_callbacks.md │ ├── active_record_encryption.md │ ├── active_record_migrations.md │ ├── active_record_multiple_databases.md │ ├── active_record_postgresql.md │ ├── active_record_querying.md │ ├── active_record_validations.md │ ├── active_storage_overview.md │ ├── active_support_core_extensions.md │ ├── active_support_instrumentation.md │ ├── api_app.md │ ├── api_documentation_guidelines.md │ ├── asset_pipeline.md │ ├── association_basics.md │ ├── autoloading_and_reloading_constants.md │ ├── caching_with_rails.md │ ├── classic_to_zeitwerk_howto.md │ ├── command_line.md │ ├── configuring.md │ ├── contributing_to_ruby_on_rails.md │ ├── debugging_rails_applications.md │ ├── development_dependencies_install.md │ ├── documents.yaml │ ├── engines.md │ ├── epub │ │ ├── copyright.html.erb │ │ ├── layout.html.erb │ │ ├── rails_guides.opf.erb │ │ ├── toc.html.erb │ │ ├── toc.ncx.erb │ │ └── welcome.html.erb │ ├── error_reporting.md │ ├── form_helpers.md │ ├── generators.md │ ├── getting_started.md │ ├── i18n.md │ ├── index.html.erb │ ├── initialization.md │ ├── ko │ │ ├── 2_2_release_notes.md │ │ ├── 2_3_release_notes.md │ │ ├── 3_0_release_notes.md │ │ ├── 3_1_release_notes.md │ │ ├── 3_2_release_notes.md │ │ ├── 4_0_release_notes.md │ │ ├── 4_1_release_notes.md │ │ ├── 4_2_release_notes.md │ │ ├── 5_0_release_notes.md │ │ ├── 5_1_release_notes.md │ │ ├── 5_2_release_notes.md │ │ ├── 6_0_release_notes.md │ │ ├── 6_1_release_notes.md │ │ ├── 7_0_release_notes.md │ │ ├── 7_1_release_notes.md │ │ ├── _license.html.erb │ │ ├── _welcome.html.erb │ │ ├── action_cable_overview.md │ │ ├── action_controller_overview.md │ │ ├── action_mailbox_basics.md │ │ ├── action_mailer_basics.md │ │ ├── action_text_overview.md │ │ ├── action_view_helpers.md │ │ ├── action_view_overview.md │ │ ├── active_job_basics.md │ │ ├── active_model_basics.md │ │ ├── active_record_basics.md │ │ ├── active_record_callbacks.md │ │ ├── active_record_encryption.md │ │ ├── active_record_migrations.md │ │ ├── active_record_multiple_databases.md │ │ ├── active_record_postgresql.md │ │ ├── active_record_querying.md │ │ ├── active_record_validations.md │ │ ├── active_storage_overview.md │ │ ├── active_support_core_extensions.md │ │ ├── active_support_instrumentation.md │ │ ├── api_app.md │ │ ├── api_documentation_guidelines.md │ │ ├── asset_pipeline.md │ │ ├── association_basics.md │ │ ├── autoloading_and_reloading_constants.md │ │ ├── caching_with_rails.md │ │ ├── classic_to_zeitwerk_howto.md │ │ ├── command_line.md │ │ ├── configuring.md │ │ ├── contributing_to_ruby_on_rails.md │ │ ├── debugging_rails_applications.md │ │ ├── development_dependencies_install.md │ │ ├── documents.yaml │ │ ├── engines.md │ │ ├── epub │ │ │ ├── copyright.html.erb │ │ │ ├── layout.html.erb │ │ │ ├── rails_guides.opf.erb │ │ │ ├── toc.html.erb │ │ │ ├── toc.ncx.erb │ │ │ └── welcome.html.erb │ │ ├── error_reporting.md │ │ ├── form_helpers.md │ │ ├── generators.md │ │ ├── getting_started.md │ │ ├── i18n.md │ │ ├── index.html.erb │ │ ├── initialization.md │ │ ├── layout.html.erb │ │ ├── layouts_and_rendering.md │ │ ├── maintenance_policy.md │ │ ├── plugins.md │ │ ├── rails_application_templates.md │ │ ├── rails_on_rack.md │ │ ├── routing.md │ │ ├── ruby_on_rails_guides_guidelines.md │ │ ├── security.md │ │ ├── testing.md │ │ ├── threading_and_code_execution.md │ │ ├── upgrading_ruby_on_rails.md │ │ ├── webpacker.md │ │ └── working_with_javascript_in_rails.md │ ├── layout.html.erb │ ├── layouts_and_rendering.md │ ├── maintenance_policy.md │ ├── plugins.md │ ├── rails_application_templates.md │ ├── rails_on_rack.md │ ├── routing.md │ ├── ruby_on_rails_guides_guidelines.md │ ├── security.md │ ├── testing.md │ ├── threading_and_code_execution.md │ ├── upgrading_ruby_on_rails.md │ ├── webpacker.md │ └── working_with_javascript_in_rails.md └── w3c_validator.rb ├── package.json ├── rails.gemspec ├── railties ├── .gitignore ├── CHANGELOG.md ├── MIT-LICENSE ├── RDOC_MAIN.md ├── README.rdoc ├── Rakefile ├── bin │ └── test ├── exe │ └── rails ├── lib │ ├── minitest │ │ └── rails_plugin.rb │ ├── rails.rb │ └── rails │ │ ├── all.rb │ │ ├── api │ │ ├── generator.rb │ │ └── task.rb │ │ ├── app_loader.rb │ │ ├── app_updater.rb │ │ ├── application.rb │ │ ├── application │ │ ├── bootstrap.rb │ │ ├── configuration.rb │ │ ├── default_middleware_stack.rb │ │ ├── dummy_config.rb │ │ ├── finisher.rb │ │ └── routes_reloader.rb │ │ ├── application_controller.rb │ │ ├── autoloaders.rb │ │ ├── autoloaders │ │ └── inflector.rb │ │ ├── backtrace_cleaner.rb │ │ ├── cli.rb │ │ ├── code_statistics.rb │ │ ├── code_statistics_calculator.rb │ │ ├── command.rb │ │ ├── command │ │ ├── actions.rb │ │ ├── base.rb │ │ ├── behavior.rb │ │ ├── environment_argument.rb │ │ └── helpers │ │ │ └── editor.rb │ │ ├── commands.rb │ │ ├── commands │ │ ├── about │ │ │ └── about_command.rb │ │ ├── application │ │ │ └── application_command.rb │ │ ├── console │ │ │ └── console_command.rb │ │ ├── credentials │ │ │ ├── USAGE │ │ │ ├── credentials_command.rb │ │ │ └── credentials_command │ │ │ │ └── diffing.rb │ │ ├── db │ │ │ └── system │ │ │ │ └── change │ │ │ │ └── change_command.rb │ │ ├── dbconsole │ │ │ └── dbconsole_command.rb │ │ ├── destroy │ │ │ └── destroy_command.rb │ │ ├── dev │ │ │ └── dev_command.rb │ │ ├── encrypted │ │ │ ├── USAGE │ │ │ └── encrypted_command.rb │ │ ├── gem_help │ │ │ ├── USAGE │ │ │ └── gem_help_command.rb │ │ ├── generate │ │ │ └── generate_command.rb │ │ ├── help │ │ │ ├── USAGE │ │ │ └── help_command.rb │ │ ├── initializers │ │ │ └── initializers_command.rb │ │ ├── middleware │ │ │ └── middleware_command.rb │ │ ├── new │ │ │ └── new_command.rb │ │ ├── notes │ │ │ └── notes_command.rb │ │ ├── plugin │ │ │ └── plugin_command.rb │ │ ├── rake │ │ │ └── rake_command.rb │ │ ├── restart │ │ │ └── restart_command.rb │ │ ├── routes │ │ │ └── routes_command.rb │ │ ├── runner │ │ │ ├── USAGE │ │ │ └── runner_command.rb │ │ ├── secret │ │ │ └── secret_command.rb │ │ ├── secrets │ │ │ ├── USAGE │ │ │ └── secrets_command.rb │ │ ├── server │ │ │ └── server_command.rb │ │ ├── test │ │ │ ├── USAGE │ │ │ └── test_command.rb │ │ ├── unused_routes │ │ │ └── unused_routes_command.rb │ │ └── version │ │ │ └── version_command.rb │ │ ├── configuration.rb │ │ ├── console │ │ ├── app.rb │ │ └── helpers.rb │ │ ├── deprecator.rb │ │ ├── dev_caching.rb │ │ ├── engine.rb │ │ ├── engine │ │ ├── commands.rb │ │ ├── configuration.rb │ │ ├── railties.rb │ │ └── updater.rb │ │ ├── gem_version.rb │ │ ├── generators.rb │ │ ├── generators │ │ ├── actions.rb │ │ ├── actions │ │ │ └── create_migration.rb │ │ ├── active_model.rb │ │ ├── app_base.rb │ │ ├── app_name.rb │ │ ├── base.rb │ │ ├── database.rb │ │ ├── erb.rb │ │ ├── erb │ │ │ ├── controller │ │ │ │ ├── controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── view.html.erb.tt │ │ │ ├── mailer │ │ │ │ ├── mailer_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── layout.html.erb.tt │ │ │ │ │ ├── layout.text.erb.tt │ │ │ │ │ ├── view.html.erb.tt │ │ │ │ │ └── view.text.erb.tt │ │ │ └── scaffold │ │ │ │ ├── scaffold_generator.rb │ │ │ │ └── templates │ │ │ │ ├── _form.html.erb.tt │ │ │ │ ├── edit.html.erb.tt │ │ │ │ ├── index.html.erb.tt │ │ │ │ ├── new.html.erb.tt │ │ │ │ ├── partial.html.erb.tt │ │ │ │ └── show.html.erb.tt │ │ ├── generated_attribute.rb │ │ ├── migration.rb │ │ ├── model_helpers.rb │ │ ├── named_base.rb │ │ ├── rails │ │ │ ├── app │ │ │ │ ├── USAGE │ │ │ │ ├── app_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── Dockerfile.tt │ │ │ │ │ ├── Gemfile.tt │ │ │ │ │ ├── README.md.tt │ │ │ │ │ ├── Rakefile.tt │ │ │ │ │ ├── app │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── manifest.js.tt │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ └── application.css.tt │ │ │ │ │ ├── channels │ │ │ │ │ │ └── application_cable │ │ │ │ │ │ │ ├── channel.rb.tt │ │ │ │ │ │ │ └── connection.rb.tt │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── application_controller.rb.tt │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── application_helper.rb.tt │ │ │ │ │ ├── jobs │ │ │ │ │ │ └── application_job.rb.tt │ │ │ │ │ ├── mailers │ │ │ │ │ │ └── application_mailer.rb.tt │ │ │ │ │ ├── models │ │ │ │ │ │ └── application_record.rb.tt │ │ │ │ │ └── views │ │ │ │ │ │ └── layouts │ │ │ │ │ │ ├── application.html.erb.tt │ │ │ │ │ │ ├── mailer.html.erb.tt │ │ │ │ │ │ └── mailer.text.erb.tt │ │ │ │ │ ├── bin │ │ │ │ │ ├── rails.tt │ │ │ │ │ ├── rake.tt │ │ │ │ │ └── setup.tt │ │ │ │ │ ├── config.ru.tt │ │ │ │ │ ├── config │ │ │ │ │ ├── application.rb.tt │ │ │ │ │ ├── boot.rb.tt │ │ │ │ │ ├── cable.yml.tt │ │ │ │ │ ├── databases │ │ │ │ │ │ ├── jdbc.yml.tt │ │ │ │ │ │ ├── jdbcmysql.yml.tt │ │ │ │ │ │ ├── jdbcpostgresql.yml.tt │ │ │ │ │ │ ├── jdbcsqlite3.yml.tt │ │ │ │ │ │ ├── mysql.yml.tt │ │ │ │ │ │ ├── oracle.yml.tt │ │ │ │ │ │ ├── postgresql.yml.tt │ │ │ │ │ │ ├── sqlite3.yml.tt │ │ │ │ │ │ ├── sqlserver.yml.tt │ │ │ │ │ │ └── trilogy.yml.tt │ │ │ │ │ ├── environment.rb.tt │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── development.rb.tt │ │ │ │ │ │ ├── production.rb.tt │ │ │ │ │ │ └── test.rb.tt │ │ │ │ │ ├── initializers │ │ │ │ │ │ ├── assets.rb.tt │ │ │ │ │ │ ├── content_security_policy.rb.tt │ │ │ │ │ │ ├── cors.rb.tt │ │ │ │ │ │ ├── filter_parameter_logging.rb.tt │ │ │ │ │ │ ├── inflections.rb.tt │ │ │ │ │ │ ├── new_framework_defaults_7_1.rb.tt │ │ │ │ │ │ └── permissions_policy.rb.tt │ │ │ │ │ ├── locales │ │ │ │ │ │ └── en.yml │ │ │ │ │ ├── puma.rb.tt │ │ │ │ │ ├── routes.rb.tt │ │ │ │ │ └── storage.yml.tt │ │ │ │ │ ├── db │ │ │ │ │ └── seeds.rb.tt │ │ │ │ │ ├── docker-entrypoint.tt │ │ │ │ │ ├── dockerignore.tt │ │ │ │ │ ├── gitattributes.tt │ │ │ │ │ ├── gitignore.tt │ │ │ │ │ ├── node-version.tt │ │ │ │ │ ├── public │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 422.html │ │ │ │ │ ├── 500.html │ │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ │ │ ├── ruby-version.tt │ │ │ │ │ └── test │ │ │ │ │ ├── application_system_test_case.rb.tt │ │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ └── connection_test.rb.tt │ │ │ │ │ └── test_helper.rb.tt │ │ │ ├── application_record │ │ │ │ └── application_record_generator.rb │ │ │ ├── benchmark │ │ │ │ ├── USAGE │ │ │ │ ├── benchmark_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── benchmark.rb.tt │ │ │ ├── controller │ │ │ │ ├── USAGE │ │ │ │ ├── controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── controller.rb.tt │ │ │ ├── credentials │ │ │ │ ├── credentials_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── credentials.yml.tt │ │ │ ├── db │ │ │ │ └── system │ │ │ │ │ └── change │ │ │ │ │ └── change_generator.rb │ │ │ ├── encrypted_file │ │ │ │ └── encrypted_file_generator.rb │ │ │ ├── encryption_key_file │ │ │ │ └── encryption_key_file_generator.rb │ │ │ ├── generator │ │ │ │ ├── USAGE │ │ │ │ ├── generator_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── %file_name%_generator.rb.tt │ │ │ │ │ ├── USAGE.tt │ │ │ │ │ └── templates │ │ │ │ │ └── .empty_directory │ │ │ ├── helper │ │ │ │ ├── USAGE │ │ │ │ ├── helper_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── helper.rb.tt │ │ │ ├── integration_test │ │ │ │ ├── USAGE │ │ │ │ └── integration_test_generator.rb │ │ │ ├── master_key │ │ │ │ └── master_key_generator.rb │ │ │ ├── migration │ │ │ │ ├── USAGE │ │ │ │ └── migration_generator.rb │ │ │ ├── model │ │ │ │ └── model_generator.rb │ │ │ ├── plugin │ │ │ │ ├── USAGE │ │ │ │ ├── plugin_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── %name%.gemspec.tt │ │ │ │ │ ├── Gemfile.tt │ │ │ │ │ ├── MIT-LICENSE.tt │ │ │ │ │ ├── README.md.tt │ │ │ │ │ ├── Rakefile.tt │ │ │ │ │ ├── app │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ │ └── application_controller.rb.tt │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ │ └── application_helper.rb.tt │ │ │ │ │ ├── jobs │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ │ └── application_job.rb.tt │ │ │ │ │ ├── mailers │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ │ └── application_mailer.rb.tt │ │ │ │ │ ├── models │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ │ └── application_record.rb.tt │ │ │ │ │ └── views │ │ │ │ │ │ └── layouts │ │ │ │ │ │ └── %namespaced_name% │ │ │ │ │ │ └── application.html.erb.tt │ │ │ │ │ ├── bin │ │ │ │ │ ├── rails.tt │ │ │ │ │ └── test.tt │ │ │ │ │ ├── config │ │ │ │ │ └── routes.rb.tt │ │ │ │ │ ├── gitignore.tt │ │ │ │ │ ├── lib │ │ │ │ │ ├── %namespaced_name%.rb.tt │ │ │ │ │ ├── %namespaced_name% │ │ │ │ │ │ ├── engine.rb.tt │ │ │ │ │ │ ├── railtie.rb.tt │ │ │ │ │ │ └── version.rb.tt │ │ │ │ │ └── tasks │ │ │ │ │ │ └── %namespaced_name%_tasks.rake.tt │ │ │ │ │ ├── rails │ │ │ │ │ ├── boot.rb.tt │ │ │ │ │ ├── dummy_manifest.js.tt │ │ │ │ │ ├── engine_manifest.js.tt │ │ │ │ │ ├── javascripts.js.tt │ │ │ │ │ ├── routes.rb.tt │ │ │ │ │ └── stylesheets.css │ │ │ │ │ └── test │ │ │ │ │ ├── %namespaced_name%_test.rb.tt │ │ │ │ │ ├── application_system_test_case.rb.tt │ │ │ │ │ ├── integration │ │ │ │ │ └── navigation_test.rb.tt │ │ │ │ │ └── test_helper.rb.tt │ │ │ ├── resource │ │ │ │ ├── USAGE │ │ │ │ └── resource_generator.rb │ │ │ ├── resource_route │ │ │ │ └── resource_route_generator.rb │ │ │ ├── scaffold │ │ │ │ ├── USAGE │ │ │ │ └── scaffold_generator.rb │ │ │ ├── scaffold_controller │ │ │ │ ├── USAGE │ │ │ │ ├── scaffold_controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── api_controller.rb.tt │ │ │ │ │ └── controller.rb.tt │ │ │ ├── system_test │ │ │ │ ├── USAGE │ │ │ │ └── system_test_generator.rb │ │ │ └── task │ │ │ │ ├── USAGE │ │ │ │ ├── task_generator.rb │ │ │ │ └── templates │ │ │ │ └── task.rb.tt │ │ ├── resource_helpers.rb │ │ ├── test_case.rb │ │ ├── test_unit.rb │ │ ├── test_unit │ │ │ ├── controller │ │ │ │ ├── controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── functional_test.rb.tt │ │ │ ├── generator │ │ │ │ ├── generator_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── generator_test.rb.tt │ │ │ ├── helper │ │ │ │ └── helper_generator.rb │ │ │ ├── integration │ │ │ │ ├── integration_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── integration_test.rb.tt │ │ │ ├── job │ │ │ │ ├── job_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── unit_test.rb.tt │ │ │ ├── mailer │ │ │ │ ├── mailer_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── functional_test.rb.tt │ │ │ │ │ └── preview.rb.tt │ │ │ ├── model │ │ │ │ ├── model_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── fixtures.yml.tt │ │ │ │ │ └── unit_test.rb.tt │ │ │ ├── plugin │ │ │ │ ├── plugin_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── %file_name%_test.rb.tt │ │ │ │ │ └── test_helper.rb │ │ │ ├── scaffold │ │ │ │ ├── scaffold_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── api_functional_test.rb.tt │ │ │ │ │ ├── functional_test.rb.tt │ │ │ │ │ └── system_test.rb.tt │ │ │ └── system │ │ │ │ ├── system_generator.rb │ │ │ │ └── templates │ │ │ │ ├── application_system_test_case.rb.tt │ │ │ │ └── system_test.rb.tt │ │ └── testing │ │ │ ├── assertions.rb │ │ │ ├── behavior.rb │ │ │ └── setup_and_teardown.rb │ │ ├── health_controller.rb │ │ ├── info.rb │ │ ├── info_controller.rb │ │ ├── initializable.rb │ │ ├── mailers_controller.rb │ │ ├── paths.rb │ │ ├── plugin │ │ └── test.rb │ │ ├── rack.rb │ │ ├── rack │ │ └── logger.rb │ │ ├── rackup │ │ └── server.rb │ │ ├── railtie.rb │ │ ├── railtie │ │ ├── configurable.rb │ │ └── configuration.rb │ │ ├── ruby_version_check.rb │ │ ├── secrets.rb │ │ ├── source_annotation_extractor.rb │ │ ├── tasks.rb │ │ ├── tasks │ │ ├── engine.rake │ │ ├── framework.rake │ │ ├── log.rake │ │ ├── misc.rake │ │ ├── statistics.rake │ │ ├── tmp.rake │ │ ├── yarn.rake │ │ └── zeitwerk.rake │ │ ├── templates │ │ ├── layouts │ │ │ └── application.html.erb │ │ └── rails │ │ │ ├── info │ │ │ ├── properties.html.erb │ │ │ └── routes.html.erb │ │ │ ├── mailers │ │ │ ├── email.html.erb │ │ │ ├── index.html.erb │ │ │ └── mailer.html.erb │ │ │ └── welcome │ │ │ └── index.html.erb │ │ ├── test_help.rb │ │ ├── test_unit │ │ ├── line_filtering.rb │ │ ├── railtie.rb │ │ ├── reporter.rb │ │ ├── runner.rb │ │ ├── test_parser.rb │ │ └── testing.rake │ │ ├── version.rb │ │ └── welcome_controller.rb ├── railties.gemspec └── test │ ├── abstract_unit.rb │ ├── app_loader_test.rb │ ├── application │ ├── action_controller_test_case_integration_test.rb │ ├── asset_debugging_test.rb │ ├── assets_test.rb │ ├── bin_setup_test.rb │ ├── configuration │ │ └── custom_test.rb │ ├── configuration_test.rb │ ├── console_test.rb │ ├── content_security_policy_test.rb │ ├── credentials_test.rb │ ├── current_attributes_integration_test.rb │ ├── dbconsole_test.rb │ ├── generators_test.rb │ ├── help_test.rb │ ├── initializers │ │ ├── frameworks_test.rb │ │ ├── hooks_test.rb │ │ ├── i18n_test.rb │ │ ├── load_path_test.rb │ │ └── notifications_test.rb │ ├── integration_test_case_test.rb │ ├── loading_test.rb │ ├── mailer_previews_test.rb │ ├── middleware │ │ ├── cache_test.rb │ │ ├── cookies_test.rb │ │ ├── exceptions_test.rb │ │ ├── remote_ip_test.rb │ │ ├── sendfile_test.rb │ │ ├── session_test.rb │ │ └── static_test.rb │ ├── multi_db_rake_test.rb │ ├── multiple_applications_test.rb │ ├── paths_test.rb │ ├── per_request_digest_cache_test.rb │ ├── permissions_policy_test.rb │ ├── query_logs_test.rb │ ├── rack │ │ └── logger_test.rb │ ├── rackup_test.rb │ ├── rake │ │ ├── dbs_test.rb │ │ ├── framework_test.rb │ │ ├── log_test.rb │ │ ├── migrations_test.rb │ │ ├── multi_dbs_test.rb │ │ └── tmp_test.rb │ ├── rake_test.rb │ ├── rendering_test.rb │ ├── routing_test.rb │ ├── runner_test.rb │ ├── server_test.rb │ ├── system_test_case_test.rb │ ├── test_runner_test.rb │ ├── test_test.rb │ ├── url_generation_test.rb │ ├── version_test.rb │ ├── view_reloading_test.rb │ ├── watcher_test.rb │ ├── zeitwerk_inflector_test.rb │ └── zeitwerk_integration_test.rb │ ├── backtrace_cleaner_test.rb │ ├── code_statistics_calculator_test.rb │ ├── code_statistics_test.rb │ ├── command │ ├── base_test.rb │ └── help_integration_test.rb │ ├── commands │ ├── application_test.rb │ ├── console_test.rb │ ├── credentials_test.rb │ ├── db_system_change_test.rb │ ├── dbconsole_test.rb │ ├── dev_test.rb │ ├── encrypted_test.rb │ ├── initializers_test.rb │ ├── middleware_test.rb │ ├── notes_test.rb │ ├── rake_test.rb │ ├── restart_test.rb │ ├── routes_test.rb │ ├── runner_test.rb │ ├── secrets_test.rb │ ├── server_test.rb │ ├── statistics_test.rb │ ├── test_test.rb │ └── unused_routes_test.rb │ ├── configuration │ ├── dynamic_options_test.rb │ └── middleware_stack_proxy_test.rb │ ├── console_helpers.rb │ ├── engine │ ├── commands_test.rb │ └── test_test.rb │ ├── engine_test.rb │ ├── env_helpers.rb │ ├── fixtures │ ├── Rakefile │ └── lib │ │ ├── create_test_dummy_template.rb │ │ ├── generators │ │ ├── active_record │ │ │ └── fixjour_generator.rb │ │ ├── fixjour_generator.rb │ │ ├── model_generator.rb │ │ └── usage_template │ │ │ ├── USAGE │ │ │ └── usage_template_generator.rb │ │ ├── rails │ │ └── generators │ │ │ └── foobar │ │ │ └── foobar_generator.rb │ │ └── template.rb │ ├── generators │ ├── action_mailbox_install_generator_test.rb │ ├── action_text_install_generator_test.rb │ ├── actions_test.rb │ ├── api_app_generator_test.rb │ ├── app_generator_test.rb │ ├── application_record_generator_test.rb │ ├── argv_scrubber_test.rb │ ├── benchmark_generator_test.rb │ ├── channel_generator_test.rb │ ├── controller_generator_test.rb │ ├── create_migration_test.rb │ ├── db_system_change_generator_test.rb │ ├── generated_attribute_test.rb │ ├── generator_generator_test.rb │ ├── generator_test.rb │ ├── generators_test_helper.rb │ ├── helper_generator_test.rb │ ├── hook_generator_test.rb │ ├── integration_test_generator_test.rb │ ├── job_generator_test.rb │ ├── mailer_generator_test.rb │ ├── migration_generator_test.rb │ ├── model_generator_test.rb │ ├── multi_db_generator_test.rb │ ├── named_base_test.rb │ ├── namespaced_generators_test.rb │ ├── orm_test.rb │ ├── plugin_generator_test.rb │ ├── plugin_test_helper.rb │ ├── plugin_test_runner_test.rb │ ├── resource_generator_test.rb │ ├── scaffold_controller_generator_test.rb │ ├── scaffold_generator_test.rb │ ├── shared_generator_tests.rb │ ├── system_test_generator_test.rb │ ├── task_generator_test.rb │ └── test_runner_in_engine_test.rb │ ├── generators_test.rb │ ├── initializable_test.rb │ ├── isolation │ ├── abstract_unit.rb │ └── assets │ │ ├── config │ │ ├── webpack │ │ │ ├── base.js │ │ │ ├── development.js │ │ │ ├── production.js │ │ │ └── test.js │ │ └── webpacker.yml │ │ └── package.json │ ├── json_params_parsing_test.rb │ ├── minitest │ └── rails_plugin_test.rb │ ├── path_generation_test.rb │ ├── paths_test.rb │ ├── plugin_helpers.rb │ ├── rack_logger_test.rb │ ├── rails_health_controller_test.rb │ ├── rails_info_controller_test.rb │ ├── rails_info_test.rb │ ├── railties │ ├── engine_test.rb │ ├── generators_test.rb │ ├── http_request_test.rb │ ├── mounted_engine_test.rb │ └── railtie_test.rb │ ├── secrets_test.rb │ ├── test_unit │ ├── reporter_test.rb │ └── test_parser_test.rb │ └── version_test.rb ├── tasks ├── release.rb └── release_announcement_draft.erb ├── tools ├── README.md ├── console ├── line_statistics ├── profile ├── test.rb └── test_common.rb ├── version.rb └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.devcontainer/boot.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .rubocop.yml @rafaelfranca 2 | -------------------------------------------------------------------------------- /.github/autolabeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/autolabeler.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/security.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/verba-sequentur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/verba-sequentur.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/mdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/workflows/mdl.yml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | style "#{File.dirname(__FILE__)}/.mdlrc.rb" -------------------------------------------------------------------------------- /.mdlrc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.mdlrc.rb -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.yardopts -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/.yarnrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/Brewfile -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /RAILS_VERSION: -------------------------------------------------------------------------------- 1 | 7.1.0.alpha 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING_RAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/RELEASING_RAILS.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/Rakefile -------------------------------------------------------------------------------- /actioncable/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/.babelrc -------------------------------------------------------------------------------- /actioncable/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/.eslintrc -------------------------------------------------------------------------------- /actioncable/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /test/javascript/compiled/ 3 | /tmp/ 4 | -------------------------------------------------------------------------------- /actioncable/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/CHANGELOG.md -------------------------------------------------------------------------------- /actioncable/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/MIT-LICENSE -------------------------------------------------------------------------------- /actioncable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/README.md -------------------------------------------------------------------------------- /actioncable/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/Rakefile -------------------------------------------------------------------------------- /actioncable/actioncable.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/actioncable.gemspec -------------------------------------------------------------------------------- /actioncable/app/assets/javascripts/.gitattributes: -------------------------------------------------------------------------------- 1 | action_cable.js linguist-generated 2 | -------------------------------------------------------------------------------- /actioncable/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/bin/test -------------------------------------------------------------------------------- /actioncable/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/karma.conf.js -------------------------------------------------------------------------------- /actioncable/lib/action_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/lib/action_cable.rb -------------------------------------------------------------------------------- /actioncable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/package.json -------------------------------------------------------------------------------- /actioncable/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/rollup.config.js -------------------------------------------------------------------------------- /actioncable/rollup.config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/rollup.config.test.js -------------------------------------------------------------------------------- /actioncable/test/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/client_test.rb -------------------------------------------------------------------------------- /actioncable/test/server/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/server/base_test.rb -------------------------------------------------------------------------------- /actioncable/test/stubs/global_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/stubs/global_id.rb -------------------------------------------------------------------------------- /actioncable/test/stubs/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/stubs/room.rb -------------------------------------------------------------------------------- /actioncable/test/stubs/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/stubs/user.rb -------------------------------------------------------------------------------- /actioncable/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/test_helper.rb -------------------------------------------------------------------------------- /actioncable/test/test_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/test_helper_test.rb -------------------------------------------------------------------------------- /actioncable/test/worker_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actioncable/test/worker_test.rb -------------------------------------------------------------------------------- /actionmailbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/.gitignore -------------------------------------------------------------------------------- /actionmailbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/CHANGELOG.md -------------------------------------------------------------------------------- /actionmailbox/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/MIT-LICENSE -------------------------------------------------------------------------------- /actionmailbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/README.md -------------------------------------------------------------------------------- /actionmailbox/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/Rakefile -------------------------------------------------------------------------------- /actionmailbox/actionmailbox.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/actionmailbox.gemspec -------------------------------------------------------------------------------- /actionmailbox/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/bin/test -------------------------------------------------------------------------------- /actionmailbox/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/config/routes.rb -------------------------------------------------------------------------------- /actionmailbox/lib/action_mailbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/lib/action_mailbox.rb -------------------------------------------------------------------------------- /actionmailbox/lib/tasks/ingress.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/lib/tasks/ingress.rake -------------------------------------------------------------------------------- /actionmailbox/lib/tasks/install.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/lib/tasks/install.rake -------------------------------------------------------------------------------- /actionmailbox/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/dummy/Rakefile -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/javascript/packs/application.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/dummy/bin/rails -------------------------------------------------------------------------------- /actionmailbox/test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/dummy/bin/rake -------------------------------------------------------------------------------- /actionmailbox/test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/dummy/bin/setup -------------------------------------------------------------------------------- /actionmailbox/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/dummy/config.ru -------------------------------------------------------------------------------- /actionmailbox/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | end 3 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/dummy/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailbox/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailbox/test/test_helper.rb -------------------------------------------------------------------------------- /actionmailer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/CHANGELOG.md -------------------------------------------------------------------------------- /actionmailer/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/MIT-LICENSE -------------------------------------------------------------------------------- /actionmailer/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/README.rdoc -------------------------------------------------------------------------------- /actionmailer/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/Rakefile -------------------------------------------------------------------------------- /actionmailer/actionmailer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/actionmailer.gemspec -------------------------------------------------------------------------------- /actionmailer/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/bin/test -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/lib/action_mailer.rb -------------------------------------------------------------------------------- /actionmailer/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/test/abstract_unit.rb -------------------------------------------------------------------------------- /actionmailer/test/asset_host_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/test/asset_host_test.rb -------------------------------------------------------------------------------- /actionmailer/test/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/test/base_test.rb -------------------------------------------------------------------------------- /actionmailer/test/caching_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/test/caching_test.rb -------------------------------------------------------------------------------- /actionmailer/test/callbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionmailer/test/callbacks_test.rb -------------------------------------------------------------------------------- /actionmailer/test/fixtures/anonymous/welcome.erb: -------------------------------------------------------------------------------- 1 | Anonymous mailer body 2 | -------------------------------------------------------------------------------- /actionmailer/test/fixtures/another.path/base_mailer/welcome.erb: -------------------------------------------------------------------------------- 1 | Welcome from another path -------------------------------------------------------------------------------- /actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb: -------------------------------------------------------------------------------- 1 | <%= image_tag "somelogo.png" %> -------------------------------------------------------------------------------- /actionmailer/test/fixtures/asset_mailer/welcome.html.erb: -------------------------------------------------------------------------------- 1 | <%= image_tag "dummy.png" %> -------------------------------------------------------------------------------- /actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb: -------------------------------------------------------------------------------- 1 | Inside -------------------------------------------------------------------------------- /actionmailer/test/fixtures/auto_layout_mailer/multipart.html.erb: -------------------------------------------------------------------------------- 1 | text/html multipart -------------------------------------------------------------------------------- /actionmailer/test/fixtures/auto_layout_mailer/multipart.text.erb: -------------------------------------------------------------------------------- 1 | text/plain multipart -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/attachment_with_content.erb: -------------------------------------------------------------------------------- 1 | Attachment with content -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/attachment_with_hash.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/attachment_with_hash_default_encoding.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/different_layout.html.erb: -------------------------------------------------------------------------------- 1 | HTML -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/different_layout.text.erb: -------------------------------------------------------------------------------- 1 | PLAIN -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/email_with_translations.html.erb: -------------------------------------------------------------------------------- 1 | <%= t('.greet_user', name: 'lifo') %> -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.html.erb: -------------------------------------------------------------------------------- 1 | HTML Explicit Multipart Templates -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.text.erb: -------------------------------------------------------------------------------- 1 | TEXT Explicit Multipart Templates -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/explicit_multipart_with_one_template.erb: -------------------------------------------------------------------------------- 1 | <%= self.formats.inspect %> -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/html_only.html.erb: -------------------------------------------------------------------------------- 1 |
Hello!
2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/implicit_render_test/empty_action_with_mobile_variant.html+mobile.erb: -------------------------------------------------------------------------------- 1 | mobile 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/layouts/builder.builder: -------------------------------------------------------------------------------- 1 | xml.wrapper do 2 | xml << yield 3 | end 4 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/layouts/xhr.html.erb: -------------------------------------------------------------------------------- 1 | XHR! 2 | <%= yield %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/load_me.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class LoadMe 4 | end 5 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/localized/hello_world.de.html: -------------------------------------------------------------------------------- 1 | Guten Tag -------------------------------------------------------------------------------- /actionpack/test/fixtures/localized/hello_world.de_AT.html: -------------------------------------------------------------------------------- 1 | Guten Morgen -------------------------------------------------------------------------------- /actionpack/test/fixtures/localized/hello_world.en.html: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /actionpack/test/fixtures/localized/hello_world.it.erb: -------------------------------------------------------------------------------- 1 | Ciao Mondo -------------------------------------------------------------------------------- /actionpack/test/fixtures/multipart/hello.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /actionpack/test/fixtures/namespaced/implicit_render_test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/old_content_type/render_default_for_builder.builder: -------------------------------------------------------------------------------- 1 | xml.p "Hello world!" 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/old_content_type/render_default_for_erb.erb: -------------------------------------------------------------------------------- 1 | <%= 'hello world!' %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/post_test/post/index.html.erb: -------------------------------------------------------------------------------- 1 | Hello Firefox -------------------------------------------------------------------------------- /actionpack/test/fixtures/post_test/post/index.iphone.erb: -------------------------------------------------------------------------------- 1 | Hello iPhone -------------------------------------------------------------------------------- /actionpack/test/fixtures/post_test/super_post/index.html.erb: -------------------------------------------------------------------------------- 1 | Super Firefox -------------------------------------------------------------------------------- /actionpack/test/fixtures/post_test/super_post/index.iphone.erb: -------------------------------------------------------------------------------- 1 | Super iPhone -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/400.html: -------------------------------------------------------------------------------- 1 | 400 error fixture 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/404.html: -------------------------------------------------------------------------------- 1 | 404 error fixture 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/500.da.html: -------------------------------------------------------------------------------- 1 | 500 localized error fixture 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/500.html: -------------------------------------------------------------------------------- 1 | 500 error fixture 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/bar.html: -------------------------------------------------------------------------------- 1 | /bar.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/bar/index.html: -------------------------------------------------------------------------------- 1 | /bar/index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/bar.html: -------------------------------------------------------------------------------- 1 | /foo/bar.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/baz.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #000; 3 | } 4 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/index.html: -------------------------------------------------------------------------------- 1 | /foo/index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/other-index.html: -------------------------------------------------------------------------------- 1 | /foo/other-index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/こんにちは.html: -------------------------------------------------------------------------------- 1 | means hello in Japanese 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/foo/さようなら.html: -------------------------------------------------------------------------------- 1 | means goodbye in Japanese 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/index.html: -------------------------------------------------------------------------------- 1 | /index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/public/other-index.html: -------------------------------------------------------------------------------- 1 | /other-index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb: -------------------------------------------------------------------------------- 1 | HTML for all_types_with_layout -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb: -------------------------------------------------------------------------------- 1 | Mobile -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb: -------------------------------------------------------------------------------- 1 | Hello future from <%= @type -%>! -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb: -------------------------------------------------------------------------------- 1 | Hello iPhone future from <%= @type -%>! -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/using_defaults.html.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/using_defaults.xml.builder: -------------------------------------------------------------------------------- 1 | xml.p "Hello world!" 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/using_defaults_with_all.html.erb: -------------------------------------------------------------------------------- 1 | HTML! 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder: -------------------------------------------------------------------------------- 1 | xml.p "Hello world!" 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+phablet.erb: -------------------------------------------------------------------------------- 1 | phablet -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+tablet.erb: -------------------------------------------------------------------------------- 1 | tablet -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/variant_inline_syntax_without_block.html+phone.erb: -------------------------------------------------------------------------------- 1 | phone -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /actionpack/test/fixtures/respond_to/variant_with_implicit_template_rendering.html+mobile.erb: -------------------------------------------------------------------------------- 1 | mobile -------------------------------------------------------------------------------- /actionpack/test/fixtures/shared.html.erb: -------------------------------------------------------------------------------- 1 | Elastica -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/_partial.erb: -------------------------------------------------------------------------------- 1 | invalid -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/_partial.html.erb: -------------------------------------------------------------------------------- 1 | partial html -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/_partial.js.erb: -------------------------------------------------------------------------------- 1 | partial js -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/formatted_xml_erb.builder: -------------------------------------------------------------------------------- 1 | xml.test "failed" 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello/hello.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world_with_partial.html.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | <%= render '/test/partial' %> 3 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/implicit_content_type.atom.builder: -------------------------------------------------------------------------------- 1 | xml.atom do 2 | end 3 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/with_implicit_template.erb: -------------------------------------------------------------------------------- 1 | Hello explicitly! 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/bar.html: -------------------------------------------------------------------------------- 1 | /bar.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/bar/index.html: -------------------------------------------------------------------------------- 1 | /bar/index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/bar.html: -------------------------------------------------------------------------------- 1 | /foo/bar.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/baz.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #000; 3 | } 4 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/index.html: -------------------------------------------------------------------------------- 1 | /foo/index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/other-index.html: -------------------------------------------------------------------------------- 1 | /foo/other-index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/こんにちは.html: -------------------------------------------------------------------------------- 1 | means hello in Japanese 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/foo/さようなら.html: -------------------------------------------------------------------------------- 1 | means goodbye in Japanese 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/index.html: -------------------------------------------------------------------------------- 1 | /index.html -------------------------------------------------------------------------------- /actionpack/test/fixtures/公共/other-index.html: -------------------------------------------------------------------------------- 1 | /other-index.html -------------------------------------------------------------------------------- /actionpack/test/journey/nodes/symbol_test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/.gitignore -------------------------------------------------------------------------------- /actiontext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/CHANGELOG.md -------------------------------------------------------------------------------- /actiontext/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/MIT-LICENSE -------------------------------------------------------------------------------- /actiontext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/README.md -------------------------------------------------------------------------------- /actiontext/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/Rakefile -------------------------------------------------------------------------------- /actiontext/actiontext.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/actiontext.gemspec -------------------------------------------------------------------------------- /actiontext/app/views/action_text/attachables/_missing_attachable.html.erb: -------------------------------------------------------------------------------- 1 | <%= "☒" -%> 2 | -------------------------------------------------------------------------------- /actiontext/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/bin/test -------------------------------------------------------------------------------- /actiontext/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/bin/webpack -------------------------------------------------------------------------------- /actiontext/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/bin/webpack-dev-server -------------------------------------------------------------------------------- /actiontext/lib/action_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/lib/action_text.rb -------------------------------------------------------------------------------- /actiontext/lib/action_text/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/lib/action_text/engine.rb -------------------------------------------------------------------------------- /actiontext/lib/tasks/actiontext.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/lib/tasks/actiontext.rake -------------------------------------------------------------------------------- /actiontext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/package.json -------------------------------------------------------------------------------- /actiontext/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/rollup.config.js -------------------------------------------------------------------------------- /actiontext/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/Rakefile -------------------------------------------------------------------------------- /actiontext/test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /actiontext/test/dummy/app/helpers/messages_helper.rb: -------------------------------------------------------------------------------- 1 | module MessagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /actiontext/test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /actiontext/test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/bin/rails -------------------------------------------------------------------------------- /actiontext/test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/bin/rake -------------------------------------------------------------------------------- /actiontext/test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/bin/setup -------------------------------------------------------------------------------- /actiontext/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/config.ru -------------------------------------------------------------------------------- /actiontext/test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /actiontext/test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /actiontext/test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /actiontext/test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/dummy/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actiontext/test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/fixtures/people.yml -------------------------------------------------------------------------------- /actiontext/test/fixtures/reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/fixtures/reviews.yml -------------------------------------------------------------------------------- /actiontext/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/test_helper.rb -------------------------------------------------------------------------------- /actiontext/test/unit/content_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/unit/content_test.rb -------------------------------------------------------------------------------- /actiontext/test/unit/model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actiontext/test/unit/model_test.rb -------------------------------------------------------------------------------- /actionview/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/.eslintrc -------------------------------------------------------------------------------- /actionview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/.gitignore -------------------------------------------------------------------------------- /actionview/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/CHANGELOG.md -------------------------------------------------------------------------------- /actionview/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/MIT-LICENSE -------------------------------------------------------------------------------- /actionview/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/README.rdoc -------------------------------------------------------------------------------- /actionview/RUNNING_UJS_TESTS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/RUNNING_UJS_TESTS.rdoc -------------------------------------------------------------------------------- /actionview/RUNNING_UNIT_TESTS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/RUNNING_UNIT_TESTS.rdoc -------------------------------------------------------------------------------- /actionview/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/Rakefile -------------------------------------------------------------------------------- /actionview/actionview.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/actionview.gemspec -------------------------------------------------------------------------------- /actionview/app/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/app/javascript/README.md -------------------------------------------------------------------------------- /actionview/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/bin/test -------------------------------------------------------------------------------- /actionview/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/karma.conf.js -------------------------------------------------------------------------------- /actionview/lib/action_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/lib/action_view.rb -------------------------------------------------------------------------------- /actionview/lib/action_view/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/lib/action_view/base.rb -------------------------------------------------------------------------------- /actionview/lib/action_view/flows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/lib/action_view/flows.rb -------------------------------------------------------------------------------- /actionview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/package.json -------------------------------------------------------------------------------- /actionview/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/rollup.config.js -------------------------------------------------------------------------------- /actionview/rollup.config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/rollup.config.test.js -------------------------------------------------------------------------------- /actionview/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/abstract_unit.rb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/formatted.html.erb: -------------------------------------------------------------------------------- 1 | Hello from me3/formatted.html.erb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/index.erb: -------------------------------------------------------------------------------- 1 | Hello from me3/index.erb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/abstract_controller/testing/me4/index.erb: -------------------------------------------------------------------------------- 1 | Hello from me4/index.erb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/index.erb: -------------------------------------------------------------------------------- 1 | Hello from index.erb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/layouts/abstract_controller/testing/me4.erb: -------------------------------------------------------------------------------- 1 | Me4 Enter : <%= yield %> : Exit -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/layouts/application.erb: -------------------------------------------------------------------------------- 1 | Application Enter : <%= yield %> : Exit -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/naked_render.erb: -------------------------------------------------------------------------------- 1 | Hello from naked_render.erb -------------------------------------------------------------------------------- /actionview/test/actionpack/abstract/views/with_final_newline.erb: -------------------------------------------------------------------------------- 1 | Hello from with_final_newline.erb 2 | -------------------------------------------------------------------------------- /actionview/test/buffers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/buffers_test.rb -------------------------------------------------------------------------------- /actionview/test/fixtures/_top_level_partial.html.erb: -------------------------------------------------------------------------------- 1 | top level partial html -------------------------------------------------------------------------------- /actionview/test/fixtures/_top_level_partial_only.erb: -------------------------------------------------------------------------------- 1 | top level partial -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/fun/games/_form.erb: -------------------------------------------------------------------------------- 1 | <%= form.label :title %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/fun/games/hello_world.erb: -------------------------------------------------------------------------------- 1 | Living in a nested world -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/hello.html: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layout_tests/alt/layouts/alt.erb: -------------------------------------------------------------------------------- 1 | alt.erb 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layout_tests/layouts/item.erb: -------------------------------------------------------------------------------- 1 | item.erb <%= yield %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layout_tests/layouts/layout_test.erb: -------------------------------------------------------------------------------- 1 | layout_test.erb <%= yield %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layout_tests/views/goodbye.erb: -------------------------------------------------------------------------------- 1 | hello.erb -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layout_tests/views/hello.erb: -------------------------------------------------------------------------------- 1 | hello.erb -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layouts/_yield_only.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layouts/builder.builder: -------------------------------------------------------------------------------- 1 | xml.wrapper do 2 | xml << yield 3 | end 4 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/layouts/xhr.html.erb: -------------------------------------------------------------------------------- 1 | XHR! 2 | <%= yield %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/quiz/questions/_question.html.erb: -------------------------------------------------------------------------------- 1 | <%= question.name %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/shared.html.erb: -------------------------------------------------------------------------------- 1 | Elastica -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_changing_priority.html.erb: -------------------------------------------------------------------------------- 1 | HTML -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_changing_priority.json.erb: -------------------------------------------------------------------------------- 1 | JSON -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_customer.erb: -------------------------------------------------------------------------------- 1 | Hello: <%= customer.name rescue "Anonymous" %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_directory/_partial_with_locales.html.erb: -------------------------------------------------------------------------------- 1 | Hello <%= name %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_form.erb: -------------------------------------------------------------------------------- 1 | <%= form.label :title %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_hello.builder: -------------------------------------------------------------------------------- 1 | xm.hello 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_json_change_priority.json.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial.erb: -------------------------------------------------------------------------------- 1 | invalid -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial.html.erb: -------------------------------------------------------------------------------- 1 | partial html -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial.js.erb: -------------------------------------------------------------------------------- 1 | partial js -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial_for_use_in_layout.html.erb: -------------------------------------------------------------------------------- 1 | Inside from partial (<%= name %>) -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial_html_erb.html.erb: -------------------------------------------------------------------------------- 1 | <%= "partial.html.erb" %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial_name_local_variable.erb: -------------------------------------------------------------------------------- 1 | <%= partial_name_local_variable %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial_only.erb: -------------------------------------------------------------------------------- 1 | only partial -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_partial_only_html.html: -------------------------------------------------------------------------------- 1 | only HTML partial -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/_second_json_partial.json.erb: -------------------------------------------------------------------------------- 1 | Third level -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/action_talk_to_layout.erb: -------------------------------------------------------------------------------- 1 | <% @title = "Talking to the layout" -%> 2 | Action was here! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/formatted_html_erb.html.erb: -------------------------------------------------------------------------------- 1 | formatted HTML erb -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/formatted_xml_erb.builder: -------------------------------------------------------------------------------- 1 | xml.test "failed" 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/greeting.html.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/greeting.xml.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello,world.erb: -------------------------------------------------------------------------------- 1 | Hello w*rld! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello/hello.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello_world_from_rxml.builder: -------------------------------------------------------------------------------- 1 | xml.html do 2 | xml.p "Hello" 3 | end 4 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello_world_with_layout_false.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hello_world_with_partial.html.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | <%= render '/test/partial' %> 3 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/hyphen-ated.erb: -------------------------------------------------------------------------------- 1 | hyphen-ated.erb -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/implicit_content_type.atom.builder: -------------------------------------------------------------------------------- 1 | xml.atom do 2 | end 3 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/proper_block_detection.erb: -------------------------------------------------------------------------------- 1 | <%= @todo %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/raise.html.erb: -------------------------------------------------------------------------------- 1 | <% raise %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/render_file_from_template.html.erb: -------------------------------------------------------------------------------- 1 | <%= render file: @path %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/render_file_with_locals_and_default.erb: -------------------------------------------------------------------------------- 1 | <%= secret ||= 'one' %> -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey HTML! 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.html.erb: -------------------------------------------------------------------------------- 1 | Hello HTML! -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/render_implicit_js_template_without_layout.js.erb: -------------------------------------------------------------------------------- 1 | alert('hello'); -------------------------------------------------------------------------------- /actionview/test/fixtures/actionpack/test/with_xml_template.html.erb: -------------------------------------------------------------------------------- 1 | <%= render template: "test/greeting", formats: :xml %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/comments/empty.de.html.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello/hello.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey verden -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.erb~: -------------------------------------------------------------------------------- 1 | Don't pick me! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.html+phone.erb: -------------------------------------------------------------------------------- 1 | Hello phone! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.pt-BR.html.erb: -------------------------------------------------------------------------------- 1 | Ola mundo -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world.text+phone.erb: -------------------------------------------------------------------------------- 1 | Hello texty phone! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/hello_world_with_partial.html.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | <%= render '/test/partial' %> 3 | -------------------------------------------------------------------------------- /actionview/test/fixtures/test/malformed/malformed.en.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/malformed/malformed.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/malformed/malformed.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/malformed/malformed~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionview/test/fixtures/test/one.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: "test/two" %> world -------------------------------------------------------------------------------- /actionview/test/fixtures/test/render_file_inspect_local_assigns.erb: -------------------------------------------------------------------------------- 1 | <%= local_assigns.inspect.html_safe %> -------------------------------------------------------------------------------- /actionview/test/fixtures/test/render_file_unicode_local.erb: -------------------------------------------------------------------------------- 1 | <%= 🎃 %> -------------------------------------------------------------------------------- /actionview/test/fixtures/test/render_file_with_locals_and_default.erb: -------------------------------------------------------------------------------- 1 | <%= secret ||= 'one' %> -------------------------------------------------------------------------------- /actionview/test/fixtures/test/sub_template_raise.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: "test/raise" %> -------------------------------------------------------------------------------- /actionview/test/fixtures/test/syntax_error.html.erb: -------------------------------------------------------------------------------- 1 | <%= foo( 2 | 1, 3 | 2, 4 | %> 5 | -------------------------------------------------------------------------------- /actionview/test/fixtures/test/template.erb: -------------------------------------------------------------------------------- 1 | <%= template.path %> -------------------------------------------------------------------------------- /actionview/test/fixtures/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/fixtures/topic.rb -------------------------------------------------------------------------------- /actionview/test/fixtures/topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/fixtures/topics.yml -------------------------------------------------------------------------------- /actionview/test/fixtures/topics/_topic.html.erb: -------------------------------------------------------------------------------- 1 | <%= topic.title %> -------------------------------------------------------------------------------- /actionview/test/fixtures/translations/templates/array.erb: -------------------------------------------------------------------------------- 1 | <%= t('.foo.bar') %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/translations/templates/default.erb: -------------------------------------------------------------------------------- 1 | <%= t('.missing', :default => :'.foo') %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/translations/templates/found.erb: -------------------------------------------------------------------------------- 1 | <%= t('.foo') %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/translations/templates/missing.erb: -------------------------------------------------------------------------------- 1 | <%= t('.missing') %> 2 | -------------------------------------------------------------------------------- /actionview/test/fixtures/with_format.json.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'missing', formats: [:json] %> 2 | -------------------------------------------------------------------------------- /actionview/test/ujs/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/ujs/config.ru -------------------------------------------------------------------------------- /actionview/test/ujs/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/ujs/server.rb -------------------------------------------------------------------------------- /actionview/test/ujs/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/actionview/test/ujs/src/test.js -------------------------------------------------------------------------------- /activejob/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/CHANGELOG.md -------------------------------------------------------------------------------- /activejob/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/MIT-LICENSE -------------------------------------------------------------------------------- /activejob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/README.md -------------------------------------------------------------------------------- /activejob/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/Rakefile -------------------------------------------------------------------------------- /activejob/activejob.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/activejob.gemspec -------------------------------------------------------------------------------- /activejob/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/bin/test -------------------------------------------------------------------------------- /activejob/lib/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job.rb -------------------------------------------------------------------------------- /activejob/lib/active_job/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job/base.rb -------------------------------------------------------------------------------- /activejob/lib/active_job/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job/core.rb -------------------------------------------------------------------------------- /activejob/lib/active_job/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job/logging.rb -------------------------------------------------------------------------------- /activejob/lib/active_job/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job/railtie.rb -------------------------------------------------------------------------------- /activejob/lib/active_job/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/lib/active_job/version.rb -------------------------------------------------------------------------------- /activejob/test/adapters/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/adapters/async.rb -------------------------------------------------------------------------------- /activejob/test/adapters/inline.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | ActiveJob::Base.queue_adapter = :inline 4 | -------------------------------------------------------------------------------- /activejob/test/adapters/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/adapters/resque.rb -------------------------------------------------------------------------------- /activejob/test/adapters/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/adapters/sidekiq.rb -------------------------------------------------------------------------------- /activejob/test/adapters/sneakers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/adapters/sneakers.rb -------------------------------------------------------------------------------- /activejob/test/adapters/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/adapters/test.rb -------------------------------------------------------------------------------- /activejob/test/cases/adapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/cases/adapter_test.rb -------------------------------------------------------------------------------- /activejob/test/cases/logging_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/cases/logging_test.rb -------------------------------------------------------------------------------- /activejob/test/cases/queuing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/cases/queuing_test.rb -------------------------------------------------------------------------------- /activejob/test/cases/rescue_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/cases/rescue_test.rb -------------------------------------------------------------------------------- /activejob/test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/helper.rb -------------------------------------------------------------------------------- /activejob/test/jobs/callback_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/callback_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/gid_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/gid_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/hello_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/hello_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/inherited_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/inherited_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/kwargs_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/kwargs_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/logging_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/logging_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/nested_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/nested_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/prefixed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/prefixed_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/queue_as_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/queue_as_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/raising_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/raising_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/rescue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/rescue_job.rb -------------------------------------------------------------------------------- /activejob/test/jobs/retry_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/jobs/retry_job.rb -------------------------------------------------------------------------------- /activejob/test/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/models/person.rb -------------------------------------------------------------------------------- /activejob/test/support/delayed_job/delayed/serialization/test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activejob/test/support/job_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activejob/test/support/job_buffer.rb -------------------------------------------------------------------------------- /activemodel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/CHANGELOG.md -------------------------------------------------------------------------------- /activemodel/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/MIT-LICENSE -------------------------------------------------------------------------------- /activemodel/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/README.rdoc -------------------------------------------------------------------------------- /activemodel/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/Rakefile -------------------------------------------------------------------------------- /activemodel/activemodel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/activemodel.gemspec -------------------------------------------------------------------------------- /activemodel/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/bin/test -------------------------------------------------------------------------------- /activemodel/lib/active_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/lib/active_model.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/lib/active_model/api.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/lib/active_model/lint.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/lib/active_model/type.rb -------------------------------------------------------------------------------- /activemodel/test/cases/api_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/api_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/dirty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/dirty_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/error_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/error_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/helper.rb -------------------------------------------------------------------------------- /activemodel/test/cases/lint_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/lint_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/model_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/type_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/cases/type_test.rb -------------------------------------------------------------------------------- /activemodel/test/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/account.rb -------------------------------------------------------------------------------- /activemodel/test/models/blog_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/blog_post.rb -------------------------------------------------------------------------------- /activemodel/test/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/contact.rb -------------------------------------------------------------------------------- /activemodel/test/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/person.rb -------------------------------------------------------------------------------- /activemodel/test/models/reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/reply.rb -------------------------------------------------------------------------------- /activemodel/test/models/sheep.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Sheep 4 | extend ActiveModel::Naming 5 | end 6 | -------------------------------------------------------------------------------- /activemodel/test/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/topic.rb -------------------------------------------------------------------------------- /activemodel/test/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/user.rb -------------------------------------------------------------------------------- /activemodel/test/models/visitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activemodel/test/models/visitor.rb -------------------------------------------------------------------------------- /activerecord/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/.gitignore -------------------------------------------------------------------------------- /activerecord/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/CHANGELOG.md -------------------------------------------------------------------------------- /activerecord/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/MIT-LICENSE -------------------------------------------------------------------------------- /activerecord/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/README.rdoc -------------------------------------------------------------------------------- /activerecord/RUNNING_UNIT_TESTS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/RUNNING_UNIT_TESTS.rdoc -------------------------------------------------------------------------------- /activerecord/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/Rakefile -------------------------------------------------------------------------------- /activerecord/activerecord.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/activerecord.gemspec -------------------------------------------------------------------------------- /activerecord/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/bin/test -------------------------------------------------------------------------------- /activerecord/examples/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/examples/performance.rb -------------------------------------------------------------------------------- /activerecord/examples/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/examples/simple.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/active_record.rb -------------------------------------------------------------------------------- /activerecord/lib/arel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/crud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/crud.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/errors.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/expressions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/expressions.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/math.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/and.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/and.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/case.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/count.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/cte.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/cte.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/false.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/false.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/in.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/in.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/node.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/over.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/over.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/true.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/true.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/unary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/unary.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/nodes/with.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/nodes/with.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/table.rb -------------------------------------------------------------------------------- /activerecord/lib/arel/visitors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/lib/arel/visitors.rb -------------------------------------------------------------------------------- /activerecord/test/assets/example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/assets/example.log -------------------------------------------------------------------------------- /activerecord/test/assets/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/assets/flowers.jpg -------------------------------------------------------------------------------- /activerecord/test/assets/test.txt: -------------------------------------------------------------------------------- 1 | %00 2 | -------------------------------------------------------------------------------- /activerecord/test/cases/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/base_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/core_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/core_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/date_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/date_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/dup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/dup_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/enum_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/enum_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/helper.rb -------------------------------------------------------------------------------- /activerecord/test/cases/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/i18n_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/test_case.rb -------------------------------------------------------------------------------- /activerecord/test/cases/type_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/type_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/view_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/cases/view_test.rb -------------------------------------------------------------------------------- /activerecord/test/config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/config.example.yml -------------------------------------------------------------------------------- /activerecord/test/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/config.rb -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/admin: -------------------------------------------------------------------------------- 1 | ../to_be_linked/ -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/developers.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/people.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/tasks.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/colleges.yml: -------------------------------------------------------------------------------- 1 | FIU: 2 | id: 1 3 | name: Florida International University 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/content.yml: -------------------------------------------------------------------------------- 1 | content: 2 | id: 1 3 | title: How to use Rails 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/fk_object_to_point_to.yml: -------------------------------------------------------------------------------- 1 | first: 2 | id: 1 3 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/fk_test_has_pk.yml: -------------------------------------------------------------------------------- 1 | first: 2 | pk_id: 1 -------------------------------------------------------------------------------- /activerecord/test/fixtures/items.yml: -------------------------------------------------------------------------------- 1 | dvd: 2 | id: 1 3 | name: Godfather 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/legacy_things.yml: -------------------------------------------------------------------------------- 1 | obtuse: 2 | id: 1 3 | tps_report_number: 500 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/naked/yml/accounts.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/naked/yml/companies.yml: -------------------------------------------------------------------------------- 1 | # i wonder what will happen here 2 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/naked/yml/courses.yml: -------------------------------------------------------------------------------- 1 | qwerty 2 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/naked/yml/courses_with_invalid_key.yml: -------------------------------------------------------------------------------- 1 | one: 2 | id: 1 3 | two: ['not a hash'] 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/other_dogs.yml: -------------------------------------------------------------------------------- 1 | lassie: 2 | id: 1 3 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/strict_zines.yml: -------------------------------------------------------------------------------- 1 | going_out: 2 | title: Hello 3 | -------------------------------------------------------------------------------- /activerecord/test/migrations/empty/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/admin.rb -------------------------------------------------------------------------------- /activerecord/test/models/binary.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Binary < ActiveRecord::Base 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/bird.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/bird.rb -------------------------------------------------------------------------------- /activerecord/test/models/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/book.rb -------------------------------------------------------------------------------- /activerecord/test/models/bulb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/bulb.rb -------------------------------------------------------------------------------- /activerecord/test/models/car.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/car.rb -------------------------------------------------------------------------------- /activerecord/test/models/carrier.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Carrier < ActiveRecord::Base 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/cart.rb -------------------------------------------------------------------------------- /activerecord/test/models/cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/cat.rb -------------------------------------------------------------------------------- /activerecord/test/models/chef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/chef.rb -------------------------------------------------------------------------------- /activerecord/test/models/club.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/club.rb -------------------------------------------------------------------------------- /activerecord/test/models/cpk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/cpk.rb -------------------------------------------------------------------------------- /activerecord/test/models/default.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Default < ActiveRecord::Base 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/discount.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Discount < ActiveRecord::Base 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/dog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/dog.rb -------------------------------------------------------------------------------- /activerecord/test/models/edge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/edge.rb -------------------------------------------------------------------------------- /activerecord/test/models/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/entry.rb -------------------------------------------------------------------------------- /activerecord/test/models/essay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/essay.rb -------------------------------------------------------------------------------- /activerecord/test/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/event.rb -------------------------------------------------------------------------------- /activerecord/test/models/eye.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/eye.rb -------------------------------------------------------------------------------- /activerecord/test/models/face.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/face.rb -------------------------------------------------------------------------------- /activerecord/test/models/frog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/frog.rb -------------------------------------------------------------------------------- /activerecord/test/models/guid.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Guid < ActiveRecord::Base 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/hotel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/hotel.rb -------------------------------------------------------------------------------- /activerecord/test/models/human.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/human.rb -------------------------------------------------------------------------------- /activerecord/test/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/image.rb -------------------------------------------------------------------------------- /activerecord/test/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/item.rb -------------------------------------------------------------------------------- /activerecord/test/models/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/job.rb -------------------------------------------------------------------------------- /activerecord/test/models/joke.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/joke.rb -------------------------------------------------------------------------------- /activerecord/test/models/matey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/matey.rb -------------------------------------------------------------------------------- /activerecord/test/models/mouse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/mouse.rb -------------------------------------------------------------------------------- /activerecord/test/models/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/movie.rb -------------------------------------------------------------------------------- /activerecord/test/models/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/node.rb -------------------------------------------------------------------------------- /activerecord/test/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/order.rb -------------------------------------------------------------------------------- /activerecord/test/models/owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/owner.rb -------------------------------------------------------------------------------- /activerecord/test/models/pet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/pet.rb -------------------------------------------------------------------------------- /activerecord/test/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/post.rb -------------------------------------------------------------------------------- /activerecord/test/models/publisher.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Publisher 4 | end 5 | -------------------------------------------------------------------------------- /activerecord/test/models/reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/reply.rb -------------------------------------------------------------------------------- /activerecord/test/models/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/room.rb -------------------------------------------------------------------------------- /activerecord/test/models/ship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/ship.rb -------------------------------------------------------------------------------- /activerecord/test/models/shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/shop.rb -------------------------------------------------------------------------------- /activerecord/test/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/tag.rb -------------------------------------------------------------------------------- /activerecord/test/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/task.rb -------------------------------------------------------------------------------- /activerecord/test/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/topic.rb -------------------------------------------------------------------------------- /activerecord/test/models/toy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/toy.rb -------------------------------------------------------------------------------- /activerecord/test/models/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/tree.rb -------------------------------------------------------------------------------- /activerecord/test/models/tyre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/tyre.rb -------------------------------------------------------------------------------- /activerecord/test/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/user.rb -------------------------------------------------------------------------------- /activerecord/test/models/wheel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/wheel.rb -------------------------------------------------------------------------------- /activerecord/test/models/zine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activerecord/test/models/zine.rb -------------------------------------------------------------------------------- /activerecord/test/storage/test.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/.babelrc -------------------------------------------------------------------------------- /activestorage/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/.eslintrc -------------------------------------------------------------------------------- /activestorage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/.gitignore -------------------------------------------------------------------------------- /activestorage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/CHANGELOG.md -------------------------------------------------------------------------------- /activestorage/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/MIT-LICENSE -------------------------------------------------------------------------------- /activestorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/README.md -------------------------------------------------------------------------------- /activestorage/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/Rakefile -------------------------------------------------------------------------------- /activestorage/app/assets/javascripts/.gitattributes: -------------------------------------------------------------------------------- 1 | activestorage.js linguist-generated 2 | -------------------------------------------------------------------------------- /activestorage/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/bin/test -------------------------------------------------------------------------------- /activestorage/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/config/routes.rb -------------------------------------------------------------------------------- /activestorage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/package.json -------------------------------------------------------------------------------- /activestorage/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/rollup.config.js -------------------------------------------------------------------------------- /activestorage/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/test/dummy/Rakefile -------------------------------------------------------------------------------- /activestorage/test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /activestorage/test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /activestorage/test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/test/dummy/bin/rake -------------------------------------------------------------------------------- /activestorage/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | end 3 | -------------------------------------------------------------------------------- /activestorage/test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/dummy/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/engine_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/test/engine_test.rb -------------------------------------------------------------------------------- /activestorage/test/fixtures/files/empty_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activestorage/test/fixtures/users.yml: -------------------------------------------------------------------------------- 1 | first: 2 | name: $LABEL 3 | -------------------------------------------------------------------------------- /activestorage/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activestorage/test/test_helper.rb -------------------------------------------------------------------------------- /activesupport/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/.gitignore -------------------------------------------------------------------------------- /activesupport/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/CHANGELOG.md -------------------------------------------------------------------------------- /activesupport/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/MIT-LICENSE -------------------------------------------------------------------------------- /activesupport/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/README.rdoc -------------------------------------------------------------------------------- /activesupport/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/Rakefile -------------------------------------------------------------------------------- /activesupport/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/bin/test -------------------------------------------------------------------------------- /activesupport/test/dependencies/conflict.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Conflict = 1 4 | -------------------------------------------------------------------------------- /activesupport/test/dependencies/service_two.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class ServiceTwo 4 | end 5 | -------------------------------------------------------------------------------- /activesupport/test/digest_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/test/digest_test.rb -------------------------------------------------------------------------------- /activesupport/test/fixtures/xml/jdom_doctype.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /activesupport/test/fixtures/xml/jdom_entities.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /activesupport/test/fixtures/xml/jdom_include.txt: -------------------------------------------------------------------------------- 1 | include me 2 | -------------------------------------------------------------------------------- /activesupport/test/gzip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/test/gzip_test.rb -------------------------------------------------------------------------------- /activesupport/test/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/test/i18n_test.rb -------------------------------------------------------------------------------- /activesupport/test/logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/activesupport/test/logger_test.rb -------------------------------------------------------------------------------- /codespell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/codespell.txt -------------------------------------------------------------------------------- /docs/2_2_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/2_2_release_notes.html -------------------------------------------------------------------------------- /docs/2_3_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/2_3_release_notes.html -------------------------------------------------------------------------------- /docs/3_0_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/3_0_release_notes.html -------------------------------------------------------------------------------- /docs/3_1_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/3_1_release_notes.html -------------------------------------------------------------------------------- /docs/3_2_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/3_2_release_notes.html -------------------------------------------------------------------------------- /docs/4_0_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/4_0_release_notes.html -------------------------------------------------------------------------------- /docs/4_1_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/4_1_release_notes.html -------------------------------------------------------------------------------- /docs/4_2_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/4_2_release_notes.html -------------------------------------------------------------------------------- /docs/5_0_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/5_0_release_notes.html -------------------------------------------------------------------------------- /docs/5_1_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/5_1_release_notes.html -------------------------------------------------------------------------------- /docs/5_2_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/5_2_release_notes.html -------------------------------------------------------------------------------- /docs/6_0_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/6_0_release_notes.html -------------------------------------------------------------------------------- /docs/6_1_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/6_1_release_notes.html -------------------------------------------------------------------------------- /docs/7_0_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/7_0_release_notes.html -------------------------------------------------------------------------------- /docs/7_1_release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/7_1_release_notes.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | www.railsguides.kr -------------------------------------------------------------------------------- /docs/action_cable_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_cable_overview.html -------------------------------------------------------------------------------- /docs/action_mailbox_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_mailbox_basics.html -------------------------------------------------------------------------------- /docs/action_mailer_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_mailer_basics.html -------------------------------------------------------------------------------- /docs/action_text_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_text_overview.html -------------------------------------------------------------------------------- /docs/action_view_helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_view_helpers.html -------------------------------------------------------------------------------- /docs/action_view_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/action_view_overview.html -------------------------------------------------------------------------------- /docs/active_job_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_job_basics.html -------------------------------------------------------------------------------- /docs/active_model_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_model_basics.html -------------------------------------------------------------------------------- /docs/active_record_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_record_basics.html -------------------------------------------------------------------------------- /docs/active_record_callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_record_callbacks.html -------------------------------------------------------------------------------- /docs/active_record_querying.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_record_querying.html -------------------------------------------------------------------------------- /docs/active_storage_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/active_storage_overview.html -------------------------------------------------------------------------------- /docs/api_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/api_app.html -------------------------------------------------------------------------------- /docs/asset_pipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/asset_pipeline.html -------------------------------------------------------------------------------- /docs/association_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/association_basics.html -------------------------------------------------------------------------------- /docs/caching_with_rails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/caching_with_rails.html -------------------------------------------------------------------------------- /docs/command_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/command_line.html -------------------------------------------------------------------------------- /docs/configuring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/configuring.html -------------------------------------------------------------------------------- /docs/engines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/engines.html -------------------------------------------------------------------------------- /docs/error_reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/error_reporting.html -------------------------------------------------------------------------------- /docs/form_helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/form_helpers.html -------------------------------------------------------------------------------- /docs/generators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/generators.html -------------------------------------------------------------------------------- /docs/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/getting_started.html -------------------------------------------------------------------------------- /docs/i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/i18n.html -------------------------------------------------------------------------------- /docs/images/book_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/book_icon.gif -------------------------------------------------------------------------------- /docs/images/book_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/book_icon.svg -------------------------------------------------------------------------------- /docs/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/bullet.gif -------------------------------------------------------------------------------- /docs/images/bullet_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/bullet_dark.gif -------------------------------------------------------------------------------- /docs/images/chapters_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/chapters_icon.gif -------------------------------------------------------------------------------- /docs/images/check_bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/check_bullet.gif -------------------------------------------------------------------------------- /docs/images/check_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/check_icon.svg -------------------------------------------------------------------------------- /docs/images/cog_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/cog_icon.svg -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/feature_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/feature_tile.gif -------------------------------------------------------------------------------- /docs/images/footer_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/footer_tile.gif -------------------------------------------------------------------------------- /docs/images/grey_bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/grey_bullet.gif -------------------------------------------------------------------------------- /docs/images/hand_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/hand_icon.svg -------------------------------------------------------------------------------- /docs/images/header_tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/header_tile.gif -------------------------------------------------------------------------------- /docs/images/info_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/info_icon.svg -------------------------------------------------------------------------------- /docs/images/nav_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/nav_arrow.gif -------------------------------------------------------------------------------- /docs/images/note_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/note_icon.svg -------------------------------------------------------------------------------- /docs/images/rails_guides_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/rails_guides_logo.gif -------------------------------------------------------------------------------- /docs/images/security/csrf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/security/csrf.png -------------------------------------------------------------------------------- /docs/images/tab_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/tab_grey.gif -------------------------------------------------------------------------------- /docs/images/tab_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/tab_info.gif -------------------------------------------------------------------------------- /docs/images/tab_note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/tab_note.gif -------------------------------------------------------------------------------- /docs/images/tab_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/tab_red.gif -------------------------------------------------------------------------------- /docs/images/tab_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/tab_yellow.gif -------------------------------------------------------------------------------- /docs/images/up_white_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/images/up_white_arrow.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/initialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/initialization.html -------------------------------------------------------------------------------- /docs/javascripts/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/javascripts/.gitattributes -------------------------------------------------------------------------------- /docs/javascripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/javascripts/clipboard.js -------------------------------------------------------------------------------- /docs/javascripts/guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/javascripts/guides.js -------------------------------------------------------------------------------- /docs/layouts_and_rendering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/layouts_and_rendering.html -------------------------------------------------------------------------------- /docs/maintenance_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/maintenance_policy.html -------------------------------------------------------------------------------- /docs/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/plugins.html -------------------------------------------------------------------------------- /docs/rails_on_rack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/rails_on_rack.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/routing.html -------------------------------------------------------------------------------- /docs/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/security.html -------------------------------------------------------------------------------- /docs/stylesheets/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/dark.css -------------------------------------------------------------------------------- /docs/stylesheets/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/epub.css -------------------------------------------------------------------------------- /docs/stylesheets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/highlight.css -------------------------------------------------------------------------------- /docs/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/main.css -------------------------------------------------------------------------------- /docs/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/print.css -------------------------------------------------------------------------------- /docs/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/reset.css -------------------------------------------------------------------------------- /docs/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/stylesheets/style.css -------------------------------------------------------------------------------- /docs/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/testing.html -------------------------------------------------------------------------------- /docs/upgrading_ruby_on_rails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/upgrading_ruby_on_rails.html -------------------------------------------------------------------------------- /docs/webpacker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/docs/webpacker.html -------------------------------------------------------------------------------- /guides/.document: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guides/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/.rubocop.yml -------------------------------------------------------------------------------- /guides/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/CHANGELOG.md -------------------------------------------------------------------------------- /guides/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/Rakefile -------------------------------------------------------------------------------- /guides/assets/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/bullet.gif -------------------------------------------------------------------------------- /guides/assets/images/cog_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/cog_icon.svg -------------------------------------------------------------------------------- /guides/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/favicon.ico -------------------------------------------------------------------------------- /guides/assets/images/tab_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/tab_grey.gif -------------------------------------------------------------------------------- /guides/assets/images/tab_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/tab_info.gif -------------------------------------------------------------------------------- /guides/assets/images/tab_note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/tab_note.gif -------------------------------------------------------------------------------- /guides/assets/images/tab_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/images/tab_red.gif -------------------------------------------------------------------------------- /guides/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/assets/robots.txt -------------------------------------------------------------------------------- /guides/rails_guides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/rails_guides.rb -------------------------------------------------------------------------------- /guides/rails_guides/epub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/rails_guides/epub.rb -------------------------------------------------------------------------------- /guides/rails_guides/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/rails_guides/generator.rb -------------------------------------------------------------------------------- /guides/rails_guides/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/rails_guides/helpers.rb -------------------------------------------------------------------------------- /guides/rails_guides/markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/rails_guides/markdown.rb -------------------------------------------------------------------------------- /guides/source/_license.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/_license.html.erb -------------------------------------------------------------------------------- /guides/source/_welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/_welcome.html.erb -------------------------------------------------------------------------------- /guides/source/api_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/api_app.md -------------------------------------------------------------------------------- /guides/source/asset_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/asset_pipeline.md -------------------------------------------------------------------------------- /guides/source/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/command_line.md -------------------------------------------------------------------------------- /guides/source/configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/configuring.md -------------------------------------------------------------------------------- /guides/source/documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/documents.yaml -------------------------------------------------------------------------------- /guides/source/engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/engines.md -------------------------------------------------------------------------------- /guides/source/epub/copyright.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'license' %> -------------------------------------------------------------------------------- /guides/source/epub/toc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/epub/toc.html.erb -------------------------------------------------------------------------------- /guides/source/epub/toc.ncx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/epub/toc.ncx.erb -------------------------------------------------------------------------------- /guides/source/error_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/error_reporting.md -------------------------------------------------------------------------------- /guides/source/form_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/form_helpers.md -------------------------------------------------------------------------------- /guides/source/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/generators.md -------------------------------------------------------------------------------- /guides/source/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/getting_started.md -------------------------------------------------------------------------------- /guides/source/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/i18n.md -------------------------------------------------------------------------------- /guides/source/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/index.html.erb -------------------------------------------------------------------------------- /guides/source/initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/initialization.md -------------------------------------------------------------------------------- /guides/source/ko/api_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/api_app.md -------------------------------------------------------------------------------- /guides/source/ko/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/command_line.md -------------------------------------------------------------------------------- /guides/source/ko/configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/configuring.md -------------------------------------------------------------------------------- /guides/source/ko/documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/documents.yaml -------------------------------------------------------------------------------- /guides/source/ko/engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/engines.md -------------------------------------------------------------------------------- /guides/source/ko/epub/copyright.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'license' %> -------------------------------------------------------------------------------- /guides/source/ko/epub/toc.ncx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/epub/toc.ncx.erb -------------------------------------------------------------------------------- /guides/source/ko/form_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/form_helpers.md -------------------------------------------------------------------------------- /guides/source/ko/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/generators.md -------------------------------------------------------------------------------- /guides/source/ko/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/i18n.md -------------------------------------------------------------------------------- /guides/source/ko/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/index.html.erb -------------------------------------------------------------------------------- /guides/source/ko/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/layout.html.erb -------------------------------------------------------------------------------- /guides/source/ko/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/plugins.md -------------------------------------------------------------------------------- /guides/source/ko/rails_on_rack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/rails_on_rack.md -------------------------------------------------------------------------------- /guides/source/ko/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/routing.md -------------------------------------------------------------------------------- /guides/source/ko/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/security.md -------------------------------------------------------------------------------- /guides/source/ko/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/testing.md -------------------------------------------------------------------------------- /guides/source/ko/webpacker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/ko/webpacker.md -------------------------------------------------------------------------------- /guides/source/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/layout.html.erb -------------------------------------------------------------------------------- /guides/source/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/plugins.md -------------------------------------------------------------------------------- /guides/source/rails_on_rack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/rails_on_rack.md -------------------------------------------------------------------------------- /guides/source/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/routing.md -------------------------------------------------------------------------------- /guides/source/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/security.md -------------------------------------------------------------------------------- /guides/source/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/testing.md -------------------------------------------------------------------------------- /guides/source/webpacker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/source/webpacker.md -------------------------------------------------------------------------------- /guides/w3c_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/guides/w3c_validator.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/package.json -------------------------------------------------------------------------------- /rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/rails.gemspec -------------------------------------------------------------------------------- /railties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/.gitignore -------------------------------------------------------------------------------- /railties/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/CHANGELOG.md -------------------------------------------------------------------------------- /railties/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/MIT-LICENSE -------------------------------------------------------------------------------- /railties/RDOC_MAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/RDOC_MAIN.md -------------------------------------------------------------------------------- /railties/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/README.rdoc -------------------------------------------------------------------------------- /railties/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/Rakefile -------------------------------------------------------------------------------- /railties/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/bin/test -------------------------------------------------------------------------------- /railties/exe/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/exe/rails -------------------------------------------------------------------------------- /railties/lib/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails.rb -------------------------------------------------------------------------------- /railties/lib/rails/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/all.rb -------------------------------------------------------------------------------- /railties/lib/rails/api/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/api/task.rb -------------------------------------------------------------------------------- /railties/lib/rails/app_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/app_loader.rb -------------------------------------------------------------------------------- /railties/lib/rails/app_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/app_updater.rb -------------------------------------------------------------------------------- /railties/lib/rails/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/application.rb -------------------------------------------------------------------------------- /railties/lib/rails/autoloaders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/autoloaders.rb -------------------------------------------------------------------------------- /railties/lib/rails/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/cli.rb -------------------------------------------------------------------------------- /railties/lib/rails/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/command.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/commands.rb -------------------------------------------------------------------------------- /railties/lib/rails/console/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/console/app.rb -------------------------------------------------------------------------------- /railties/lib/rails/deprecator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/deprecator.rb -------------------------------------------------------------------------------- /railties/lib/rails/dev_caching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/dev_caching.rb -------------------------------------------------------------------------------- /railties/lib/rails/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/engine.rb -------------------------------------------------------------------------------- /railties/lib/rails/gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/gem_version.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/generators.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt: -------------------------------------------------------------------------------- 1 | <%%= yield %> 2 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb.tt: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt: -------------------------------------------------------------------------------- 1 | <%%= yield %> 2 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/node-version.tt: -------------------------------------------------------------------------------- 1 | <%= node_version %> 2 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/generator/templates/templates/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/info.rb -------------------------------------------------------------------------------- /railties/lib/rails/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/paths.rb -------------------------------------------------------------------------------- /railties/lib/rails/plugin/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/plugin/test.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/rack.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/rack/logger.rb -------------------------------------------------------------------------------- /railties/lib/rails/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/railtie.rb -------------------------------------------------------------------------------- /railties/lib/rails/secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/secrets.rb -------------------------------------------------------------------------------- /railties/lib/rails/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/tasks.rb -------------------------------------------------------------------------------- /railties/lib/rails/tasks/log.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/tasks/log.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/tmp.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/tasks/tmp.rake -------------------------------------------------------------------------------- /railties/lib/rails/templates/rails/info/properties.html.erb: -------------------------------------------------------------------------------- 1 | <%= @info.html_safe %> -------------------------------------------------------------------------------- /railties/lib/rails/test_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/test_help.rb -------------------------------------------------------------------------------- /railties/lib/rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/lib/rails/version.rb -------------------------------------------------------------------------------- /railties/railties.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/railties.gemspec -------------------------------------------------------------------------------- /railties/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/abstract_unit.rb -------------------------------------------------------------------------------- /railties/test/app_loader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/app_loader_test.rb -------------------------------------------------------------------------------- /railties/test/console_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/console_helpers.rb -------------------------------------------------------------------------------- /railties/test/engine/test_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/engine/test_test.rb -------------------------------------------------------------------------------- /railties/test/engine_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/engine_test.rb -------------------------------------------------------------------------------- /railties/test/env_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/env_helpers.rb -------------------------------------------------------------------------------- /railties/test/fixtures/Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Rails.application.load_tasks 4 | -------------------------------------------------------------------------------- /railties/test/fixtures/lib/generators/usage_template/USAGE: -------------------------------------------------------------------------------- 1 | :: <%= 1 + 1 %> :: -------------------------------------------------------------------------------- /railties/test/fixtures/lib/template.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | say "It works from file!" 4 | -------------------------------------------------------------------------------- /railties/test/generators_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/generators_test.rb -------------------------------------------------------------------------------- /railties/test/paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/paths_test.rb -------------------------------------------------------------------------------- /railties/test/plugin_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/plugin_helpers.rb -------------------------------------------------------------------------------- /railties/test/rack_logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/rack_logger_test.rb -------------------------------------------------------------------------------- /railties/test/rails_info_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/rails_info_test.rb -------------------------------------------------------------------------------- /railties/test/secrets_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/secrets_test.rb -------------------------------------------------------------------------------- /railties/test/version_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/railties/test/version_test.rb -------------------------------------------------------------------------------- /tasks/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tasks/release.rb -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/console -------------------------------------------------------------------------------- /tools/line_statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/line_statistics -------------------------------------------------------------------------------- /tools/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/profile -------------------------------------------------------------------------------- /tools/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/test.rb -------------------------------------------------------------------------------- /tools/test_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/tools/test_common.rb -------------------------------------------------------------------------------- /version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/version.rb -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorlakr/rails-guides/HEAD/yarn.lock --------------------------------------------------------------------------------