├── .gitignore ├── .travis.yml ├── .yardopts ├── Gemfile ├── RAILS_VERSION ├── README.rdoc ├── RELEASING_RAILS.rdoc ├── Rakefile ├── actionmailer ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── actionmailer.gemspec ├── lib │ ├── action_mailer.rb │ ├── action_mailer │ │ ├── base.rb │ │ ├── collector.rb │ │ ├── delivery_methods.rb │ │ ├── log_subscriber.rb │ │ ├── mail_helper.rb │ │ ├── railtie.rb │ │ ├── test_case.rb │ │ ├── test_helper.rb │ │ └── version.rb │ └── rails │ │ └── generators │ │ └── mailer │ │ ├── USAGE │ │ ├── mailer_generator.rb │ │ └── templates │ │ └── mailer.rb └── test │ ├── abstract_unit.rb │ ├── asset_host_test.rb │ ├── base_test.rb │ ├── delivery_methods_test.rb │ ├── fixtures │ ├── 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 │ │ ├── different_layout.html.erb │ │ ├── different_layout.text.erb │ │ ├── email_custom_layout.text.html.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_with_locale.en.html.erb │ │ ├── implicit_with_locale.html.erb │ │ ├── implicit_with_locale.pl.text.erb │ │ ├── implicit_with_locale.text.erb │ │ ├── inline_attachment.html.erb │ │ ├── inline_attachment.text.erb │ │ ├── plain_text_only.text.erb │ │ └── welcome.erb │ ├── explicit_layout_mailer │ │ ├── logout.html.erb │ │ └── signup.html.erb │ ├── first_mailer │ │ └── share.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 │ ├── nested_layout_mailer │ │ └── signup.html.erb │ ├── path.with.dots │ │ └── funky_path_mailer │ │ │ └── multipart_with_template_path_with_dots.erb │ ├── raw_email │ ├── raw_email10 │ ├── raw_email12 │ ├── raw_email13 │ ├── raw_email2 │ ├── raw_email3 │ ├── raw_email4 │ ├── raw_email5 │ ├── raw_email6 │ ├── raw_email7 │ ├── raw_email8 │ ├── raw_email9 │ ├── raw_email_quoted_with_0d0a │ ├── raw_email_with_invalid_characters_in_content_type │ ├── raw_email_with_nested_attachment │ ├── raw_email_with_partially_quoted_subject │ ├── second_mailer │ │ └── share.erb │ ├── templates │ │ └── signed_up.erb │ ├── test_mailer │ │ ├── _subtemplate.text.erb │ │ ├── custom_templating_extension.html.haml │ │ ├── custom_templating_extension.text.haml │ │ ├── implicitly_multipart_example.html.erb │ │ ├── implicitly_multipart_example.html.erb~ │ │ ├── implicitly_multipart_example.ignored.erb │ │ ├── implicitly_multipart_example.rhtml.bak │ │ ├── implicitly_multipart_example.text.erb │ │ ├── implicitly_multipart_example.yaml.erb │ │ ├── included_subtemplate.text.erb │ │ ├── multipart_alternative.html.erb │ │ ├── multipart_alternative.plain.erb │ │ ├── rxml_template.rxml │ │ └── signed_up.html.erb │ └── url_test_mailer │ │ └── 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 │ └── proc_mailer.rb │ ├── test_helper_test.rb │ └── url_test.rb ├── actionpack ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── RUNNING_UNIT_TESTS ├── Rakefile ├── actionpack.gemspec ├── lib │ ├── abstract_controller.rb │ ├── abstract_controller │ │ ├── asset_paths.rb │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── collector.rb │ │ ├── helpers.rb │ │ ├── layouts.rb │ │ ├── logger.rb │ │ ├── railties │ │ │ └── routes_helpers.rb │ │ ├── rendering.rb │ │ ├── translation.rb │ │ ├── url_for.rb │ │ └── view_paths.rb │ ├── action_controller.rb │ ├── action_controller │ │ ├── base.rb │ │ ├── caching.rb │ │ ├── caching │ │ │ ├── actions.rb │ │ │ ├── fragments.rb │ │ │ ├── pages.rb │ │ │ └── sweeping.rb │ │ ├── deprecated.rb │ │ ├── deprecated │ │ │ ├── integration_test.rb │ │ │ └── performance_test.rb │ │ ├── log_subscriber.rb │ │ ├── metal.rb │ │ ├── metal │ │ │ ├── compatibility.rb │ │ │ ├── conditional_get.rb │ │ │ ├── cookies.rb │ │ │ ├── data_streaming.rb │ │ │ ├── exceptions.rb │ │ │ ├── flash.rb │ │ │ ├── force_ssl.rb │ │ │ ├── head.rb │ │ │ ├── helpers.rb │ │ │ ├── hide_actions.rb │ │ │ ├── http_authentication.rb │ │ │ ├── implicit_render.rb │ │ │ ├── instrumentation.rb │ │ │ ├── mime_responds.rb │ │ │ ├── params_wrapper.rb │ │ │ ├── rack_delegation.rb │ │ │ ├── redirecting.rb │ │ │ ├── renderers.rb │ │ │ ├── rendering.rb │ │ │ ├── request_forgery_protection.rb │ │ │ ├── rescue.rb │ │ │ ├── responder.rb │ │ │ ├── session_management.rb │ │ │ ├── streaming.rb │ │ │ ├── testing.rb │ │ │ └── url_for.rb │ │ ├── middleware.rb │ │ ├── railtie.rb │ │ ├── railties │ │ │ └── paths.rb │ │ ├── record_identifier.rb │ │ ├── test_case.rb │ │ └── vendor │ │ │ ├── html-scanner.rb │ │ │ └── html-scanner │ │ │ └── html │ │ │ ├── document.rb │ │ │ ├── node.rb │ │ │ ├── sanitizer.rb │ │ │ ├── selector.rb │ │ │ ├── tokenizer.rb │ │ │ └── version.rb │ ├── action_dispatch.rb │ ├── action_dispatch │ │ ├── http │ │ │ ├── cache.rb │ │ │ ├── filter_parameters.rb │ │ │ ├── headers.rb │ │ │ ├── mime_negotiation.rb │ │ │ ├── mime_type.rb │ │ │ ├── mime_types.rb │ │ │ ├── parameter_filter.rb │ │ │ ├── parameters.rb │ │ │ ├── rack_cache.rb │ │ │ ├── request.rb │ │ │ ├── response.rb │ │ │ ├── upload.rb │ │ │ └── url.rb │ │ ├── middleware │ │ │ ├── best_standards_support.rb │ │ │ ├── callbacks.rb │ │ │ ├── closed_error.rb │ │ │ ├── cookies.rb │ │ │ ├── flash.rb │ │ │ ├── head.rb │ │ │ ├── params_parser.rb │ │ │ ├── reloader.rb │ │ │ ├── remote_ip.rb │ │ │ ├── rescue.rb │ │ │ ├── session │ │ │ │ ├── abstract_store.rb │ │ │ │ ├── cookie_store.rb │ │ │ │ └── mem_cache_store.rb │ │ │ ├── show_exceptions.rb │ │ │ ├── stack.rb │ │ │ ├── static.rb │ │ │ └── templates │ │ │ │ └── rescues │ │ │ │ ├── _request_and_response.erb │ │ │ │ ├── _trace.erb │ │ │ │ ├── diagnostics.erb │ │ │ │ ├── layout.erb │ │ │ │ ├── missing_template.erb │ │ │ │ ├── routing_error.erb │ │ │ │ ├── template_error.erb │ │ │ │ └── unknown_action.erb │ │ ├── railtie.rb │ │ ├── routing.rb │ │ ├── routing │ │ │ ├── mapper.rb │ │ │ ├── polymorphic_routes.rb │ │ │ ├── redirection.rb │ │ │ ├── route.rb │ │ │ ├── route_set.rb │ │ │ ├── routes_proxy.rb │ │ │ └── url_for.rb │ │ └── testing │ │ │ ├── assertions.rb │ │ │ ├── assertions │ │ │ ├── dom.rb │ │ │ ├── response.rb │ │ │ ├── routing.rb │ │ │ ├── selector.rb │ │ │ └── tag.rb │ │ │ ├── integration.rb │ │ │ ├── performance_test.rb │ │ │ ├── test_process.rb │ │ │ ├── test_request.rb │ │ │ └── test_response.rb │ ├── action_pack.rb │ ├── action_pack │ │ └── version.rb │ ├── action_view.rb │ ├── action_view │ │ ├── asset_paths.rb │ │ ├── base.rb │ │ ├── buffers.rb │ │ ├── context.rb │ │ ├── flows.rb │ │ ├── helpers.rb │ │ ├── helpers │ │ │ ├── active_model_helper.rb │ │ │ ├── asset_paths.rb │ │ │ ├── asset_tag_helper.rb │ │ │ ├── asset_tag_helpers │ │ │ │ ├── asset_include_tag.rb │ │ │ │ ├── asset_paths.rb │ │ │ │ ├── javascript_tag_helpers.rb │ │ │ │ └── stylesheet_tag_helpers.rb │ │ │ ├── atom_feed_helper.rb │ │ │ ├── cache_helper.rb │ │ │ ├── capture_helper.rb │ │ │ ├── controller_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 │ │ │ ├── record_tag_helper.rb │ │ │ ├── rendering_helper.rb │ │ │ ├── sanitize_helper.rb │ │ │ ├── tag_helper.rb │ │ │ ├── text_helper.rb │ │ │ ├── translation_helper.rb │ │ │ └── url_helper.rb │ │ ├── locale │ │ │ └── en.yml │ │ ├── log_subscriber.rb │ │ ├── lookup_context.rb │ │ ├── path_set.rb │ │ ├── railtie.rb │ │ ├── renderer │ │ │ ├── abstract_renderer.rb │ │ │ ├── partial_renderer.rb │ │ │ ├── renderer.rb │ │ │ ├── streaming_template_renderer.rb │ │ │ └── template_renderer.rb │ │ ├── template.rb │ │ ├── template │ │ │ ├── error.rb │ │ │ ├── handlers.rb │ │ │ ├── handlers │ │ │ │ ├── builder.rb │ │ │ │ └── erb.rb │ │ │ ├── resolver.rb │ │ │ └── text.rb │ │ ├── test_case.rb │ │ └── testing │ │ │ └── resolvers.rb │ └── sprockets │ │ ├── assets.rake │ │ ├── compressors.rb │ │ ├── helpers.rb │ │ ├── helpers │ │ └── rails_helper.rb │ │ └── railtie.rb └── test │ ├── abstract │ ├── abstract_controller_test.rb │ ├── callbacks_test.rb │ ├── collector_test.rb │ ├── helper_test.rb │ ├── layouts_test.rb │ ├── render_test.rb │ ├── translation_test.rb │ └── views │ │ ├── abstract_controller │ │ └── testing │ │ │ ├── me3 │ │ │ ├── formatted.html.erb │ │ │ └── index.erb │ │ │ ├── me4 │ │ │ └── index.erb │ │ │ └── me5 │ │ │ └── index.erb │ │ ├── action_with_ivars.erb │ │ ├── helper_test.erb │ │ ├── index.erb │ │ ├── layouts │ │ ├── abstract_controller │ │ │ └── testing │ │ │ │ └── me4.erb │ │ └── application.erb │ │ └── naked_render.erb │ ├── abstract_unit.rb │ ├── active_record_unit.rb │ ├── activerecord │ ├── active_record_store_test.rb │ ├── controller_runtime_test.rb │ ├── polymorphic_routes_test.rb │ └── render_partial_with_record_identification_test.rb │ ├── controller │ ├── action_pack_assertions_test.rb │ ├── addresses_render_test.rb │ ├── assert_select_test.rb │ ├── base_test.rb │ ├── caching_test.rb │ ├── capture_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_filter_test.rb │ ├── filters_test.rb │ ├── flash_hash_test.rb │ ├── flash_test.rb │ ├── force_ssl_test.rb │ ├── helper_test.rb │ ├── http_basic_authentication_test.rb │ ├── http_digest_authentication_test.rb │ ├── http_token_authentication_test.rb │ ├── integration_test.rb │ ├── layout_test.rb │ ├── localized_templates_test.rb │ ├── log_subscriber_test.rb │ ├── mime_responds_test.rb │ ├── new_base │ │ ├── bare_metal_test.rb │ │ ├── base_test.rb │ │ ├── content_negotiation_test.rb │ │ ├── content_type_test.rb │ │ ├── metal_test.rb │ │ ├── middleware_test.rb │ │ ├── render_action_test.rb │ │ ├── render_context_test.rb │ │ ├── render_file_test.rb │ │ ├── render_implicit_action_test.rb │ │ ├── render_layout_test.rb │ │ ├── render_partial_test.rb │ │ ├── render_streaming_test.rb │ │ ├── render_template_test.rb │ │ ├── render_test.rb │ │ ├── render_text_test.rb │ │ └── render_xml_test.rb │ ├── output_escaping_test.rb │ ├── params_wrapper_test.rb │ ├── record_identifier_test.rb │ ├── redirect_test.rb │ ├── render_js_test.rb │ ├── render_json_test.rb │ ├── render_other_test.rb │ ├── render_test.rb │ ├── render_xml_test.rb │ ├── request │ │ └── test_request_test.rb │ ├── request_forgery_protection_test.rb │ ├── rescue_test.rb │ ├── resources_test.rb │ ├── routing_test.rb │ ├── runner_test.rb │ ├── selector_test.rb │ ├── send_file_test.rb │ ├── test_test.rb │ ├── url_for_integration_test.rb │ ├── url_for_test.rb │ ├── url_rewriter_test.rb │ ├── view_paths_test.rb │ └── webservice_test.rb │ ├── dispatch │ ├── callbacks_test.rb │ ├── cookies_test.rb │ ├── header_test.rb │ ├── mapper_test.rb │ ├── middleware_stack │ │ └── middleware_test.rb │ ├── middleware_stack_test.rb │ ├── mime_type_test.rb │ ├── mount_test.rb │ ├── prefix_generation_test.rb │ ├── rack_cache_test.rb │ ├── rack_test.rb │ ├── reloader_test.rb │ ├── request │ │ ├── json_params_parsing_test.rb │ │ ├── multipart_params_parsing_test.rb │ │ ├── query_string_parsing_test.rb │ │ ├── url_encoded_params_parsing_test.rb │ │ └── xml_params_parsing_test.rb │ ├── request_test.rb │ ├── response_test.rb │ ├── routing_assertions_test.rb │ ├── routing_test.rb │ ├── session │ │ ├── cookie_store_test.rb │ │ ├── mem_cache_store_test.rb │ │ └── test_session_test.rb │ ├── show_exceptions_test.rb │ ├── static_test.rb │ ├── test_request_test.rb │ ├── test_response_test.rb │ ├── uploaded_file_test.rb │ └── url_generation_test.rb │ ├── fixtures │ ├── _top_level_partial.html.erb │ ├── _top_level_partial_only.erb │ ├── addresses │ │ └── list.erb │ ├── alternate_helpers │ │ └── foo_helper.rb │ ├── bad_customers │ │ └── _bad_customer.html.erb │ ├── blog_public │ │ ├── .gitignore │ │ ├── blog.html │ │ ├── index.html │ │ └── subdir │ │ │ └── index.html │ ├── companies.yml │ ├── company.rb │ ├── custom_pattern │ │ ├── another.html.erb │ │ └── html │ │ │ ├── another.erb │ │ │ └── path.erb │ ├── customers │ │ └── _customer.html.erb │ ├── db_definitions │ │ └── sqlite.sql │ ├── developer.rb │ ├── developers.yml │ ├── developers │ │ └── _developer.erb │ ├── developers_projects.yml │ ├── filter_test │ │ └── implicit_actions │ │ │ ├── edit.html.erb │ │ │ └── show.html.erb │ ├── fun │ │ ├── games │ │ │ ├── _form.erb │ │ │ ├── _game.erb │ │ │ └── hello_world.erb │ │ └── serious │ │ │ └── games │ │ │ └── _game.erb │ ├── functional_caching │ │ ├── _partial.erb │ │ ├── formatted_fragment_cached.html.erb │ │ ├── formatted_fragment_cached.xml.builder │ │ ├── fragment_cached.html.erb │ │ ├── html_fragment_cached_with_partial.html.erb │ │ └── inline_fragment_cached.html.erb │ ├── good_customers │ │ └── _good_customer.html.erb │ ├── happy_path │ │ └── render_action │ │ │ └── hello_world.erb │ ├── hello.html │ ├── helpers │ │ ├── abc_helper.rb │ │ ├── fun │ │ │ ├── games_helper.rb │ │ │ └── pdf_helper.rb │ │ ├── helpery_test_helper.rb │ │ ├── just_me_helper.rb │ │ └── me_too_helper.rb │ ├── layout_tests │ │ ├── alt │ │ │ ├── hello.erb │ │ │ └── layouts │ │ │ │ └── alt.erb │ │ ├── layouts │ │ │ ├── controller_name_space │ │ │ │ └── nested.erb │ │ │ ├── item.erb │ │ │ ├── layout_test.erb │ │ │ ├── multiple_extensions.html.erb │ │ │ ├── symlinked │ │ │ └── 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 │ │ ├── streaming.erb │ │ ├── talk_from_action.erb │ │ ├── xhr.html.erb │ │ ├── yield.erb │ │ ├── yield_with_render_inline_inside.erb │ │ └── yield_with_render_partial_inside.erb │ ├── localized │ │ ├── hello_world.de.html │ │ └── hello_world.en.html │ ├── mascot.rb │ ├── mascots.yml │ ├── mascots │ │ └── _mascot.html.erb │ ├── multipart │ │ ├── binary_file │ │ ├── boundary_problem_file │ │ ├── bracketed_param │ │ ├── empty │ │ ├── hello.txt │ │ ├── large_text_file │ │ ├── mixed_files │ │ ├── mona_lisa.jpg │ │ ├── none │ │ ├── single_parameter │ │ └── text_file │ ├── old_content_type │ │ ├── render_default_content_types_for_respond_to.xml.erb │ │ ├── render_default_for_builder.builder │ │ └── render_default_for_erb.erb │ ├── override │ │ └── test │ │ │ └── hello_world.erb │ ├── override2 │ │ └── layouts │ │ │ └── test │ │ │ └── sub.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 │ ├── project.rb │ ├── projects.yml │ ├── projects │ │ └── _project.erb │ ├── public │ │ ├── .gitignore │ │ ├── 404.html │ │ ├── 500.da.html │ │ ├── 500.html │ │ ├── elsewhere │ │ │ ├── cools.js │ │ │ └── file.css │ │ ├── foo │ │ │ ├── bar.html │ │ │ └── index.html │ │ ├── images │ │ │ └── rails.png │ │ ├── index.html │ │ ├── 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 │ ├── quiz │ │ └── questions │ │ │ └── _question.html.erb │ ├── replies.yml │ ├── replies │ │ └── _reply.erb │ ├── reply.rb │ ├── 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_type_list.html.erb │ │ └── using_defaults_with_type_list.xml.builder │ ├── respond_with │ │ ├── edit.html.erb │ │ ├── new.html.erb │ │ ├── using_invalid_resource_with_template.xml.erb │ │ ├── using_options_with_template.xml.erb │ │ ├── using_resource.js.erb │ │ └── using_resource_with_block.html.erb │ ├── scope │ │ └── test │ │ │ └── modgreet.erb │ ├── session_autoload_test │ │ └── session_autoload_test │ │ │ └── foo.rb │ ├── shared.html.erb │ ├── sprockets │ │ ├── alternate │ │ │ └── stylesheets │ │ │ │ └── style.css │ │ └── app │ │ │ ├── images │ │ │ └── logo.png │ │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── dir │ │ │ │ └── xmlhr.js │ │ │ ├── extra.js │ │ │ └── xmlhr.js │ │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── dir │ │ │ └── style.css │ │ │ ├── extra.css │ │ │ └── style.css │ ├── star_star_mime │ │ └── index.js.erb │ ├── symlink_parent │ │ └── symlinked_layout.erb │ ├── test │ │ ├── _200.html.erb │ │ ├── _counter.html.erb │ │ ├── _customer.erb │ │ ├── _customer_counter.erb │ │ ├── _customer_counter_with_as.erb │ │ ├── _customer_greeting.erb │ │ ├── _customer_with_var.erb │ │ ├── _form.erb │ │ ├── _from_helper.erb │ │ ├── _hash_greeting.erb │ │ ├── _hash_object.erb │ │ ├── _hello.builder │ │ ├── _labelling_form.erb │ │ ├── _layout_for_block_with_args.html.erb │ │ ├── _layout_for_partial.html.erb │ │ ├── _layout_with_partial_and_yield.html.erb │ │ ├── _local_inspector.html.erb │ │ ├── _object_inspector.erb │ │ ├── _one.html.erb │ │ ├── _partial.erb │ │ ├── _partial.html.erb │ │ ├── _partial.js.erb │ │ ├── _partial_for_use_in_layout.html.erb │ │ ├── _partial_only.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 │ │ ├── _person.erb │ │ ├── _raise.html.erb │ │ ├── _two.html.erb │ │ ├── _utf8_partial.html.erb │ │ ├── _utf8_partial_magic.html.erb │ │ ├── action_talk_to_layout.erb │ │ ├── basic.html.erb │ │ ├── calling_partial_with_layout.html.erb │ │ ├── capturing.erb │ │ ├── content_for.erb │ │ ├── content_for_concatenated.erb │ │ ├── content_for_with_parameter.erb │ │ ├── dont_pick_me │ │ ├── dot.directory │ │ │ └── render_file_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.builder │ │ ├── hello_w*rld.erb │ │ ├── hello_world.da.html.erb │ │ ├── hello_world.erb │ │ ├── hello_world.erb~ │ │ ├── hello_world.pt-BR.html.erb │ │ ├── hello_world_container.builder │ │ ├── hello_world_from_rxml.builder │ │ ├── hello_world_with_layout_false.erb │ │ ├── hello_xml_world.builder │ │ ├── hyphen-ated.erb │ │ ├── implicit_content_type.atom.builder │ │ ├── layout_render_file.erb │ │ ├── layout_render_object.erb │ │ ├── list.erb │ │ ├── malformed │ │ │ ├── malformed.en.html.erb~ │ │ │ ├── malformed.erb~ │ │ │ └── malformed.html.erb~ │ │ ├── nested_layout.erb │ │ ├── nested_streaming.erb │ │ ├── non_erb_block_content_for.builder │ │ ├── potential_conflicts.erb │ │ ├── proper_block_detection.erb │ │ ├── render_file_from_template.html.erb │ │ ├── render_file_with_ivar.erb │ │ ├── render_file_with_locals.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_to_string_test.erb │ │ ├── streaming.erb │ │ ├── streaming_buster.erb │ │ ├── sub_template_raise.html.erb │ │ ├── template.erb │ │ ├── update_element_with_capture.erb │ │ ├── using_layout_around_block.html.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 │ │ ├── array.erb │ │ ├── found.erb │ │ └── missing.erb │ ├── lib │ ├── controller │ │ ├── fake_controllers.rb │ │ └── fake_models.rb │ └── testing_sandbox.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 │ ├── date_helper_i18n_test.rb │ ├── date_helper_test.rb │ ├── erb │ │ ├── form_for_test.rb │ │ ├── helper.rb │ │ └── tag_helper_test.rb │ ├── erb_util_test.rb │ ├── form_helper_test.rb │ ├── form_options_helper_i18n_test.rb │ ├── form_options_helper_test.rb │ ├── form_tag_helper_test.rb │ ├── html-scanner │ │ ├── cdata_node_test.rb │ │ ├── document_test.rb │ │ ├── node_test.rb │ │ ├── sanitizer_test.rb │ │ ├── tag_node_test.rb │ │ ├── text_node_test.rb │ │ └── tokenizer_test.rb │ ├── javascript_helper_test.rb │ ├── log_subscriber_test.rb │ ├── lookup_context_test.rb │ ├── number_helper_i18n_test.rb │ ├── number_helper_test.rb │ ├── output_buffer_test.rb │ ├── output_safety_helper_test.rb │ ├── record_tag_helper_test.rb │ ├── render_test.rb │ ├── resolver_patterns_test.rb │ ├── sanitize_helper_test.rb │ ├── sprockets_helper_test.rb │ ├── streaming_render_test.rb │ ├── tag_helper_test.rb │ ├── template_error_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 │ ├── translation_helper_test.rb │ └── url_helper_test.rb │ ├── tmp │ └── .gitignore │ └── ts_isolated.rb ├── activemodel ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── activemodel.gemspec ├── examples │ └── validations.rb ├── lib │ ├── active_model.rb │ └── active_model │ │ ├── attribute_methods.rb │ │ ├── callbacks.rb │ │ ├── conversion.rb │ │ ├── dirty.rb │ │ ├── errors.rb │ │ ├── lint.rb │ │ ├── locale │ │ └── en.yml │ │ ├── mass_assignment_security.rb │ │ ├── mass_assignment_security │ │ ├── permission_set.rb │ │ └── sanitizer.rb │ │ ├── naming.rb │ │ ├── observer_array.rb │ │ ├── observing.rb │ │ ├── railtie.rb │ │ ├── secure_password.rb │ │ ├── serialization.rb │ │ ├── serializers │ │ ├── json.rb │ │ └── xml.rb │ │ ├── test_case.rb │ │ ├── translation.rb │ │ ├── validations.rb │ │ ├── validations │ │ ├── acceptance.rb │ │ ├── callbacks.rb │ │ ├── confirmation.rb │ │ ├── exclusion.rb │ │ ├── format.rb │ │ ├── inclusion.rb │ │ ├── length.rb │ │ ├── numericality.rb │ │ ├── presence.rb │ │ ├── validates.rb │ │ └── with.rb │ │ ├── validator.rb │ │ └── version.rb └── test │ ├── cases │ ├── attribute_methods_test.rb │ ├── callbacks_test.rb │ ├── conversion_test.rb │ ├── dirty_test.rb │ ├── errors_test.rb │ ├── helper.rb │ ├── lint_test.rb │ ├── mass_assignment_security │ │ ├── black_list_test.rb │ │ ├── permission_set_test.rb │ │ ├── sanitizer_test.rb │ │ └── white_list_test.rb │ ├── mass_assignment_security_test.rb │ ├── naming_test.rb │ ├── observer_array_test.rb │ ├── observing_test.rb │ ├── secure_password_test.rb │ ├── serialization_test.rb │ ├── serializers │ │ ├── json_serialization_test.rb │ │ └── xml_serialization_test.rb │ ├── translation_test.rb │ ├── validations │ │ ├── acceptance_validation_test.rb │ │ ├── callbacks_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 │ ├── config.rb │ ├── models │ ├── administrator.rb │ ├── automobile.rb │ ├── blog_post.rb │ ├── contact.rb │ ├── custom_reader.rb │ ├── helicopter.rb │ ├── mass_assignment_specific.rb │ ├── observers.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 ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── RUNNING_UNIT_TESTS ├── Rakefile ├── activerecord.gemspec ├── examples │ ├── .gitignore │ ├── associations.png │ ├── performance.rb │ └── simple.rb ├── lib │ ├── active_record.rb │ ├── active_record │ │ ├── aggregations.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 │ │ │ ├── has_and_belongs_to_many_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 │ │ │ ├── join_helper.rb │ │ │ ├── preloader.rb │ │ │ ├── preloader │ │ │ │ ├── association.rb │ │ │ │ ├── belongs_to.rb │ │ │ │ ├── collection_association.rb │ │ │ │ ├── has_and_belongs_to_many.rb │ │ │ │ ├── has_many.rb │ │ │ │ ├── has_many_through.rb │ │ │ │ ├── has_one.rb │ │ │ │ ├── has_one_through.rb │ │ │ │ ├── singular_association.rb │ │ │ │ └── through_association.rb │ │ │ ├── singular_association.rb │ │ │ └── through_association.rb │ │ ├── attribute_methods.rb │ │ ├── attribute_methods │ │ │ ├── before_type_cast.rb │ │ │ ├── dirty.rb │ │ │ ├── primary_key.rb │ │ │ ├── query.rb │ │ │ ├── read.rb │ │ │ ├── time_zone_conversion.rb │ │ │ └── write.rb │ │ ├── autosave_association.rb │ │ ├── base.rb │ │ ├── callbacks.rb │ │ ├── coders │ │ │ └── yaml_column.rb │ │ ├── connection_adapters │ │ │ ├── abstract │ │ │ │ ├── connection_pool.rb │ │ │ │ ├── connection_specification.rb │ │ │ │ ├── database_limits.rb │ │ │ │ ├── database_statements.rb │ │ │ │ ├── query_cache.rb │ │ │ │ ├── quoting.rb │ │ │ │ ├── schema_definitions.rb │ │ │ │ └── schema_statements.rb │ │ │ ├── abstract_adapter.rb │ │ │ ├── column.rb │ │ │ ├── mysql2_adapter.rb │ │ │ ├── mysql_adapter.rb │ │ │ ├── postgresql_adapter.rb │ │ │ ├── sqlite3_adapter.rb │ │ │ └── sqlite_adapter.rb │ │ ├── counter_cache.rb │ │ ├── dynamic_finder_match.rb │ │ ├── dynamic_scope_match.rb │ │ ├── errors.rb │ │ ├── fixtures.rb │ │ ├── fixtures │ │ │ └── file.rb │ │ ├── identity_map.rb │ │ ├── locale │ │ │ └── en.yml │ │ ├── locking │ │ │ ├── optimistic.rb │ │ │ └── pessimistic.rb │ │ ├── log_subscriber.rb │ │ ├── migration.rb │ │ ├── migration │ │ │ └── command_recorder.rb │ │ ├── named_scope.rb │ │ ├── nested_attributes.rb │ │ ├── observer.rb │ │ ├── persistence.rb │ │ ├── query_cache.rb │ │ ├── railtie.rb │ │ ├── railties │ │ │ ├── console_sandbox.rb │ │ │ ├── controller_runtime.rb │ │ │ ├── databases.rake │ │ │ └── jdbcmysql_error.rb │ │ ├── reflection.rb │ │ ├── relation.rb │ │ ├── relation │ │ │ ├── batches.rb │ │ │ ├── calculations.rb │ │ │ ├── finder_methods.rb │ │ │ ├── predicate_builder.rb │ │ │ ├── query_methods.rb │ │ │ └── spawn_methods.rb │ │ ├── result.rb │ │ ├── schema.rb │ │ ├── schema_dumper.rb │ │ ├── serialization.rb │ │ ├── serializers │ │ │ └── xml_serializer.rb │ │ ├── session_store.rb │ │ ├── test_case.rb │ │ ├── timestamp.rb │ │ ├── transactions.rb │ │ ├── validations.rb │ │ ├── validations │ │ │ ├── associated.rb │ │ │ └── uniqueness.rb │ │ └── version.rb │ └── rails │ │ └── generators │ │ ├── active_record.rb │ │ └── active_record │ │ ├── migration.rb │ │ ├── migration │ │ ├── migration_generator.rb │ │ └── templates │ │ │ └── migration.rb │ │ ├── model │ │ ├── model_generator.rb │ │ └── templates │ │ │ ├── migration.rb │ │ │ ├── model.rb │ │ │ └── module.rb │ │ ├── observer │ │ ├── observer_generator.rb │ │ └── templates │ │ │ └── observer.rb │ │ └── session_migration │ │ ├── session_migration_generator.rb │ │ └── templates │ │ └── migration.rb └── test │ ├── .gitignore │ ├── active_record │ └── connection_adapters │ │ └── fake_adapter.rb │ ├── assets │ ├── example.log │ └── flowers.jpg │ ├── cases │ ├── adapter_test.rb │ ├── adapters │ │ ├── firebird │ │ │ ├── connection_test.rb │ │ │ ├── default_test.rb │ │ │ └── migration_test.rb │ │ ├── mysql │ │ │ ├── active_schema_test.rb │ │ │ ├── connection_test.rb │ │ │ ├── mysql_adapter_test.rb │ │ │ ├── quoting_test.rb │ │ │ ├── reserved_word_test.rb │ │ │ ├── schema_test.rb │ │ │ └── sp_test.rb │ │ ├── mysql2 │ │ │ ├── active_schema_test.rb │ │ │ ├── bind_parameter_test.rb │ │ │ ├── connection_test.rb │ │ │ ├── reserved_word_test.rb │ │ │ └── schema_test.rb │ │ ├── oracle │ │ │ └── synonym_test.rb │ │ ├── postgresql │ │ │ ├── active_schema_test.rb │ │ │ ├── connection_test.rb │ │ │ ├── datatype_test.rb │ │ │ ├── postgresql_adapter_test.rb │ │ │ ├── quoting_test.rb │ │ │ ├── schema_authorization_test.rb │ │ │ ├── schema_test.rb │ │ │ ├── timestamp_test.rb │ │ │ └── view_test.rb │ │ └── sqlite3 │ │ │ ├── copy_table_test.rb │ │ │ ├── quoting_test.rb │ │ │ └── sqlite3_adapter_test.rb │ ├── aggregations_test.rb │ ├── ar_schema_test.rb │ ├── associations │ │ ├── belongs_to_associations_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 │ │ ├── habtm_join_table_test.rb │ │ ├── has_and_belongs_to_many_associations_test.rb │ │ ├── has_many_associations_test.rb │ │ ├── has_many_through_associations_test.rb │ │ ├── has_one_associations_test.rb │ │ ├── has_one_through_associations_test.rb │ │ ├── identity_map_test.rb │ │ ├── inner_join_association_test.rb │ │ ├── inverse_associations_test.rb │ │ ├── join_model_test.rb │ │ └── nested_through_associations_test.rb │ ├── associations_test.rb │ ├── attribute_methods │ │ └── read_test.rb │ ├── attribute_methods_test.rb │ ├── autosave_association_test.rb │ ├── base_test.rb │ ├── batches_test.rb │ ├── binary_test.rb │ ├── bind_parameter_test.rb │ ├── calculations_test.rb │ ├── callbacks_test.rb │ ├── clone_test.rb │ ├── coders │ │ └── yaml_column_test.rb │ ├── column_alias_test.rb │ ├── column_definition_test.rb │ ├── connection_adapters │ │ └── connection_handler_test.rb │ ├── connection_management_test.rb │ ├── connection_pool_test.rb │ ├── counter_cache_test.rb │ ├── custom_locking_test.rb │ ├── database_statements_test.rb │ ├── date_time_test.rb │ ├── defaults_test.rb │ ├── deprecated_finder_test.rb │ ├── dirty_test.rb │ ├── dup_test.rb │ ├── dynamic_finder_match_test.rb │ ├── finder_respond_to_test.rb │ ├── finder_test.rb │ ├── fixtures │ │ └── file_test.rb │ ├── fixtures_test.rb │ ├── habtm_destroy_order_test.rb │ ├── helper.rb │ ├── i18n_test.rb │ ├── identity_map │ │ └── middleware_test.rb │ ├── identity_map_test.rb │ ├── inheritance_test.rb │ ├── invalid_date_test.rb │ ├── invertible_migration_test.rb │ ├── json_serialization_test.rb │ ├── lifecycle_test.rb │ ├── locking_test.rb │ ├── log_subscriber_test.rb │ ├── mass_assignment_security_test.rb │ ├── method_scoping_test.rb │ ├── migration │ │ └── command_recorder_test.rb │ ├── migration_test.rb │ ├── mixin_test.rb │ ├── modules_test.rb │ ├── multiple_db_test.rb │ ├── named_scope_test.rb │ ├── nested_attributes_test.rb │ ├── persistence_test.rb │ ├── pooled_connections_test.rb │ ├── primary_keys_test.rb │ ├── query_cache_test.rb │ ├── quoting_test.rb │ ├── readonly_test.rb │ ├── reflection_test.rb │ ├── relation_scoping_test.rb │ ├── relation_test.rb │ ├── relations_test.rb │ ├── reload_models_test.rb │ ├── sanitize_test.rb │ ├── schema_dumper_test.rb │ ├── serialization_test.rb │ ├── session_store │ │ ├── session_test.rb │ │ └── sql_bypass.rb │ ├── timestamp_test.rb │ ├── transaction_callbacks_test.rb │ ├── transactions_test.rb │ ├── unconnected_test.rb │ ├── validations │ │ ├── association_validation_test.rb │ │ ├── i18n_generate_message_validation_test.rb │ │ ├── i18n_validation_test.rb │ │ └── uniqueness_validation_test.rb │ ├── validations_repair_helper.rb │ ├── validations_test.rb │ ├── xml_serialization_test.rb │ └── yaml_serialization_test.rb │ ├── config.example.yml │ ├── config.rb │ ├── fixtures │ ├── .gitignore │ ├── accounts.yml │ ├── admin │ │ ├── accounts.yml │ │ └── users.yml │ ├── all │ │ ├── developers.yml │ │ ├── people.yml │ │ └── tasks.yml │ ├── author_addresses.yml │ ├── author_favorites.yml │ ├── authors.yml │ ├── binaries.yml │ ├── books.yml │ ├── cars.yml │ ├── categories.yml │ ├── categories │ │ ├── special_categories.yml │ │ └── subsubdir │ │ │ └── arbitrary_filename.yml │ ├── categories_ordered.yml │ ├── categories_posts.yml │ ├── categorizations.yml │ ├── clubs.yml │ ├── collections.yml │ ├── comments.yml │ ├── companies.yml │ ├── computers.yml │ ├── courses.yml │ ├── customers.yml │ ├── dashboards.yml │ ├── developers.yml │ ├── developers_projects.yml │ ├── edges.yml │ ├── entrants.yml │ ├── essays.yml │ ├── faces.yml │ ├── fk_test_has_fk.yml │ ├── fk_test_has_pk.yml │ ├── funny_jokes.yml │ ├── interests.yml │ ├── items.yml │ ├── jobs.yml │ ├── legacy_things.yml │ ├── mateys.yml │ ├── member_details.yml │ ├── member_types.yml │ ├── members.yml │ ├── memberships.yml │ ├── men.yml │ ├── minimalistics.yml │ ├── minivans.yml │ ├── mixed_case_monkeys.yml │ ├── mixins.yml │ ├── movies.yml │ ├── naked │ │ ├── csv │ │ │ └── accounts.csv │ │ └── yml │ │ │ ├── accounts.yml │ │ │ ├── companies.yml │ │ │ └── courses.yml │ ├── organizations.yml │ ├── owners.yml │ ├── parrots.yml │ ├── parrots_pirates.yml │ ├── people.yml │ ├── pets.yml │ ├── pirates.yml │ ├── posts.yml │ ├── price_estimates.yml │ ├── products.yml │ ├── projects.yml │ ├── ratings.yml │ ├── readers.yml │ ├── references.yml │ ├── reserved_words │ │ ├── distinct.yml │ │ ├── distincts_selects.yml │ │ ├── group.yml │ │ ├── select.yml │ │ └── values.yml │ ├── ships.yml │ ├── speedometers.yml │ ├── sponsors.yml │ ├── string_key_objects.yml │ ├── subscribers.yml │ ├── subscriptions.yml │ ├── taggings.yml │ ├── tags.yml │ ├── tasks.yml │ ├── topics.yml │ ├── toys.yml │ ├── traffic_lights.yml │ ├── treasures.yml │ ├── variants.yml │ ├── vertices.yml │ ├── warehouse-things.yml │ └── zines.yml │ ├── migrations │ ├── broken │ │ └── 100_migration_that_raises_exception.rb │ ├── decimal │ │ └── 1_give_me_big_numbers.rb │ ├── duplicate │ │ ├── 1_people_have_last_names.rb │ │ ├── 2_we_need_reminders.rb │ │ ├── 3_foo.rb │ │ └── 3_innocent_jointable.rb │ ├── duplicate_names │ │ ├── 20080507052938_chunky.rb │ │ └── 20080507053028_chunky.rb │ ├── empty │ │ └── .gitkeep │ ├── interleaved │ │ ├── pass_1 │ │ │ └── 3_interleaved_innocent_jointable.rb │ │ ├── pass_2 │ │ │ ├── 1_interleaved_people_have_last_names.rb │ │ │ └── 3_interleaved_innocent_jointable.rb │ │ └── pass_3 │ │ │ ├── 1_interleaved_people_have_last_names.rb │ │ │ ├── 2_interleaved_i_raise_on_down.rb │ │ │ └── 3_interleaved_innocent_jointable.rb │ ├── missing │ │ ├── 1000_people_have_middle_names.rb │ │ ├── 1_people_have_last_names.rb │ │ ├── 3_we_need_reminders.rb │ │ └── 4_innocent_jointable.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_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_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 │ ├── models │ ├── admin.rb │ ├── admin │ │ ├── account.rb │ │ └── user.rb │ ├── aircraft.rb │ ├── author.rb │ ├── auto_id.rb │ ├── binary.rb │ ├── bird.rb │ ├── book.rb │ ├── boolean.rb │ ├── bulb.rb │ ├── car.rb │ ├── categorization.rb │ ├── category.rb │ ├── citation.rb │ ├── club.rb │ ├── column_name.rb │ ├── comment.rb │ ├── company.rb │ ├── company_in_module.rb │ ├── computer.rb │ ├── contact.rb │ ├── contract.rb │ ├── country.rb │ ├── course.rb │ ├── customer.rb │ ├── dashboard.rb │ ├── default.rb │ ├── developer.rb │ ├── edge.rb │ ├── electron.rb │ ├── engine.rb │ ├── entrant.rb │ ├── essay.rb │ ├── event.rb │ ├── eye.rb │ ├── face.rb │ ├── guid.rb │ ├── interest.rb │ ├── invoice.rb │ ├── item.rb │ ├── job.rb │ ├── joke.rb │ ├── keyboard.rb │ ├── legacy_thing.rb │ ├── lesson.rb │ ├── line_item.rb │ ├── liquid.rb │ ├── man.rb │ ├── matey.rb │ ├── member.rb │ ├── member_detail.rb │ ├── member_type.rb │ ├── membership.rb │ ├── minimalistic.rb │ ├── minivan.rb │ ├── mixed_case_monkey.rb │ ├── molecule.rb │ ├── movie.rb │ ├── order.rb │ ├── organization.rb │ ├── owner.rb │ ├── parrot.rb │ ├── person.rb │ ├── pet.rb │ ├── pirate.rb │ ├── post.rb │ ├── price_estimate.rb │ ├── project.rb │ ├── rating.rb │ ├── reader.rb │ ├── reference.rb │ ├── reply.rb │ ├── ship.rb │ ├── ship_part.rb │ ├── shop.rb │ ├── speedometer.rb │ ├── sponsor.rb │ ├── string_key_object.rb │ ├── student.rb │ ├── subject.rb │ ├── subscriber.rb │ ├── subscription.rb │ ├── tag.rb │ ├── tagging.rb │ ├── task.rb │ ├── topic.rb │ ├── toy.rb │ ├── traffic_light.rb │ ├── treasure.rb │ ├── treaty.rb │ ├── tyre.rb │ ├── vertex.rb │ ├── warehouse_thing.rb │ ├── wheel.rb │ ├── without_table.rb │ └── zine.rb │ ├── schema │ ├── mysql2_specific_schema.rb │ ├── mysql_specific_schema.rb │ ├── oracle_specific_schema.rb │ ├── postgresql_specific_schema.rb │ ├── schema.rb │ └── sqlite_specific_schema.rb │ └── support │ ├── config.rb │ └── connection.rb ├── activeresource ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── activeresource.gemspec ├── examples │ └── performance.rb ├── lib │ ├── active_resource.rb │ └── active_resource │ │ ├── base.rb │ │ ├── connection.rb │ │ ├── custom_methods.rb │ │ ├── exceptions.rb │ │ ├── formats.rb │ │ ├── formats │ │ ├── json_format.rb │ │ └── xml_format.rb │ │ ├── http_mock.rb │ │ ├── log_subscriber.rb │ │ ├── observing.rb │ │ ├── railtie.rb │ │ ├── schema.rb │ │ ├── validations.rb │ │ └── version.rb └── test │ ├── abstract_unit.rb │ ├── cases │ ├── authorization_test.rb │ ├── base │ │ ├── custom_methods_test.rb │ │ ├── equality_test.rb │ │ ├── load_test.rb │ │ └── schema_test.rb │ ├── base_errors_test.rb │ ├── base_test.rb │ ├── connection_test.rb │ ├── finder_test.rb │ ├── format_test.rb │ ├── http_mock_test.rb │ ├── log_subscriber_test.rb │ ├── observing_test.rb │ └── validations_test.rb │ ├── fixtures │ ├── address.rb │ ├── beast.rb │ ├── customer.rb │ ├── person.rb │ ├── project.rb │ ├── proxy.rb │ ├── sound.rb │ ├── street_address.rb │ └── subscription_plan.rb │ └── setter_trap.rb ├── activesupport ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── activesupport.gemspec ├── bin │ └── generate_tables ├── lib │ ├── active_support.rb │ └── active_support │ │ ├── all.rb │ │ ├── backtrace_cleaner.rb │ │ ├── base64.rb │ │ ├── basic_object.rb │ │ ├── benchmarkable.rb │ │ ├── buffered_logger.rb │ │ ├── builder.rb │ │ ├── cache.rb │ │ ├── cache │ │ ├── file_store.rb │ │ ├── mem_cache_store.rb │ │ ├── memory_store.rb │ │ └── strategy │ │ │ └── local_cache.rb │ │ ├── callbacks.rb │ │ ├── concern.rb │ │ ├── configurable.rb │ │ ├── core_ext.rb │ │ ├── core_ext │ │ ├── array.rb │ │ ├── array │ │ │ ├── access.rb │ │ │ ├── conversions.rb │ │ │ ├── extract_options.rb │ │ │ ├── grouping.rb │ │ │ ├── prepend_and_append.rb │ │ │ ├── random_access.rb │ │ │ ├── uniq_by.rb │ │ │ └── wrap.rb │ │ ├── benchmark.rb │ │ ├── big_decimal.rb │ │ ├── big_decimal │ │ │ └── conversions.rb │ │ ├── class.rb │ │ ├── class │ │ │ ├── attribute.rb │ │ │ ├── attribute_accessors.rb │ │ │ ├── delegating_attributes.rb │ │ │ └── subclasses.rb │ │ ├── date │ │ │ ├── acts_like.rb │ │ │ ├── calculations.rb │ │ │ ├── conversions.rb │ │ │ ├── freeze.rb │ │ │ └── zones.rb │ │ ├── date_time │ │ │ ├── acts_like.rb │ │ │ ├── calculations.rb │ │ │ ├── conversions.rb │ │ │ └── zones.rb │ │ ├── enumerable.rb │ │ ├── exception.rb │ │ ├── file.rb │ │ ├── file │ │ │ ├── atomic.rb │ │ │ └── path.rb │ │ ├── float.rb │ │ ├── float │ │ │ └── rounding.rb │ │ ├── hash.rb │ │ ├── hash │ │ │ ├── conversions.rb │ │ │ ├── deep_dup.rb │ │ │ ├── deep_merge.rb │ │ │ ├── diff.rb │ │ │ ├── except.rb │ │ │ ├── indifferent_access.rb │ │ │ ├── keys.rb │ │ │ ├── reverse_merge.rb │ │ │ └── slice.rb │ │ ├── integer.rb │ │ ├── integer │ │ │ ├── inflections.rb │ │ │ ├── multiple.rb │ │ │ └── time.rb │ │ ├── io.rb │ │ ├── kernel.rb │ │ ├── kernel │ │ │ ├── agnostics.rb │ │ │ ├── debugger.rb │ │ │ ├── reporting.rb │ │ │ └── singleton_class.rb │ │ ├── load_error.rb │ │ ├── logger.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── aliasing.rb │ │ │ ├── anonymous.rb │ │ │ ├── attr_internal.rb │ │ │ ├── attribute_accessors.rb │ │ │ ├── delegation.rb │ │ │ ├── deprecation.rb │ │ │ ├── introspection.rb │ │ │ ├── method_names.rb │ │ │ ├── reachable.rb │ │ │ ├── remove_method.rb │ │ │ └── synchronization.rb │ │ ├── name_error.rb │ │ ├── numeric.rb │ │ ├── numeric │ │ │ ├── bytes.rb │ │ │ └── time.rb │ │ ├── object.rb │ │ ├── object │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── conversions.rb │ │ │ ├── duplicable.rb │ │ │ ├── inclusion.rb │ │ │ ├── instance_variables.rb │ │ │ ├── public_send.rb │ │ │ ├── to_json.rb │ │ │ ├── to_param.rb │ │ │ ├── to_query.rb │ │ │ ├── try.rb │ │ │ └── with_options.rb │ │ ├── proc.rb │ │ ├── process.rb │ │ ├── process │ │ │ └── daemon.rb │ │ ├── range.rb │ │ ├── range │ │ │ ├── blockless_step.rb │ │ │ ├── conversions.rb │ │ │ ├── cover.rb │ │ │ ├── include_range.rb │ │ │ └── overlaps.rb │ │ ├── regexp.rb │ │ ├── rexml.rb │ │ ├── string.rb │ │ ├── string │ │ │ ├── access.rb │ │ │ ├── behavior.rb │ │ │ ├── conversions.rb │ │ │ ├── encoding.rb │ │ │ ├── exclude.rb │ │ │ ├── filters.rb │ │ │ ├── inflections.rb │ │ │ ├── inquiry.rb │ │ │ ├── interpolation.rb │ │ │ ├── multibyte.rb │ │ │ ├── output_safety.rb │ │ │ ├── starts_ends_with.rb │ │ │ ├── strip.rb │ │ │ └── xchar.rb │ │ ├── time │ │ │ ├── acts_like.rb │ │ │ ├── calculations.rb │ │ │ ├── conversions.rb │ │ │ ├── marshal.rb │ │ │ ├── publicize_conversion_methods.rb │ │ │ └── zones.rb │ │ └── uri.rb │ │ ├── dependencies.rb │ │ ├── dependencies │ │ └── autoload.rb │ │ ├── deprecation.rb │ │ ├── deprecation │ │ ├── behaviors.rb │ │ ├── method_wrappers.rb │ │ ├── proxy_wrappers.rb │ │ └── reporting.rb │ │ ├── descendants_tracker.rb │ │ ├── duration.rb │ │ ├── file_update_checker.rb │ │ ├── file_watcher.rb │ │ ├── gzip.rb │ │ ├── hash_with_indifferent_access.rb │ │ ├── i18n.rb │ │ ├── i18n_railtie.rb │ │ ├── inflections.rb │ │ ├── inflector.rb │ │ ├── inflector │ │ ├── inflections.rb │ │ ├── methods.rb │ │ └── transliterate.rb │ │ ├── json.rb │ │ ├── json │ │ ├── decoding.rb │ │ ├── encoding.rb │ │ └── variable.rb │ │ ├── lazy_load_hooks.rb │ │ ├── locale │ │ └── en.yml │ │ ├── log_subscriber.rb │ │ ├── log_subscriber │ │ └── test_helper.rb │ │ ├── memoizable.rb │ │ ├── message_encryptor.rb │ │ ├── message_verifier.rb │ │ ├── multibyte.rb │ │ ├── multibyte │ │ ├── chars.rb │ │ ├── exceptions.rb │ │ ├── unicode.rb │ │ └── utils.rb │ │ ├── notifications.rb │ │ ├── notifications │ │ ├── fanout.rb │ │ └── instrumenter.rb │ │ ├── option_merger.rb │ │ ├── ordered_hash.rb │ │ ├── ordered_options.rb │ │ ├── railtie.rb │ │ ├── rescuable.rb │ │ ├── ruby │ │ └── shim.rb │ │ ├── string_inquirer.rb │ │ ├── test_case.rb │ │ ├── testing │ │ ├── assertions.rb │ │ ├── declarative.rb │ │ ├── deprecation.rb │ │ ├── isolation.rb │ │ ├── mochaing.rb │ │ ├── pending.rb │ │ ├── performance.rb │ │ ├── performance │ │ │ ├── jruby.rb │ │ │ ├── rubinius.rb │ │ │ ├── ruby.rb │ │ │ └── ruby │ │ │ │ ├── mri.rb │ │ │ │ └── yarv.rb │ │ └── setup_and_teardown.rb │ │ ├── time.rb │ │ ├── time │ │ └── autoload.rb │ │ ├── time_with_zone.rb │ │ ├── values │ │ ├── time_zone.rb │ │ └── unicode_tables.dat │ │ ├── version.rb │ │ ├── whiny_nil.rb │ │ ├── xml_mini.rb │ │ └── xml_mini │ │ ├── jdom.rb │ │ ├── libxml.rb │ │ ├── libxmlsax.rb │ │ ├── nokogiri.rb │ │ ├── nokogirisax.rb │ │ └── rexml.rb └── test │ ├── abstract_unit.rb │ ├── autoload.rb │ ├── autoloading_fixtures │ ├── a │ │ ├── b.rb │ │ └── c │ │ │ ├── d.rb │ │ │ └── e │ │ │ └── f.rb │ ├── application.rb │ ├── class_folder.rb │ ├── class_folder │ │ ├── class_folder_subclass.rb │ │ ├── inline_class.rb │ │ └── nested_class.rb │ ├── conflict.rb │ ├── counting_loader.rb │ ├── cross_site_dependency.rb │ ├── e.rb │ ├── load_path │ │ └── loaded_constant.rb │ ├── loads_constant.rb │ ├── module_folder │ │ ├── inline_class.rb │ │ ├── nested_class.rb │ │ └── nested_sibling.rb │ ├── module_with_custom_const_missing │ │ └── a │ │ │ └── b.rb │ ├── multiple_constant_file.rb │ ├── raises_name_error.rb │ ├── raises_no_method_error.rb │ └── requires_constant.rb │ ├── benchmarkable_test.rb │ ├── buffered_logger_test.rb │ ├── caching_test.rb │ ├── callback_inheritance_test.rb │ ├── callbacks_test.rb │ ├── class_cache_test.rb │ ├── clean_backtrace_test.rb │ ├── clean_logger_test.rb │ ├── concern_test.rb │ ├── configurable_test.rb │ ├── core_ext │ ├── array_ext_test.rb │ ├── base64_ext_test.rb │ ├── bigdecimal_test.rb │ ├── blank_test.rb │ ├── class │ │ ├── attribute_accessor_test.rb │ │ ├── attribute_test.rb │ │ └── delegating_attributes_test.rb │ ├── class_test.rb │ ├── date_ext_test.rb │ ├── date_time_ext_test.rb │ ├── duplicable_test.rb │ ├── duration_test.rb │ ├── enumerable_test.rb │ ├── file_test.rb │ ├── float_ext_test.rb │ ├── hash_ext_test.rb │ ├── integer_ext_test.rb │ ├── io_test.rb │ ├── kernel_test.rb │ ├── load_error_test.rb │ ├── module │ │ ├── anonymous_test.rb │ │ ├── attr_internal_test.rb │ │ ├── attribute_accessor_test.rb │ │ ├── attribute_aliasing_test.rb │ │ ├── reachable_test.rb │ │ └── synchronization_test.rb │ ├── module_test.rb │ ├── name_error_test.rb │ ├── numeric_ext_test.rb │ ├── object │ │ ├── inclusion_test.rb │ │ ├── public_send_test.rb │ │ ├── to_param_test.rb │ │ └── to_query_test.rb │ ├── object_and_class_ext_test.rb │ ├── proc_test.rb │ ├── range_ext_test.rb │ ├── regexp_ext_test.rb │ ├── string_ext_test.rb │ ├── time_ext_test.rb │ ├── time_with_zone_test.rb │ └── uri_ext_test.rb │ ├── dependencies │ ├── check_warnings.rb │ ├── conflict.rb │ ├── cross_site_depender.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 │ └── proxy_wrappers_test.rb │ ├── deprecation_test.rb │ ├── descendants_tracker_test_cases.rb │ ├── descendants_tracker_with_autoloading_test.rb │ ├── descendants_tracker_without_autoloading_test.rb │ ├── empty_bool.rb │ ├── file_update_checker_test.rb │ ├── fixtures │ ├── autoload │ │ ├── another_class.rb │ │ └── some_class.rb │ └── custom.rb │ ├── flush_cache_on_private_memoization_test.rb │ ├── gzip_test.rb │ ├── i18n_test.rb │ ├── inflector_test.rb │ ├── inflector_test_cases.rb │ ├── isolation_test.rb │ ├── json │ ├── decoding_test.rb │ └── encoding_test.rb │ ├── lazy_load_hooks_test.rb │ ├── load_paths_test.rb │ ├── log_subscriber_test.rb │ ├── memoizable_test.rb │ ├── message_encryptor_test.rb │ ├── message_verifier_test.rb │ ├── multibyte_chars_test.rb │ ├── multibyte_conformance.rb │ ├── multibyte_test_helpers.rb │ ├── multibyte_unicode_database_test.rb │ ├── multibyte_utils_test.rb │ ├── notifications_test.rb │ ├── option_merger_test.rb │ ├── ordered_hash_test.rb │ ├── ordered_options_test.rb │ ├── rescuable_test.rb │ ├── safe_buffer_test.rb │ ├── string_inquirer_test.rb │ ├── test_case_test.rb │ ├── test_test.rb │ ├── time_zone_test.rb │ ├── transliterate_test.rb │ ├── ts_isolated.rb │ ├── whiny_nil_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_test.rb ├── bin └── rails ├── ci └── travis.rb ├── install.rb ├── load_paths.rb ├── rails.gemspec ├── railties ├── .gitignore ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── bin │ └── rails ├── guides │ ├── assets │ │ ├── images │ │ │ ├── belongs_to.png │ │ │ ├── book_icon.gif │ │ │ ├── bullet.gif │ │ │ ├── challenge.png │ │ │ ├── chapters_icon.gif │ │ │ ├── check_bullet.gif │ │ │ ├── credits_pic_blank.gif │ │ │ ├── csrf.png │ │ │ ├── customized_error_messages.png │ │ │ ├── edge_badge.png │ │ │ ├── error_messages.png │ │ │ ├── feature_tile.gif │ │ │ ├── footer_tile.gif │ │ │ ├── fxn.png │ │ │ ├── grey_bullet.gif │ │ │ ├── habtm.png │ │ │ ├── has_many.png │ │ │ ├── has_many_through.png │ │ │ ├── has_one.png │ │ │ ├── has_one_through.png │ │ │ ├── header_backdrop.png │ │ │ ├── header_tile.gif │ │ │ ├── i18n │ │ │ │ ├── demo_localized_pirate.png │ │ │ │ ├── demo_translated_en.png │ │ │ │ ├── demo_translated_pirate.png │ │ │ │ ├── demo_translation_missing.png │ │ │ │ └── demo_untranslated.png │ │ │ ├── icons │ │ │ │ ├── README │ │ │ │ ├── callouts │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── caution.png │ │ │ │ ├── example.png │ │ │ │ ├── home.png │ │ │ │ ├── important.png │ │ │ │ ├── next.png │ │ │ │ ├── note.png │ │ │ │ ├── prev.png │ │ │ │ ├── tip.png │ │ │ │ ├── up.png │ │ │ │ └── warning.png │ │ │ ├── jaimeiniesta.jpg │ │ │ ├── nav_arrow.gif │ │ │ ├── polymorphic.png │ │ │ ├── posts_index.png │ │ │ ├── radar.png │ │ │ ├── rails_guides_logo.gif │ │ │ ├── rails_logo_remix.gif │ │ │ ├── rails_welcome.png │ │ │ ├── session_fixation.png │ │ │ ├── tab_grey.gif │ │ │ ├── tab_info.gif │ │ │ ├── tab_note.gif │ │ │ ├── tab_red.gif │ │ │ ├── tab_yellow.gif │ │ │ ├── tab_yellow.png │ │ │ ├── validation_error_messages.png │ │ │ └── vijaydev.jpg │ │ ├── javascripts │ │ │ ├── guides.js │ │ │ └── syntaxhighlighter │ │ │ │ ├── shBrushAS3.js │ │ │ │ ├── shBrushAppleScript.js │ │ │ │ ├── shBrushBash.js │ │ │ │ ├── shBrushCSharp.js │ │ │ │ ├── shBrushColdFusion.js │ │ │ │ ├── shBrushCpp.js │ │ │ │ ├── shBrushCss.js │ │ │ │ ├── shBrushDelphi.js │ │ │ │ ├── shBrushDiff.js │ │ │ │ ├── shBrushErlang.js │ │ │ │ ├── shBrushGroovy.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ ├── shBrushJava.js │ │ │ │ ├── shBrushJavaFX.js │ │ │ │ ├── shBrushPerl.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shBrushPlain.js │ │ │ │ ├── shBrushPowerShell.js │ │ │ │ ├── shBrushPython.js │ │ │ │ ├── shBrushRuby.js │ │ │ │ ├── shBrushSass.js │ │ │ │ ├── shBrushScala.js │ │ │ │ ├── shBrushSql.js │ │ │ │ ├── shBrushVb.js │ │ │ │ ├── shBrushXml.js │ │ │ │ └── shCore.js │ │ └── stylesheets │ │ │ ├── fixes.css │ │ │ ├── main.css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ ├── style.css │ │ │ └── syntaxhighlighter │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ ├── shThemeRDark.css │ │ │ └── shThemeRailsGuides.css │ ├── rails_guides.rb │ ├── rails_guides │ │ ├── generator.rb │ │ ├── helpers.rb │ │ ├── indexer.rb │ │ ├── levenshtein.rb │ │ └── textile_extensions.rb │ ├── source │ │ ├── 2_2_release_notes.textile │ │ ├── 2_3_release_notes.textile │ │ ├── 3_0_release_notes.textile │ │ ├── 3_1_release_notes.textile │ │ ├── action_controller_overview.textile │ │ ├── action_mailer_basics.textile │ │ ├── action_view_overview.textile │ │ ├── active_model_basics.textile │ │ ├── active_record_basics.textile │ │ ├── active_record_querying.textile │ │ ├── active_record_validations_callbacks.textile │ │ ├── active_resource_basics.textile │ │ ├── active_support_core_extensions.textile │ │ ├── ajax_on_rails.textile │ │ ├── api_documentation_guidelines.textile │ │ ├── asset_pipeline.textile │ │ ├── association_basics.textile │ │ ├── caching_with_rails.textile │ │ ├── command_line.textile │ │ ├── configuring.textile │ │ ├── contribute.textile │ │ ├── contributing_to_ruby_on_rails.textile │ │ ├── credits.html.erb │ │ ├── debugging_rails_applications.textile │ │ ├── form_helpers.textile │ │ ├── generators.textile │ │ ├── getting_started.textile │ │ ├── i18n.textile │ │ ├── index.html.erb │ │ ├── initialization.textile │ │ ├── layout.html.erb │ │ ├── layouts_and_rendering.textile │ │ ├── migrations.textile │ │ ├── nested_model_forms.textile │ │ ├── performance_testing.textile │ │ ├── plugins.textile │ │ ├── rails_application_templates.textile │ │ ├── rails_on_rack.textile │ │ ├── routing.textile │ │ ├── ruby_on_rails_guides_guidelines.textile │ │ ├── security.textile │ │ └── testing.textile │ └── w3c_validator.rb ├── lib │ ├── rails.rb │ └── rails │ │ ├── all.rb │ │ ├── application.rb │ │ ├── application │ │ ├── bootstrap.rb │ │ ├── configuration.rb │ │ ├── finisher.rb │ │ ├── railties.rb │ │ └── routes_reloader.rb │ │ ├── backtrace_cleaner.rb │ │ ├── cli.rb │ │ ├── code_statistics.rb │ │ ├── commands.rb │ │ ├── commands │ │ ├── application.rb │ │ ├── benchmarker.rb │ │ ├── console.rb │ │ ├── dbconsole.rb │ │ ├── destroy.rb │ │ ├── generate.rb │ │ ├── plugin.rb │ │ ├── plugin_new.rb │ │ ├── profiler.rb │ │ ├── runner.rb │ │ ├── server.rb │ │ └── update.rb │ │ ├── configuration.rb │ │ ├── console │ │ ├── app.rb │ │ └── helpers.rb │ │ ├── engine.rb │ │ ├── engine │ │ ├── commands.rb │ │ ├── configuration.rb │ │ └── railties.rb │ │ ├── generators.rb │ │ ├── generators │ │ ├── actions.rb │ │ ├── active_model.rb │ │ ├── app_base.rb │ │ ├── base.rb │ │ ├── css │ │ │ ├── assets │ │ │ │ ├── assets_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── stylesheet.css │ │ │ └── scaffold │ │ │ │ └── scaffold_generator.rb │ │ ├── erb.rb │ │ ├── erb │ │ │ ├── controller │ │ │ │ ├── controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── view.html.erb │ │ │ ├── mailer │ │ │ │ ├── mailer_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── view.text.erb │ │ │ └── scaffold │ │ │ │ ├── scaffold_generator.rb │ │ │ │ └── templates │ │ │ │ ├── _form.html.erb │ │ │ │ ├── edit.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── new.html.erb │ │ │ │ └── show.html.erb │ │ ├── generated_attribute.rb │ │ ├── js │ │ │ └── assets │ │ │ │ ├── assets_generator.rb │ │ │ │ └── templates │ │ │ │ └── javascript.js │ │ ├── migration.rb │ │ ├── named_base.rb │ │ ├── rails │ │ │ ├── app │ │ │ │ ├── USAGE │ │ │ │ ├── app_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── Gemfile │ │ │ │ │ ├── README │ │ │ │ │ ├── Rakefile │ │ │ │ │ ├── app │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── rails.png │ │ │ │ │ │ ├── javascripts │ │ │ │ │ │ │ └── application.js.tt │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ └── application.css │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── application_controller.rb │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── application_helper.rb │ │ │ │ │ ├── mailers │ │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── models │ │ │ │ │ │ └── .empty_directory │ │ │ │ │ └── views │ │ │ │ │ │ └── layouts │ │ │ │ │ │ └── application.html.erb.tt │ │ │ │ │ ├── config.ru │ │ │ │ │ ├── config │ │ │ │ │ ├── application.rb │ │ │ │ │ ├── boot.rb │ │ │ │ │ ├── databases │ │ │ │ │ │ ├── frontbase.yml │ │ │ │ │ │ ├── ibm_db.yml │ │ │ │ │ │ ├── jdbc.yml │ │ │ │ │ │ ├── jdbcmysql.yml │ │ │ │ │ │ ├── jdbcpostgresql.yml │ │ │ │ │ │ ├── jdbcsqlite3.yml │ │ │ │ │ │ ├── mysql.yml │ │ │ │ │ │ ├── oracle.yml │ │ │ │ │ │ ├── postgresql.yml │ │ │ │ │ │ └── sqlite3.yml │ │ │ │ │ ├── environment.rb │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── development.rb.tt │ │ │ │ │ │ ├── production.rb.tt │ │ │ │ │ │ └── test.rb.tt │ │ │ │ │ ├── initializers │ │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ │ ├── inflections.rb │ │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ │ ├── secret_token.rb.tt │ │ │ │ │ │ ├── session_store.rb.tt │ │ │ │ │ │ └── wrap_parameters.rb.tt │ │ │ │ │ ├── locales │ │ │ │ │ │ └── en.yml │ │ │ │ │ └── routes.rb │ │ │ │ │ ├── db │ │ │ │ │ └── seeds.rb.tt │ │ │ │ │ ├── doc │ │ │ │ │ └── README_FOR_APP │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── public │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 422.html │ │ │ │ │ ├── 500.html │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── robots.txt │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── script │ │ │ │ │ └── rails │ │ │ │ │ └── test │ │ │ │ │ ├── fixtures │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── functional │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── integration │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── performance │ │ │ │ │ └── browsing_test.rb │ │ │ │ │ ├── test_helper.rb │ │ │ │ │ └── unit │ │ │ │ │ └── .empty_directory │ │ │ ├── assets │ │ │ │ ├── USAGE │ │ │ │ ├── assets_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── javascript.js │ │ │ │ │ └── stylesheet.css │ │ │ ├── controller │ │ │ │ ├── USAGE │ │ │ │ ├── controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── controller.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 │ │ │ ├── integration_test │ │ │ │ ├── USAGE │ │ │ │ └── integration_test_generator.rb │ │ │ ├── migration │ │ │ │ ├── USAGE │ │ │ │ └── migration_generator.rb │ │ │ ├── model │ │ │ │ ├── USAGE │ │ │ │ └── model_generator.rb │ │ │ ├── observer │ │ │ │ ├── USAGE │ │ │ │ └── observer_generator.rb │ │ │ ├── performance_test │ │ │ │ ├── USAGE │ │ │ │ └── performance_test_generator.rb │ │ │ ├── plugin_new │ │ │ │ ├── USAGE │ │ │ │ ├── plugin_new_generator.rb │ │ │ │ └── templates │ │ │ │ │ ├── %name%.gemspec │ │ │ │ │ ├── Gemfile │ │ │ │ │ ├── MIT-LICENSE │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── Rakefile │ │ │ │ │ ├── app │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── %name% │ │ │ │ │ │ │ └── application_controller.rb.tt │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── %name% │ │ │ │ │ │ │ └── application_helper.rb.tt │ │ │ │ │ ├── mailers │ │ │ │ │ │ └── .empty_directory │ │ │ │ │ ├── models │ │ │ │ │ │ └── .empty_directory │ │ │ │ │ └── views │ │ │ │ │ │ └── layouts │ │ │ │ │ │ └── %name% │ │ │ │ │ │ └── application.html.erb.tt │ │ │ │ │ ├── config │ │ │ │ │ └── routes.rb │ │ │ │ │ ├── gitignore │ │ │ │ │ ├── lib │ │ │ │ │ ├── %name%.rb │ │ │ │ │ ├── %name% │ │ │ │ │ │ ├── engine.rb │ │ │ │ │ │ └── version.rb │ │ │ │ │ └── tasks │ │ │ │ │ │ └── %name%_tasks.rake │ │ │ │ │ ├── rails │ │ │ │ │ ├── application.rb │ │ │ │ │ ├── boot.rb │ │ │ │ │ └── routes.rb │ │ │ │ │ ├── script │ │ │ │ │ └── rails.tt │ │ │ │ │ └── test │ │ │ │ │ ├── %name%_test.rb │ │ │ │ │ ├── integration │ │ │ │ │ └── navigation_test.rb │ │ │ │ │ └── test_helper.rb │ │ │ ├── resource │ │ │ │ ├── USAGE │ │ │ │ └── resource_generator.rb │ │ │ ├── scaffold │ │ │ │ ├── USAGE │ │ │ │ ├── scaffold_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── scaffold.css │ │ │ ├── scaffold_controller │ │ │ │ ├── USAGE │ │ │ │ ├── scaffold_controller_generator.rb │ │ │ │ └── templates │ │ │ │ │ └── controller.rb │ │ │ └── session_migration │ │ │ │ ├── USAGE │ │ │ │ └── session_migration_generator.rb │ │ ├── resource_helpers.rb │ │ ├── test_case.rb │ │ ├── test_unit.rb │ │ └── test_unit │ │ │ ├── controller │ │ │ ├── controller_generator.rb │ │ │ └── templates │ │ │ │ └── functional_test.rb │ │ │ ├── helper │ │ │ ├── helper_generator.rb │ │ │ └── templates │ │ │ │ └── helper_test.rb │ │ │ ├── integration │ │ │ ├── integration_generator.rb │ │ │ └── templates │ │ │ │ └── integration_test.rb │ │ │ ├── mailer │ │ │ ├── mailer_generator.rb │ │ │ └── templates │ │ │ │ └── functional_test.rb │ │ │ ├── model │ │ │ ├── model_generator.rb │ │ │ └── templates │ │ │ │ ├── fixtures.yml │ │ │ │ └── unit_test.rb │ │ │ ├── observer │ │ │ ├── observer_generator.rb │ │ │ └── templates │ │ │ │ └── unit_test.rb │ │ │ ├── performance │ │ │ ├── performance_generator.rb │ │ │ └── templates │ │ │ │ └── performance_test.rb │ │ │ ├── plugin │ │ │ ├── plugin_generator.rb │ │ │ └── templates │ │ │ │ ├── %file_name%_test.rb.tt │ │ │ │ └── test_helper.rb │ │ │ └── scaffold │ │ │ ├── scaffold_generator.rb │ │ │ └── templates │ │ │ └── functional_test.rb │ │ ├── info.rb │ │ ├── info_controller.rb │ │ ├── initializable.rb │ │ ├── paths.rb │ │ ├── performance_test_help.rb │ │ ├── plugin.rb │ │ ├── rack.rb │ │ ├── rack │ │ ├── content_length.rb │ │ ├── debugger.rb │ │ ├── log_tailer.rb │ │ └── logger.rb │ │ ├── railtie.rb │ │ ├── railtie │ │ ├── configurable.rb │ │ └── configuration.rb │ │ ├── ruby_version_check.rb │ │ ├── rubyprof_ext.rb │ │ ├── script_rails_loader.rb │ │ ├── source_annotation_extractor.rb │ │ ├── tasks.rb │ │ ├── tasks │ │ ├── annotations.rake │ │ ├── documentation.rake │ │ ├── engine.rake │ │ ├── framework.rake │ │ ├── log.rake │ │ ├── middleware.rake │ │ ├── misc.rake │ │ ├── routes.rake │ │ ├── statistics.rake │ │ └── tmp.rake │ │ ├── test_help.rb │ │ ├── test_unit │ │ ├── railtie.rb │ │ └── testing.rake │ │ └── version.rb ├── railties.gemspec └── test │ ├── abstract_unit.rb │ ├── application │ ├── assets_test.rb │ ├── configuration_test.rb │ ├── console_test.rb │ ├── generators_test.rb │ ├── initializers │ │ ├── boot_test.rb │ │ ├── check_ruby_version_test.rb │ │ ├── frameworks_test.rb │ │ ├── hooks_test.rb │ │ ├── i18n_test.rb │ │ ├── load_path_test.rb │ │ └── notifications_test.rb │ ├── loading_test.rb │ ├── middleware │ │ ├── best_practices_test.rb │ │ ├── cache_test.rb │ │ ├── remote_ip_test.rb │ │ ├── sendfile_test.rb │ │ └── show_exceptions_test.rb │ ├── middleware_test.rb │ ├── paths_test.rb │ ├── rack │ │ └── logger_test.rb │ ├── rackup_test.rb │ ├── rake_test.rb │ ├── routing_test.rb │ ├── runner_test.rb │ ├── test_test.rb │ └── url_generation_test.rb │ ├── backtrace_cleaner_test.rb │ ├── fixtures │ ├── about_yml_plugins │ │ ├── bad_about_yml │ │ │ ├── about.yml │ │ │ └── init.rb │ │ └── plugin_without_about_yml │ │ │ └── init.rb │ └── lib │ │ ├── app_builders │ │ ├── empty_builder.rb │ │ ├── simple_builder.rb │ │ └── tweak_builder.rb │ │ ├── create_test_dummy_template.rb │ │ ├── generators │ │ ├── active_record │ │ │ └── fixjour_generator.rb │ │ ├── fixjour_generator.rb │ │ └── model_generator.rb │ │ ├── plugin_builders │ │ ├── empty_builder.rb │ │ ├── simple_builder.rb │ │ ├── spec_builder.rb │ │ └── tweak_builder.rb │ │ ├── rails │ │ └── generators │ │ │ └── foobar │ │ │ └── foobar_generator.rb │ │ └── template.rb │ ├── generators │ ├── actions_test.rb │ ├── app_generator_test.rb │ ├── assets_generator_test.rb │ ├── controller_generator_test.rb │ ├── generated_attribute_test.rb │ ├── generator_generator_test.rb │ ├── generators_test_helper.rb │ ├── helper_generator_test.rb │ ├── integration_test_generator_test.rb │ ├── mailer_generator_test.rb │ ├── migration_generator_test.rb │ ├── model_generator_test.rb │ ├── named_base_test.rb │ ├── namespaced_generators_test.rb │ ├── observer_generator_test.rb │ ├── performance_test_generator_test.rb │ ├── plugin_new_generator_test.rb │ ├── resource_generator_test.rb │ ├── scaffold_controller_generator_test.rb │ ├── scaffold_generator_test.rb │ ├── session_migration_generator_test.rb │ └── shared_generator_tests.rb │ ├── generators_test.rb │ ├── initializable_test.rb │ ├── isolation │ └── abstract_unit.rb │ ├── paths_test.rb │ ├── rails_info_controller_test.rb │ ├── rails_info_test.rb │ ├── railties │ ├── engine_test.rb │ ├── generators_test.rb │ ├── mounted_engine_test.rb │ ├── plugin_ordering_test.rb │ ├── plugin_test.rb │ ├── railtie_test.rb │ └── shared_tests.rb │ └── script_rails_loader_test.rb ├── tasks └── release.rb ├── tools ├── console └── profile └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/Gemfile -------------------------------------------------------------------------------- /RAILS_VERSION: -------------------------------------------------------------------------------- 1 | 3.2.0.beta 2 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/README.rdoc -------------------------------------------------------------------------------- /RELEASING_RAILS.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/RELEASING_RAILS.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/Rakefile -------------------------------------------------------------------------------- /actionmailer/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/CHANGELOG -------------------------------------------------------------------------------- /actionmailer/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/MIT-LICENSE -------------------------------------------------------------------------------- /actionmailer/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/README.rdoc -------------------------------------------------------------------------------- /actionmailer/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/Rakefile -------------------------------------------------------------------------------- /actionmailer/actionmailer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/actionmailer.gemspec -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer.rb -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer/base.rb -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer/collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer/collector.rb -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer/railtie.rb -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer/test_case.rb -------------------------------------------------------------------------------- /actionmailer/lib/action_mailer/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/lib/action_mailer/version.rb -------------------------------------------------------------------------------- /actionmailer/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/test/abstract_unit.rb -------------------------------------------------------------------------------- /actionmailer/test/asset_host_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/test/asset_host_test.rb -------------------------------------------------------------------------------- /actionmailer/test/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/test/base_test.rb -------------------------------------------------------------------------------- /actionmailer/test/delivery_methods_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionmailer/test/delivery_methods_test.rb -------------------------------------------------------------------------------- /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/different_layout.html.erb: -------------------------------------------------------------------------------- 1 | HTML -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/different_layout.text.erb: -------------------------------------------------------------------------------- 1 | PLAIN -------------------------------------------------------------------------------- /actionmailer/test/fixtures/base_mailer/email_custom_layout.text.html.erb: -------------------------------------------------------------------------------- 1 | body_text -------------------------------------------------------------------------------- /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 |
Beautiful modules!
-------------------------------------------------------------------------------- /actionpack/test/fixtures/shared.html.erb: -------------------------------------------------------------------------------- 1 | Elastica -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/alternate/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | /* Different from other style.css */ -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require xmlhr 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/javascripts/dir/xmlhr.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/javascripts/extra.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/javascripts/xmlhr.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /*= require style */ 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/stylesheets/dir/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/sprockets/app/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/symlink_parent/symlinked_layout.erb: -------------------------------------------------------------------------------- 1 | This is my layout 2 | 3 | <%= yield %> 4 | 5 | End. 6 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/_200.html.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/greeting.xml.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/test/hello.builder -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_w*rld.erb: -------------------------------------------------------------------------------- 1 | Hello w*rld! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey verden -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world.erb~: -------------------------------------------------------------------------------- 1 | Don't pick me! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world.pt-BR.html.erb: -------------------------------------------------------------------------------- 1 | Ola mundo -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world_from_rxml.builder: -------------------------------------------------------------------------------- 1 | xml.html do 2 | xml.p "Hello" 3 | end 4 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hello_world_with_layout_false.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/hyphen-ated.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/implicit_content_type.atom.builder: -------------------------------------------------------------------------------- 1 | xml.atom do 2 | end 3 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/test/list.erb -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/malformed/malformed.en.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/malformed/malformed.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/malformed/malformed.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/proper_block_detection.erb: -------------------------------------------------------------------------------- 1 | <%= @todo %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/render_file_from_template.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :file => @path %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/render_file_with_locals_and_default.erb: -------------------------------------------------------------------------------- 1 | <%= secret ||= 'one' %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey HTML! 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb: -------------------------------------------------------------------------------- 1 | Hello HTML! -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb: -------------------------------------------------------------------------------- 1 | alert('hello'); -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/streaming.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/test/streaming.erb -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/sub_template_raise.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => "test/raise" %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/template.erb: -------------------------------------------------------------------------------- 1 | <%= template.path %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/test/utf8.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/test/utf8.html.erb -------------------------------------------------------------------------------- /actionpack/test/fixtures/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/topic.rb -------------------------------------------------------------------------------- /actionpack/test/fixtures/topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/fixtures/topics.yml -------------------------------------------------------------------------------- /actionpack/test/fixtures/topics/_topic.html.erb: -------------------------------------------------------------------------------- 1 | <%= topic.title %> -------------------------------------------------------------------------------- /actionpack/test/fixtures/translations/templates/array.erb: -------------------------------------------------------------------------------- 1 | <%= t('.foo.bar') %> 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/translations/templates/found.erb: -------------------------------------------------------------------------------- 1 | <%= t('.foo') %> 2 | -------------------------------------------------------------------------------- /actionpack/test/fixtures/translations/templates/missing.erb: -------------------------------------------------------------------------------- 1 | <%= t('.missing') %> 2 | -------------------------------------------------------------------------------- /actionpack/test/lib/testing_sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/lib/testing_sandbox.rb -------------------------------------------------------------------------------- /actionpack/test/template/date_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/date_helper_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/erb/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/erb/helper.rb -------------------------------------------------------------------------------- /actionpack/test/template/erb_util_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/erb_util_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/form_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/form_helper_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/render_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/render_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/tag_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/tag_helper_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/template_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/template_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/test_case_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/test_case_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/test_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/test_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/text_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/text_helper_test.rb -------------------------------------------------------------------------------- /actionpack/test/template/url_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/template/url_helper_test.rb -------------------------------------------------------------------------------- /actionpack/test/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionpack/test/ts_isolated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/actionpack/test/ts_isolated.rb -------------------------------------------------------------------------------- /activemodel/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/CHANGELOG -------------------------------------------------------------------------------- /activemodel/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/MIT-LICENSE -------------------------------------------------------------------------------- /activemodel/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/README.rdoc -------------------------------------------------------------------------------- /activemodel/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/Rakefile -------------------------------------------------------------------------------- /activemodel/activemodel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/activemodel.gemspec -------------------------------------------------------------------------------- /activemodel/examples/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/examples/validations.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/callbacks.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/conversion.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/dirty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/dirty.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/errors.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/lint.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/locale/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/locale/en.yml -------------------------------------------------------------------------------- /activemodel/lib/active_model/naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/naming.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/observing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/observing.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/railtie.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/test_case.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/translation.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/validations.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/validator.rb -------------------------------------------------------------------------------- /activemodel/lib/active_model/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/lib/active_model/version.rb -------------------------------------------------------------------------------- /activemodel/test/cases/callbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/callbacks_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/conversion_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/conversion_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/dirty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/dirty_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/errors_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/errors_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/helper.rb -------------------------------------------------------------------------------- /activemodel/test/cases/lint_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/lint_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/naming_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/naming_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/observing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/observing_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/serialization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/serialization_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/translation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/translation_test.rb -------------------------------------------------------------------------------- /activemodel/test/cases/validations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/cases/validations_test.rb -------------------------------------------------------------------------------- /activemodel/test/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/config.rb -------------------------------------------------------------------------------- /activemodel/test/models/administrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/administrator.rb -------------------------------------------------------------------------------- /activemodel/test/models/automobile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/automobile.rb -------------------------------------------------------------------------------- /activemodel/test/models/blog_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/blog_post.rb -------------------------------------------------------------------------------- /activemodel/test/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/contact.rb -------------------------------------------------------------------------------- /activemodel/test/models/custom_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/custom_reader.rb -------------------------------------------------------------------------------- /activemodel/test/models/helicopter.rb: -------------------------------------------------------------------------------- 1 | class Helicopter 2 | include ActiveModel::Conversion 3 | end 4 | -------------------------------------------------------------------------------- /activemodel/test/models/observers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/observers.rb -------------------------------------------------------------------------------- /activemodel/test/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/person.rb -------------------------------------------------------------------------------- /activemodel/test/models/reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/reply.rb -------------------------------------------------------------------------------- /activemodel/test/models/sheep.rb: -------------------------------------------------------------------------------- 1 | class Sheep 2 | extend ActiveModel::Naming 3 | end 4 | -------------------------------------------------------------------------------- /activemodel/test/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/topic.rb -------------------------------------------------------------------------------- /activemodel/test/models/track_back.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/track_back.rb -------------------------------------------------------------------------------- /activemodel/test/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/user.rb -------------------------------------------------------------------------------- /activemodel/test/models/visitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activemodel/test/models/visitor.rb -------------------------------------------------------------------------------- /activerecord/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/CHANGELOG -------------------------------------------------------------------------------- /activerecord/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/MIT-LICENSE -------------------------------------------------------------------------------- /activerecord/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/README.rdoc -------------------------------------------------------------------------------- /activerecord/RUNNING_UNIT_TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/RUNNING_UNIT_TESTS -------------------------------------------------------------------------------- /activerecord/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/Rakefile -------------------------------------------------------------------------------- /activerecord/activerecord.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/activerecord.gemspec -------------------------------------------------------------------------------- /activerecord/examples/.gitignore: -------------------------------------------------------------------------------- 1 | performance.sql 2 | -------------------------------------------------------------------------------- /activerecord/examples/associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/examples/associations.png -------------------------------------------------------------------------------- /activerecord/examples/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/examples/performance.rb -------------------------------------------------------------------------------- /activerecord/examples/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/examples/simple.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/base.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/callbacks.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/errors.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/fixtures.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/locale/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/locale/en.yml -------------------------------------------------------------------------------- /activerecord/lib/active_record/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/migration.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/observer.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/railtie.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/reflection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/reflection.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/relation.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/result.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/schema.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/test_case.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/timestamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/timestamp.rb -------------------------------------------------------------------------------- /activerecord/lib/active_record/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/lib/active_record/version.rb -------------------------------------------------------------------------------- /activerecord/test/.gitignore: -------------------------------------------------------------------------------- 1 | /config.yml 2 | -------------------------------------------------------------------------------- /activerecord/test/assets/example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/assets/example.log -------------------------------------------------------------------------------- /activerecord/test/assets/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/assets/flowers.jpg -------------------------------------------------------------------------------- /activerecord/test/cases/adapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/adapter_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/aggregations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/aggregations_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/ar_schema_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/ar_schema_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/associations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/associations_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/base_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/batches_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/batches_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/binary_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/binary_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/calculations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/calculations_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/callbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/callbacks_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/clone_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/clone_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/column_alias_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/column_alias_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/date_time_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/date_time_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/defaults_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/defaults_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/dirty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/dirty_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/dup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/dup_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/finder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/finder_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/fixtures_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/fixtures_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/helper.rb -------------------------------------------------------------------------------- /activerecord/test/cases/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/i18n_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/identity_map_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/identity_map_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/inheritance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/inheritance_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/invalid_date_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/invalid_date_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/lifecycle_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/lifecycle_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/locking_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/locking_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/migration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/migration_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/mixin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/mixin_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/modules_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/modules_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/multiple_db_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/multiple_db_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/named_scope_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/named_scope_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/persistence_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/persistence_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/primary_keys_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/primary_keys_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/query_cache_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/query_cache_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/quoting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/quoting_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/readonly_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/readonly_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/reflection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/reflection_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/relation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/relation_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/relations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/relations_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/sanitize_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/sanitize_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/timestamp_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/timestamp_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/transactions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/transactions_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/unconnected_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/unconnected_test.rb -------------------------------------------------------------------------------- /activerecord/test/cases/validations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/cases/validations_test.rb -------------------------------------------------------------------------------- /activerecord/test/config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/config.example.yml -------------------------------------------------------------------------------- /activerecord/test/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/config.rb -------------------------------------------------------------------------------- /activerecord/test/fixtures/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* -------------------------------------------------------------------------------- /activerecord/test/fixtures/accounts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/accounts.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/admin/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/admin/users.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/developers.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/people.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/all/tasks.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/authors.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/binaries.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/books.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/books.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/cars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/cars.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/categories.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/clubs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/clubs.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/collections.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/comments.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/companies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/companies.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/computers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/computers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/courses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/courses.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/customers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/dashboards.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/developers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/developers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/edges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/edges.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/entrants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/entrants.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/essays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/essays.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/faces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/faces.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/fk_test_has_pk.yml: -------------------------------------------------------------------------------- 1 | first: 2 | id: 1 -------------------------------------------------------------------------------- /activerecord/test/fixtures/funny_jokes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/funny_jokes.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/interests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/interests.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/items.yml: -------------------------------------------------------------------------------- 1 | dvd: 2 | id: 1 3 | name: Godfather 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/jobs.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/legacy_things.yml: -------------------------------------------------------------------------------- 1 | obtuse: 2 | id: 1 3 | tps_report_number: 500 4 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/mateys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/mateys.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/member_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/member_types.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/members.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/memberships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/memberships.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/men.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/men.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/minimalistics.yml: -------------------------------------------------------------------------------- 1 | first: 2 | id: 1 3 | -------------------------------------------------------------------------------- /activerecord/test/fixtures/minivans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/minivans.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/mixins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/mixins.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/movies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/movies.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/naked/csv/accounts.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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/organizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/organizations.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/owners.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/parrots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/parrots.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/people.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/pets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/pets.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/pirates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/pirates.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/posts.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/products.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/projects.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/ratings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/ratings.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/readers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/readers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/references.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/ships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/ships.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/speedometers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/speedometers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/sponsors.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/subscribers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/subscribers.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/subscriptions.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/taggings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/taggings.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/tags.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/tasks.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/topics.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/toys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/toys.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/treasures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/treasures.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/variants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/variants.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/vertices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/vertices.yml -------------------------------------------------------------------------------- /activerecord/test/fixtures/zines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/fixtures/zines.yml -------------------------------------------------------------------------------- /activerecord/test/migrations/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activerecord/test/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/admin.rb -------------------------------------------------------------------------------- /activerecord/test/models/admin/account.rb: -------------------------------------------------------------------------------- 1 | class Admin::Account < ActiveRecord::Base 2 | has_many :users 3 | end -------------------------------------------------------------------------------- /activerecord/test/models/admin/user.rb: -------------------------------------------------------------------------------- 1 | class Admin::User < ActiveRecord::Base 2 | belongs_to :account 3 | end -------------------------------------------------------------------------------- /activerecord/test/models/aircraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/aircraft.rb -------------------------------------------------------------------------------- /activerecord/test/models/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/author.rb -------------------------------------------------------------------------------- /activerecord/test/models/auto_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/auto_id.rb -------------------------------------------------------------------------------- /activerecord/test/models/binary.rb: -------------------------------------------------------------------------------- 1 | class Binary < ActiveRecord::Base 2 | end -------------------------------------------------------------------------------- /activerecord/test/models/bird.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/bird.rb -------------------------------------------------------------------------------- /activerecord/test/models/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/book.rb -------------------------------------------------------------------------------- /activerecord/test/models/boolean.rb: -------------------------------------------------------------------------------- 1 | class Boolean < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /activerecord/test/models/bulb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/bulb.rb -------------------------------------------------------------------------------- /activerecord/test/models/car.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/car.rb -------------------------------------------------------------------------------- /activerecord/test/models/categorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/categorization.rb -------------------------------------------------------------------------------- /activerecord/test/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/category.rb -------------------------------------------------------------------------------- /activerecord/test/models/citation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/citation.rb -------------------------------------------------------------------------------- /activerecord/test/models/club.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/club.rb -------------------------------------------------------------------------------- /activerecord/test/models/column_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/column_name.rb -------------------------------------------------------------------------------- /activerecord/test/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/comment.rb -------------------------------------------------------------------------------- /activerecord/test/models/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/company.rb -------------------------------------------------------------------------------- /activerecord/test/models/computer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/computer.rb -------------------------------------------------------------------------------- /activerecord/test/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/contact.rb -------------------------------------------------------------------------------- /activerecord/test/models/contract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/contract.rb -------------------------------------------------------------------------------- /activerecord/test/models/country.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/country.rb -------------------------------------------------------------------------------- /activerecord/test/models/course.rb: -------------------------------------------------------------------------------- 1 | class Course < ActiveRecord::Base 2 | has_many :entrants 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/customer.rb -------------------------------------------------------------------------------- /activerecord/test/models/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/dashboard.rb -------------------------------------------------------------------------------- /activerecord/test/models/default.rb: -------------------------------------------------------------------------------- 1 | class Default < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /activerecord/test/models/developer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/developer.rb -------------------------------------------------------------------------------- /activerecord/test/models/edge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/edge.rb -------------------------------------------------------------------------------- /activerecord/test/models/electron.rb: -------------------------------------------------------------------------------- 1 | class Electron < ActiveRecord::Base 2 | belongs_to :molecule 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/engine.rb -------------------------------------------------------------------------------- /activerecord/test/models/entrant.rb: -------------------------------------------------------------------------------- 1 | class Entrant < ActiveRecord::Base 2 | belongs_to :course 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/essay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/essay.rb -------------------------------------------------------------------------------- /activerecord/test/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/event.rb -------------------------------------------------------------------------------- /activerecord/test/models/eye.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/eye.rb -------------------------------------------------------------------------------- /activerecord/test/models/face.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/face.rb -------------------------------------------------------------------------------- /activerecord/test/models/guid.rb: -------------------------------------------------------------------------------- 1 | class Guid < ActiveRecord::Base 2 | end -------------------------------------------------------------------------------- /activerecord/test/models/interest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/interest.rb -------------------------------------------------------------------------------- /activerecord/test/models/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/invoice.rb -------------------------------------------------------------------------------- /activerecord/test/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/item.rb -------------------------------------------------------------------------------- /activerecord/test/models/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/job.rb -------------------------------------------------------------------------------- /activerecord/test/models/joke.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/joke.rb -------------------------------------------------------------------------------- /activerecord/test/models/keyboard.rb: -------------------------------------------------------------------------------- 1 | class Keyboard < ActiveRecord::Base 2 | set_primary_key 'key_number' 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/legacy_thing.rb: -------------------------------------------------------------------------------- 1 | class LegacyThing < ActiveRecord::Base 2 | set_locking_column :version 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/lesson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/lesson.rb -------------------------------------------------------------------------------- /activerecord/test/models/line_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/line_item.rb -------------------------------------------------------------------------------- /activerecord/test/models/liquid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/liquid.rb -------------------------------------------------------------------------------- /activerecord/test/models/man.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/man.rb -------------------------------------------------------------------------------- /activerecord/test/models/matey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/matey.rb -------------------------------------------------------------------------------- /activerecord/test/models/member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/member.rb -------------------------------------------------------------------------------- /activerecord/test/models/member_detail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/member_detail.rb -------------------------------------------------------------------------------- /activerecord/test/models/member_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/member_type.rb -------------------------------------------------------------------------------- /activerecord/test/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/membership.rb -------------------------------------------------------------------------------- /activerecord/test/models/minimalistic.rb: -------------------------------------------------------------------------------- 1 | class Minimalistic < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /activerecord/test/models/minivan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/minivan.rb -------------------------------------------------------------------------------- /activerecord/test/models/molecule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/molecule.rb -------------------------------------------------------------------------------- /activerecord/test/models/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/movie.rb -------------------------------------------------------------------------------- /activerecord/test/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/order.rb -------------------------------------------------------------------------------- /activerecord/test/models/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/organization.rb -------------------------------------------------------------------------------- /activerecord/test/models/owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/owner.rb -------------------------------------------------------------------------------- /activerecord/test/models/parrot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/parrot.rb -------------------------------------------------------------------------------- /activerecord/test/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/person.rb -------------------------------------------------------------------------------- /activerecord/test/models/pet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/pet.rb -------------------------------------------------------------------------------- /activerecord/test/models/pirate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/pirate.rb -------------------------------------------------------------------------------- /activerecord/test/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/post.rb -------------------------------------------------------------------------------- /activerecord/test/models/price_estimate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/price_estimate.rb -------------------------------------------------------------------------------- /activerecord/test/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/project.rb -------------------------------------------------------------------------------- /activerecord/test/models/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/rating.rb -------------------------------------------------------------------------------- /activerecord/test/models/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/reader.rb -------------------------------------------------------------------------------- /activerecord/test/models/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/reference.rb -------------------------------------------------------------------------------- /activerecord/test/models/reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/reply.rb -------------------------------------------------------------------------------- /activerecord/test/models/ship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/ship.rb -------------------------------------------------------------------------------- /activerecord/test/models/ship_part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/ship_part.rb -------------------------------------------------------------------------------- /activerecord/test/models/shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/shop.rb -------------------------------------------------------------------------------- /activerecord/test/models/speedometer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/speedometer.rb -------------------------------------------------------------------------------- /activerecord/test/models/sponsor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/sponsor.rb -------------------------------------------------------------------------------- /activerecord/test/models/string_key_object.rb: -------------------------------------------------------------------------------- 1 | class StringKeyObject < ActiveRecord::Base 2 | set_primary_key :id 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/student.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/student.rb -------------------------------------------------------------------------------- /activerecord/test/models/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/subject.rb -------------------------------------------------------------------------------- /activerecord/test/models/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/subscriber.rb -------------------------------------------------------------------------------- /activerecord/test/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/subscription.rb -------------------------------------------------------------------------------- /activerecord/test/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/tag.rb -------------------------------------------------------------------------------- /activerecord/test/models/tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/tagging.rb -------------------------------------------------------------------------------- /activerecord/test/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/task.rb -------------------------------------------------------------------------------- /activerecord/test/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/topic.rb -------------------------------------------------------------------------------- /activerecord/test/models/toy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/toy.rb -------------------------------------------------------------------------------- /activerecord/test/models/traffic_light.rb: -------------------------------------------------------------------------------- 1 | class TrafficLight < ActiveRecord::Base 2 | serialize :state, Array 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/treasure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/treasure.rb -------------------------------------------------------------------------------- /activerecord/test/models/treaty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/treaty.rb -------------------------------------------------------------------------------- /activerecord/test/models/tyre.rb: -------------------------------------------------------------------------------- 1 | class Tyre < ActiveRecord::Base 2 | belongs_to :car 3 | end 4 | -------------------------------------------------------------------------------- /activerecord/test/models/vertex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/vertex.rb -------------------------------------------------------------------------------- /activerecord/test/models/warehouse_thing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/warehouse_thing.rb -------------------------------------------------------------------------------- /activerecord/test/models/wheel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/wheel.rb -------------------------------------------------------------------------------- /activerecord/test/models/without_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/without_table.rb -------------------------------------------------------------------------------- /activerecord/test/models/zine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/models/zine.rb -------------------------------------------------------------------------------- /activerecord/test/schema/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/schema/schema.rb -------------------------------------------------------------------------------- /activerecord/test/support/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/support/config.rb -------------------------------------------------------------------------------- /activerecord/test/support/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activerecord/test/support/connection.rb -------------------------------------------------------------------------------- /activeresource/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/CHANGELOG -------------------------------------------------------------------------------- /activeresource/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/MIT-LICENSE -------------------------------------------------------------------------------- /activeresource/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/README.rdoc -------------------------------------------------------------------------------- /activeresource/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/Rakefile -------------------------------------------------------------------------------- /activeresource/activeresource.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/activeresource.gemspec -------------------------------------------------------------------------------- /activeresource/examples/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/examples/performance.rb -------------------------------------------------------------------------------- /activeresource/lib/active_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/lib/active_resource.rb -------------------------------------------------------------------------------- /activeresource/lib/active_resource/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/lib/active_resource/base.rb -------------------------------------------------------------------------------- /activeresource/lib/active_resource/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/lib/active_resource/schema.rb -------------------------------------------------------------------------------- /activeresource/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/abstract_unit.rb -------------------------------------------------------------------------------- /activeresource/test/cases/base/load_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/base/load_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/base_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/base_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/connection_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/finder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/finder_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/format_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/format_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/http_mock_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/http_mock_test.rb -------------------------------------------------------------------------------- /activeresource/test/cases/observing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/cases/observing_test.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/address.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/beast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/beast.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/customer.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/person.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/project.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/proxy.rb -------------------------------------------------------------------------------- /activeresource/test/fixtures/sound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/fixtures/sound.rb -------------------------------------------------------------------------------- /activeresource/test/setter_trap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activeresource/test/setter_trap.rb -------------------------------------------------------------------------------- /activesupport/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/CHANGELOG -------------------------------------------------------------------------------- /activesupport/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/MIT-LICENSE -------------------------------------------------------------------------------- /activesupport/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/README.rdoc -------------------------------------------------------------------------------- /activesupport/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/Rakefile -------------------------------------------------------------------------------- /activesupport/activesupport.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/activesupport.gemspec -------------------------------------------------------------------------------- /activesupport/bin/generate_tables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/bin/generate_tables -------------------------------------------------------------------------------- /activesupport/lib/active_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/all.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/base64.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/builder.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/cache.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/concern.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/core_ext.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/core_ext/big_decimal.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/big_decimal/conversions' 2 | -------------------------------------------------------------------------------- /activesupport/lib/active_support/core_ext/float.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/float/rounding' 2 | -------------------------------------------------------------------------------- /activesupport/lib/active_support/core_ext/process.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/process/daemon' 2 | -------------------------------------------------------------------------------- /activesupport/lib/active_support/duration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/duration.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/gzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/gzip.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/i18n.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/json.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/railtie.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/time.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/version.rb -------------------------------------------------------------------------------- /activesupport/lib/active_support/xml_mini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/lib/active_support/xml_mini.rb -------------------------------------------------------------------------------- /activesupport/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/abstract_unit.rb -------------------------------------------------------------------------------- /activesupport/test/autoload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/autoload.rb -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/a/b.rb: -------------------------------------------------------------------------------- 1 | class A::B 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/a/c/d.rb: -------------------------------------------------------------------------------- 1 | class A::C::D 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/a/c/e/f.rb: -------------------------------------------------------------------------------- 1 | class A::C::E::F 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/application.rb: -------------------------------------------------------------------------------- 1 | ApplicationController = 10 2 | -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/conflict.rb: -------------------------------------------------------------------------------- 1 | Conflict = 2 -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/cross_site_dependency.rb: -------------------------------------------------------------------------------- 1 | class CrossSiteDependency 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/e.rb: -------------------------------------------------------------------------------- 1 | class E 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/load_path/loaded_constant.rb: -------------------------------------------------------------------------------- 1 | module LoadedConstant 2 | end 3 | 4 | -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/module_folder/inline_class.rb: -------------------------------------------------------------------------------- 1 | class ModuleFolder::InlineClass 2 | end 3 | -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb: -------------------------------------------------------------------------------- 1 | class ModuleFolder::NestedSibling 2 | end -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb: -------------------------------------------------------------------------------- 1 | ModuleWithCustomConstMissing::A::B = "10" -------------------------------------------------------------------------------- /activesupport/test/autoloading_fixtures/raises_name_error.rb: -------------------------------------------------------------------------------- 1 | class RaisesNameError 2 | FooBarBaz 3 | end 4 | -------------------------------------------------------------------------------- /activesupport/test/benchmarkable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/benchmarkable_test.rb -------------------------------------------------------------------------------- /activesupport/test/buffered_logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/buffered_logger_test.rb -------------------------------------------------------------------------------- /activesupport/test/caching_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/caching_test.rb -------------------------------------------------------------------------------- /activesupport/test/callbacks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/callbacks_test.rb -------------------------------------------------------------------------------- /activesupport/test/class_cache_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/class_cache_test.rb -------------------------------------------------------------------------------- /activesupport/test/clean_backtrace_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/clean_backtrace_test.rb -------------------------------------------------------------------------------- /activesupport/test/clean_logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/clean_logger_test.rb -------------------------------------------------------------------------------- /activesupport/test/concern_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/concern_test.rb -------------------------------------------------------------------------------- /activesupport/test/configurable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/configurable_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/blank_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/blank_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/class_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/date_ext_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/date_ext_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/duration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/duration_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/file_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/hash_ext_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/hash_ext_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/io_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/io_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/kernel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/kernel_test.rb -------------------------------------------------------------------------------- /activesupport/test/core_ext/proc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/core_ext/proc_test.rb -------------------------------------------------------------------------------- /activesupport/test/dependencies/conflict.rb: -------------------------------------------------------------------------------- 1 | Conflict = 1 -------------------------------------------------------------------------------- /activesupport/test/dependencies/requires_nonexistent0.rb: -------------------------------------------------------------------------------- 1 | require 'RMagickDontExistDude' 2 | -------------------------------------------------------------------------------- /activesupport/test/dependencies/service_two.rb: -------------------------------------------------------------------------------- 1 | class ServiceTwo 2 | end -------------------------------------------------------------------------------- /activesupport/test/dependencies_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/dependencies_test.rb -------------------------------------------------------------------------------- /activesupport/test/deprecation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/deprecation_test.rb -------------------------------------------------------------------------------- /activesupport/test/empty_bool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/empty_bool.rb -------------------------------------------------------------------------------- /activesupport/test/fixtures/autoload/another_class.rb: -------------------------------------------------------------------------------- 1 | class Fixtures::AnotherClass 2 | end -------------------------------------------------------------------------------- /activesupport/test/fixtures/autoload/some_class.rb: -------------------------------------------------------------------------------- 1 | class Fixtures::Autoload::SomeClass 2 | end -------------------------------------------------------------------------------- /activesupport/test/fixtures/custom.rb: -------------------------------------------------------------------------------- 1 | class Custom 2 | end -------------------------------------------------------------------------------- /activesupport/test/gzip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/gzip_test.rb -------------------------------------------------------------------------------- /activesupport/test/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/i18n_test.rb -------------------------------------------------------------------------------- /activesupport/test/inflector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/inflector_test.rb -------------------------------------------------------------------------------- /activesupport/test/isolation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/isolation_test.rb -------------------------------------------------------------------------------- /activesupport/test/json/decoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/json/decoding_test.rb -------------------------------------------------------------------------------- /activesupport/test/json/encoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/json/encoding_test.rb -------------------------------------------------------------------------------- /activesupport/test/load_paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/load_paths_test.rb -------------------------------------------------------------------------------- /activesupport/test/log_subscriber_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/log_subscriber_test.rb -------------------------------------------------------------------------------- /activesupport/test/memoizable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/memoizable_test.rb -------------------------------------------------------------------------------- /activesupport/test/notifications_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/notifications_test.rb -------------------------------------------------------------------------------- /activesupport/test/option_merger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/option_merger_test.rb -------------------------------------------------------------------------------- /activesupport/test/ordered_hash_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/ordered_hash_test.rb -------------------------------------------------------------------------------- /activesupport/test/rescuable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/rescuable_test.rb -------------------------------------------------------------------------------- /activesupport/test/safe_buffer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/safe_buffer_test.rb -------------------------------------------------------------------------------- /activesupport/test/test_case_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/test_case_test.rb -------------------------------------------------------------------------------- /activesupport/test/test_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/test_test.rb -------------------------------------------------------------------------------- /activesupport/test/time_zone_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/time_zone_test.rb -------------------------------------------------------------------------------- /activesupport/test/transliterate_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/transliterate_test.rb -------------------------------------------------------------------------------- /activesupport/test/ts_isolated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/ts_isolated.rb -------------------------------------------------------------------------------- /activesupport/test/whiny_nil_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/whiny_nil_test.rb -------------------------------------------------------------------------------- /activesupport/test/xml_mini_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/activesupport/test/xml_mini_test.rb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/bin/rails -------------------------------------------------------------------------------- /ci/travis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/ci/travis.rb -------------------------------------------------------------------------------- /install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/install.rb -------------------------------------------------------------------------------- /load_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/load_paths.rb -------------------------------------------------------------------------------- /rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/rails.gemspec -------------------------------------------------------------------------------- /railties/.gitignore: -------------------------------------------------------------------------------- 1 | log/ 2 | -------------------------------------------------------------------------------- /railties/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/CHANGELOG -------------------------------------------------------------------------------- /railties/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/MIT-LICENSE -------------------------------------------------------------------------------- /railties/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/README.rdoc -------------------------------------------------------------------------------- /railties/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/Rakefile -------------------------------------------------------------------------------- /railties/bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require "rails/cli" -------------------------------------------------------------------------------- /railties/guides/assets/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/bullet.gif -------------------------------------------------------------------------------- /railties/guides/assets/images/csrf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/csrf.png -------------------------------------------------------------------------------- /railties/guides/assets/images/fxn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/fxn.png -------------------------------------------------------------------------------- /railties/guides/assets/images/habtm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/habtm.png -------------------------------------------------------------------------------- /railties/guides/assets/images/has_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/has_one.png -------------------------------------------------------------------------------- /railties/guides/assets/images/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/radar.png -------------------------------------------------------------------------------- /railties/guides/assets/images/tab_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/assets/images/tab_red.gif -------------------------------------------------------------------------------- /railties/guides/rails_guides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/rails_guides.rb -------------------------------------------------------------------------------- /railties/guides/rails_guides/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/rails_guides/generator.rb -------------------------------------------------------------------------------- /railties/guides/rails_guides/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/rails_guides/helpers.rb -------------------------------------------------------------------------------- /railties/guides/rails_guides/indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/rails_guides/indexer.rb -------------------------------------------------------------------------------- /railties/guides/source/contribute.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/contribute.textile -------------------------------------------------------------------------------- /railties/guides/source/credits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/credits.html.erb -------------------------------------------------------------------------------- /railties/guides/source/generators.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/generators.textile -------------------------------------------------------------------------------- /railties/guides/source/i18n.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/i18n.textile -------------------------------------------------------------------------------- /railties/guides/source/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/index.html.erb -------------------------------------------------------------------------------- /railties/guides/source/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/layout.html.erb -------------------------------------------------------------------------------- /railties/guides/source/migrations.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/migrations.textile -------------------------------------------------------------------------------- /railties/guides/source/plugins.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/plugins.textile -------------------------------------------------------------------------------- /railties/guides/source/routing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/routing.textile -------------------------------------------------------------------------------- /railties/guides/source/security.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/security.textile -------------------------------------------------------------------------------- /railties/guides/source/testing.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/source/testing.textile -------------------------------------------------------------------------------- /railties/guides/w3c_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/guides/w3c_validator.rb -------------------------------------------------------------------------------- /railties/lib/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails.rb -------------------------------------------------------------------------------- /railties/lib/rails/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/all.rb -------------------------------------------------------------------------------- /railties/lib/rails/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/application.rb -------------------------------------------------------------------------------- /railties/lib/rails/backtrace_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/backtrace_cleaner.rb -------------------------------------------------------------------------------- /railties/lib/rails/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/cli.rb -------------------------------------------------------------------------------- /railties/lib/rails/code_statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/code_statistics.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/console.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/dbconsole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/dbconsole.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/destroy.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/generate.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/plugin.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/plugin_new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/plugin_new.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/profiler.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/runner.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/server.rb -------------------------------------------------------------------------------- /railties/lib/rails/commands/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/commands/update.rb -------------------------------------------------------------------------------- /railties/lib/rails/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/configuration.rb -------------------------------------------------------------------------------- /railties/lib/rails/console/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/console/app.rb -------------------------------------------------------------------------------- /railties/lib/rails/console/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/console/helpers.rb -------------------------------------------------------------------------------- /railties/lib/rails/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/engine.rb -------------------------------------------------------------------------------- /railties/lib/rails/engine/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/engine/commands.rb -------------------------------------------------------------------------------- /railties/lib/rails/engine/railties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/engine/railties.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/generators.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/generators/actions.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/app_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/generators/app_base.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/generators/base.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/erb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/generators/erb.rb -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/app/mailers/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/app/models/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/public/stylesheets/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/test/fixtures/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/test/functional/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/test/integration/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/app/templates/test/unit/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/generator/templates/templates/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railties/lib/rails/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/info.rb -------------------------------------------------------------------------------- /railties/lib/rails/info_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/info_controller.rb -------------------------------------------------------------------------------- /railties/lib/rails/initializable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/initializable.rb -------------------------------------------------------------------------------- /railties/lib/rails/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/paths.rb -------------------------------------------------------------------------------- /railties/lib/rails/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/plugin.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rack.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack/content_length.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rack/content_length.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack/debugger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rack/debugger.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack/log_tailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rack/log_tailer.rb -------------------------------------------------------------------------------- /railties/lib/rails/rack/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rack/logger.rb -------------------------------------------------------------------------------- /railties/lib/rails/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/railtie.rb -------------------------------------------------------------------------------- /railties/lib/rails/ruby_version_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/ruby_version_check.rb -------------------------------------------------------------------------------- /railties/lib/rails/rubyprof_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/rubyprof_ext.rb -------------------------------------------------------------------------------- /railties/lib/rails/script_rails_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/script_rails_loader.rb -------------------------------------------------------------------------------- /railties/lib/rails/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks.rb -------------------------------------------------------------------------------- /railties/lib/rails/tasks/annotations.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/annotations.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/engine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/engine.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/framework.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/framework.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/log.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/log.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/middleware.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/middleware.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/misc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/misc.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/routes.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/routes.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/statistics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/statistics.rake -------------------------------------------------------------------------------- /railties/lib/rails/tasks/tmp.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/tasks/tmp.rake -------------------------------------------------------------------------------- /railties/lib/rails/test_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/test_help.rb -------------------------------------------------------------------------------- /railties/lib/rails/test_unit/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/test_unit/railtie.rb -------------------------------------------------------------------------------- /railties/lib/rails/test_unit/testing.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/test_unit/testing.rake -------------------------------------------------------------------------------- /railties/lib/rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/lib/rails/version.rb -------------------------------------------------------------------------------- /railties/railties.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/railties.gemspec -------------------------------------------------------------------------------- /railties/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/abstract_unit.rb -------------------------------------------------------------------------------- /railties/test/application/assets_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/assets_test.rb -------------------------------------------------------------------------------- /railties/test/application/console_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/console_test.rb -------------------------------------------------------------------------------- /railties/test/application/loading_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/loading_test.rb -------------------------------------------------------------------------------- /railties/test/application/paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/paths_test.rb -------------------------------------------------------------------------------- /railties/test/application/rackup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/rackup_test.rb -------------------------------------------------------------------------------- /railties/test/application/rake_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/rake_test.rb -------------------------------------------------------------------------------- /railties/test/application/routing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/routing_test.rb -------------------------------------------------------------------------------- /railties/test/application/runner_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/runner_test.rb -------------------------------------------------------------------------------- /railties/test/application/test_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/application/test_test.rb -------------------------------------------------------------------------------- /railties/test/backtrace_cleaner_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/backtrace_cleaner_test.rb -------------------------------------------------------------------------------- /railties/test/fixtures/about_yml_plugins/bad_about_yml/init.rb: -------------------------------------------------------------------------------- 1 | # intentionally empty -------------------------------------------------------------------------------- /railties/test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb: -------------------------------------------------------------------------------- 1 | # intentionally empty -------------------------------------------------------------------------------- /railties/test/fixtures/lib/app_builders/empty_builder.rb: -------------------------------------------------------------------------------- 1 | class AppBuilder 2 | end -------------------------------------------------------------------------------- /railties/test/fixtures/lib/generators/model_generator.rb: -------------------------------------------------------------------------------- 1 | raise "I should never be loaded" -------------------------------------------------------------------------------- /railties/test/fixtures/lib/plugin_builders/empty_builder.rb: -------------------------------------------------------------------------------- 1 | class PluginBuilder 2 | end 3 | -------------------------------------------------------------------------------- /railties/test/fixtures/lib/template.rb: -------------------------------------------------------------------------------- 1 | say "It works from file!" 2 | -------------------------------------------------------------------------------- /railties/test/generators/actions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/generators/actions_test.rb -------------------------------------------------------------------------------- /railties/test/generators_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/generators_test.rb -------------------------------------------------------------------------------- /railties/test/initializable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/initializable_test.rb -------------------------------------------------------------------------------- /railties/test/isolation/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/isolation/abstract_unit.rb -------------------------------------------------------------------------------- /railties/test/paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/paths_test.rb -------------------------------------------------------------------------------- /railties/test/rails_info_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/rails_info_test.rb -------------------------------------------------------------------------------- /railties/test/railties/engine_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/railties/engine_test.rb -------------------------------------------------------------------------------- /railties/test/railties/generators_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/railties/generators_test.rb -------------------------------------------------------------------------------- /railties/test/railties/plugin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/railties/plugin_test.rb -------------------------------------------------------------------------------- /railties/test/railties/railtie_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/railties/railtie_test.rb -------------------------------------------------------------------------------- /railties/test/railties/shared_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/railties/shared_tests.rb -------------------------------------------------------------------------------- /railties/test/script_rails_loader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/railties/test/script_rails_loader_test.rb -------------------------------------------------------------------------------- /tasks/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/tasks/release.rb -------------------------------------------------------------------------------- /tools/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/tools/console -------------------------------------------------------------------------------- /tools/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/tools/profile -------------------------------------------------------------------------------- /version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/god/rails/HEAD/version.rb --------------------------------------------------------------------------------