ibm_db 3.0.5-x86-mingw32 → 5.0.5-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/CHANGES +4 -0
 - data/LICENSE +1 -1
 - data/ParameterizedQueries README +6 -6
 - data/README +38 -55
 - data/ext/Makefile +269 -0
 - data/ext/extconf.rb +34 -3
 - data/ext/gil_release_version +3 -0
 - data/ext/ibm_db-i386-mingw32.def +2 -0
 - data/ext/ibm_db.c +100 -108
 - data/ext/ibm_db.o +0 -0
 - data/ext/ibm_db.so +0 -0
 - data/ext/mkmf.log +110 -0
 - data/ext/ruby_ibm_db_cli.o +0 -0
 - data/ext/unicode_support_version +3 -0
 - data/lib/active_record/connection_adapters/ibm_db_adapter.rb +923 -527
 - data/lib/active_record/connection_adapters/ibmdb_adapter.rb +4 -1
 - data/lib/mswin32/ibm_db.rb +7 -39
 - data/lib/mswin32/rb2x/i386/ibm_db.so +0 -0
 - data/test/active_record/connection_adapters/fake_adapter.rb +8 -5
 - data/test/cases/adapter_test.rb +133 -58
 - data/test/cases/adapters/mysql2/active_schema_test.rb +193 -0
 - data/test/cases/adapters/mysql2/bind_parameter_test.rb +50 -0
 - data/test/cases/adapters/mysql2/boolean_test.rb +100 -0
 - data/test/cases/adapters/mysql2/case_sensitivity_test.rb +63 -0
 - data/test/cases/adapters/mysql2/charset_collation_test.rb +54 -0
 - data/test/cases/adapters/mysql2/connection_test.rb +210 -0
 - data/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +45 -0
 - data/test/cases/adapters/mysql2/enum_test.rb +26 -0
 - data/test/cases/adapters/mysql2/explain_test.rb +21 -0
 - data/test/cases/adapters/mysql2/json_test.rb +195 -0
 - data/test/cases/adapters/mysql2/mysql2_adapter_test.rb +83 -0
 - data/test/cases/adapters/mysql2/reserved_word_test.rb +152 -0
 - data/test/cases/adapters/mysql2/schema_migrations_test.rb +59 -0
 - data/test/cases/adapters/mysql2/schema_test.rb +126 -0
 - data/test/cases/adapters/mysql2/sp_test.rb +36 -0
 - data/test/cases/adapters/mysql2/sql_types_test.rb +14 -0
 - data/test/cases/adapters/mysql2/table_options_test.rb +42 -0
 - data/test/cases/adapters/mysql2/unsigned_type_test.rb +66 -0
 - data/test/cases/adapters/postgresql/active_schema_test.rb +98 -0
 - data/test/cases/adapters/postgresql/array_test.rb +339 -0
 - data/test/cases/adapters/postgresql/bit_string_test.rb +82 -0
 - data/test/cases/adapters/postgresql/bytea_test.rb +134 -0
 - data/test/cases/adapters/postgresql/case_insensitive_test.rb +26 -0
 - data/test/cases/adapters/postgresql/change_schema_test.rb +38 -0
 - data/test/cases/adapters/postgresql/cidr_test.rb +25 -0
 - data/test/cases/adapters/postgresql/citext_test.rb +78 -0
 - data/test/cases/adapters/postgresql/collation_test.rb +53 -0
 - data/test/cases/adapters/postgresql/composite_test.rb +132 -0
 - data/test/cases/adapters/postgresql/connection_test.rb +257 -0
 - data/test/cases/adapters/postgresql/datatype_test.rb +92 -0
 - data/test/cases/adapters/postgresql/domain_test.rb +47 -0
 - data/test/cases/adapters/postgresql/enum_test.rb +91 -0
 - data/test/cases/adapters/postgresql/explain_test.rb +20 -0
 - data/test/cases/adapters/postgresql/extension_migration_test.rb +63 -0
 - data/test/cases/adapters/postgresql/full_text_test.rb +44 -0
 - data/test/cases/adapters/postgresql/geometric_test.rb +378 -0
 - data/test/cases/adapters/postgresql/hstore_test.rb +382 -0
 - data/test/cases/adapters/postgresql/infinity_test.rb +69 -0
 - data/test/cases/adapters/postgresql/integer_test.rb +25 -0
 - data/test/cases/adapters/postgresql/json_test.rb +237 -0
 - data/test/cases/adapters/postgresql/ltree_test.rb +53 -0
 - data/test/cases/adapters/postgresql/money_test.rb +96 -0
 - data/test/cases/adapters/postgresql/network_test.rb +94 -0
 - data/test/cases/adapters/postgresql/numbers_test.rb +49 -0
 - data/test/cases/adapters/postgresql/postgresql_adapter_test.rb +405 -0
 - data/test/cases/adapters/postgresql/prepared_statements_test.rb +22 -0
 - data/test/cases/adapters/postgresql/quoting_test.rb +44 -0
 - data/test/cases/adapters/postgresql/range_test.rb +343 -0
 - data/test/cases/adapters/postgresql/referential_integrity_test.rb +111 -0
 - data/test/cases/adapters/postgresql/rename_table_test.rb +34 -0
 - data/test/cases/adapters/postgresql/schema_authorization_test.rb +119 -0
 - data/test/cases/adapters/postgresql/schema_test.rb +597 -0
 - data/test/cases/adapters/postgresql/serial_test.rb +154 -0
 - data/test/cases/adapters/postgresql/statement_pool_test.rb +41 -0
 - data/test/cases/adapters/postgresql/timestamp_test.rb +90 -0
 - data/test/cases/adapters/postgresql/type_lookup_test.rb +33 -0
 - data/test/cases/adapters/postgresql/utils_test.rb +62 -0
 - data/test/cases/adapters/postgresql/uuid_test.rb +294 -0
 - data/test/cases/adapters/postgresql/xml_test.rb +54 -0
 - data/test/cases/adapters/sqlite3/collation_test.rb +53 -0
 - data/test/cases/adapters/sqlite3/copy_table_test.rb +98 -0
 - data/test/cases/adapters/sqlite3/explain_test.rb +21 -0
 - data/test/cases/adapters/sqlite3/quoting_test.rb +101 -0
 - data/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +441 -0
 - data/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +24 -0
 - data/test/cases/adapters/sqlite3/statement_pool_test.rb +20 -0
 - data/test/cases/aggregations_test.rb +11 -1
 - data/test/cases/ar_schema_test.rb +35 -50
 - data/test/cases/associations/association_scope_test.rb +1 -6
 - data/test/cases/associations/belongs_to_associations_test.rb +122 -10
 - data/test/cases/associations/bidirectional_destroy_dependencies_test.rb +41 -0
 - data/test/cases/associations/callbacks_test.rb +5 -7
 - data/test/cases/associations/cascaded_eager_loading_test.rb +1 -1
 - data/test/cases/associations/eager_load_nested_include_test.rb +1 -3
 - data/test/cases/associations/eager_test.rb +158 -73
 - data/test/cases/associations/extension_test.rb +7 -2
 - data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +64 -32
 - data/test/cases/associations/has_many_associations_test.rb +362 -43
 - data/test/cases/associations/has_many_through_associations_test.rb +108 -41
 - data/test/cases/associations/has_one_associations_test.rb +105 -8
 - data/test/cases/associations/has_one_through_associations_test.rb +6 -3
 - data/test/cases/associations/inner_join_association_test.rb +3 -3
 - data/test/cases/associations/inverse_associations_test.rb +38 -11
 - data/test/cases/associations/join_model_test.rb +59 -36
 - data/test/cases/associations/left_outer_join_association_test.rb +88 -0
 - data/test/cases/associations/nested_through_associations_test.rb +2 -2
 - data/test/cases/associations/required_test.rb +25 -5
 - data/test/cases/associations_test.rb +39 -34
 - data/test/cases/attribute_decorators_test.rb +9 -8
 - data/test/cases/attribute_methods/read_test.rb +5 -5
 - data/test/cases/attribute_methods_test.rb +97 -40
 - data/test/cases/attribute_set_test.rb +64 -4
 - data/test/cases/attribute_test.rb +84 -18
 - data/test/cases/attributes_test.rb +151 -34
 - data/test/cases/autosave_association_test.rb +149 -36
 - data/test/cases/base_test.rb +290 -241
 - data/test/cases/batches_test.rb +299 -22
 - data/test/cases/binary_test.rb +2 -10
 - data/test/cases/bind_parameter_test.rb +76 -66
 - data/test/cases/cache_key_test.rb +26 -0
 - data/test/cases/calculations_test.rb +167 -15
 - data/test/cases/callbacks_test.rb +161 -68
 - data/test/cases/coders/json_test.rb +15 -0
 - data/test/cases/collection_cache_key_test.rb +115 -0
 - data/test/cases/column_definition_test.rb +26 -57
 - data/test/cases/comment_test.rb +145 -0
 - data/test/cases/connection_adapters/adapter_leasing_test.rb +5 -3
 - data/test/cases/connection_adapters/connection_handler_test.rb +128 -21
 - data/test/cases/connection_adapters/connection_specification_test.rb +1 -1
 - data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +0 -38
 - data/test/cases/connection_adapters/mysql_type_lookup_test.rb +5 -1
 - data/test/cases/connection_adapters/schema_cache_test.rb +8 -3
 - data/test/cases/connection_adapters/type_lookup_test.rb +15 -7
 - data/test/cases/connection_management_test.rb +46 -56
 - data/test/cases/connection_pool_test.rb +195 -20
 - data/test/cases/connection_specification/resolver_test.rb +15 -0
 - data/test/cases/counter_cache_test.rb +10 -5
 - data/test/cases/custom_locking_test.rb +1 -1
 - data/test/cases/database_statements_test.rb +18 -3
 - data/test/cases/{invalid_date_test.rb → date_test.rb} +13 -1
 - data/test/cases/date_time_precision_test.rb +107 -0
 - data/test/cases/defaults_test.rb +85 -89
 - data/test/cases/dirty_test.rb +30 -52
 - data/test/cases/disconnected_test.rb +4 -2
 - data/test/cases/enum_test.rb +178 -24
 - data/test/cases/errors_test.rb +16 -0
 - data/test/cases/explain_test.rb +32 -21
 - data/test/cases/finder_test.rb +273 -148
 - data/test/cases/fixture_set/file_test.rb +18 -0
 - data/test/cases/fixtures_test.rb +112 -32
 - data/test/cases/forbidden_attributes_protection_test.rb +69 -3
 - data/test/cases/helper.rb +10 -16
 - data/test/cases/hot_compatibility_test.rb +89 -1
 - data/test/cases/inheritance_test.rb +284 -53
 - data/test/cases/integration_test.rb +23 -7
 - data/test/cases/invalid_connection_test.rb +4 -2
 - data/test/cases/invertible_migration_test.rb +124 -32
 - data/test/cases/json_serialization_test.rb +11 -2
 - data/test/cases/locking_test.rb +22 -6
 - data/test/cases/log_subscriber_test.rb +106 -17
 - data/test/cases/migration/change_schema_test.rb +60 -114
 - data/test/cases/migration/change_table_test.rb +34 -2
 - data/test/cases/migration/column_attributes_test.rb +7 -23
 - data/test/cases/migration/column_positioning_test.rb +8 -8
 - data/test/cases/migration/columns_test.rb +17 -11
 - data/test/cases/migration/command_recorder_test.rb +47 -2
 - data/test/cases/migration/compatibility_test.rb +118 -0
 - data/test/cases/migration/create_join_table_test.rb +21 -12
 - data/test/cases/migration/foreign_key_test.rb +52 -18
 - data/test/cases/migration/index_test.rb +14 -12
 - data/test/cases/migration/logger_test.rb +1 -1
 - data/test/cases/migration/pending_migrations_test.rb +0 -1
 - data/test/cases/migration/references_foreign_key_test.rb +59 -7
 - data/test/cases/migration/references_index_test.rb +4 -4
 - data/test/cases/migration/references_statements_test.rb +26 -6
 - data/test/cases/migration/rename_table_test.rb +25 -25
 - data/test/cases/migration_test.rb +279 -81
 - data/test/cases/migrator_test.rb +91 -8
 - data/test/cases/mixin_test.rb +0 -2
 - data/test/cases/modules_test.rb +3 -4
 - data/test/cases/multiparameter_attributes_test.rb +24 -2
 - data/test/cases/multiple_db_test.rb +11 -4
 - data/test/cases/nested_attributes_test.rb +61 -33
 - data/test/cases/persistence_test.rb +102 -10
 - data/test/cases/pooled_connections_test.rb +3 -3
 - data/test/cases/primary_keys_test.rb +170 -31
 - data/test/cases/query_cache_test.rb +216 -96
 - data/test/cases/quoting_test.rb +65 -19
 - data/test/cases/readonly_test.rb +2 -1
 - data/test/cases/reflection_test.rb +68 -22
 - data/test/cases/relation/delegation_test.rb +3 -8
 - data/test/cases/relation/merging_test.rb +10 -14
 - data/test/cases/relation/mutation_test.rb +42 -24
 - data/test/cases/relation/or_test.rb +92 -0
 - data/test/cases/relation/predicate_builder_test.rb +4 -2
 - data/test/cases/relation/record_fetch_warning_test.rb +40 -0
 - data/test/cases/relation/where_chain_test.rb +23 -99
 - data/test/cases/relation/where_clause_test.rb +182 -0
 - data/test/cases/relation/where_test.rb +45 -23
 - data/test/cases/relation_test.rb +67 -58
 - data/test/cases/relations_test.rb +249 -38
 - data/test/cases/result_test.rb +10 -0
 - data/test/cases/sanitize_test.rb +108 -15
 - data/test/cases/schema_dumper_test.rb +119 -125
 - data/test/cases/schema_loading_test.rb +52 -0
 - data/test/cases/scoping/default_scoping_test.rb +113 -39
 - data/test/cases/scoping/named_scoping_test.rb +46 -9
 - data/test/cases/scoping/relation_scoping_test.rb +47 -4
 - data/test/cases/secure_token_test.rb +32 -0
 - data/test/cases/serialization_test.rb +1 -1
 - data/test/cases/serialized_attribute_test.rb +93 -6
 - data/test/cases/statement_cache_test.rb +38 -0
 - data/test/cases/store_test.rb +2 -1
 - data/test/cases/suppressor_test.rb +63 -0
 - data/test/cases/tasks/database_tasks_test.rb +73 -9
 - data/test/cases/tasks/mysql_rake_test.rb +139 -118
 - data/test/cases/tasks/postgresql_rake_test.rb +60 -6
 - data/test/cases/tasks/sqlite_rake_test.rb +30 -3
 - data/test/cases/test_case.rb +28 -20
 - data/test/cases/test_fixtures_test.rb +36 -0
 - data/test/cases/time_precision_test.rb +103 -0
 - data/test/cases/timestamp_test.rb +44 -10
 - data/test/cases/touch_later_test.rb +121 -0
 - data/test/cases/transaction_callbacks_test.rb +128 -62
 - data/test/cases/transaction_isolation_test.rb +2 -2
 - data/test/cases/transactions_test.rb +61 -43
 - data/test/cases/type/adapter_specific_registry_test.rb +133 -0
 - data/test/cases/type/date_time_test.rb +14 -0
 - data/test/cases/type/integer_test.rb +2 -96
 - data/test/cases/type/string_test.rb +0 -14
 - data/test/cases/type_test.rb +39 -0
 - data/test/cases/types_test.rb +1 -118
 - data/test/cases/unconnected_test.rb +1 -1
 - data/test/cases/validations/absence_validation_test.rb +73 -0
 - data/test/cases/validations/association_validation_test.rb +13 -2
 - data/test/cases/validations/i18n_validation_test.rb +6 -10
 - data/test/cases/validations/length_validation_test.rb +62 -30
 - data/test/cases/validations/presence_validation_test.rb +36 -1
 - data/test/cases/validations/uniqueness_validation_test.rb +128 -37
 - data/test/cases/validations_repair_helper.rb +2 -6
 - data/test/cases/validations_test.rb +36 -7
 - data/test/cases/view_test.rb +102 -5
 - data/test/cases/yaml_serialization_test.rb +21 -26
 - data/test/config.example.yml +97 -0
 - data/test/fixtures/bad_posts.yml +9 -0
 - data/test/fixtures/books.yml +20 -0
 - data/test/fixtures/content.yml +3 -0
 - data/test/fixtures/content_positions.yml +3 -0
 - data/test/fixtures/dead_parrots.yml +5 -0
 - data/test/fixtures/live_parrots.yml +4 -0
 - data/test/fixtures/naked/yml/parrots.yml +2 -0
 - data/test/fixtures/naked/yml/trees.yml +3 -0
 - data/test/fixtures/nodes.yml +29 -0
 - data/test/fixtures/other_comments.yml +6 -0
 - data/test/fixtures/other_dogs.yml +2 -0
 - data/test/fixtures/other_posts.yml +7 -0
 - data/test/fixtures/price_estimates.yml +10 -1
 - data/test/fixtures/trees.yml +3 -0
 - data/test/migrations/10_urban/9_add_expressions.rb +1 -1
 - data/test/migrations/decimal/1_give_me_big_numbers.rb +1 -1
 - data/test/migrations/magic/1_currencies_have_symbols.rb +1 -1
 - data/test/migrations/missing/1000_people_have_middle_names.rb +2 -2
 - data/test/migrations/missing/1_people_have_last_names.rb +2 -2
 - data/test/migrations/missing/3_we_need_reminders.rb +2 -2
 - data/test/migrations/missing/4_innocent_jointable.rb +2 -2
 - data/test/migrations/rename/1_we_need_things.rb +2 -2
 - data/test/migrations/rename/2_rename_things.rb +2 -2
 - data/test/migrations/to_copy/1_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy/2_people_have_descriptions.rb +1 -1
 - data/test/migrations/to_copy2/1_create_articles.rb +1 -1
 - data/test/migrations/to_copy2/2_create_comments.rb +1 -1
 - data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +1 -1
 - data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +1 -1
 - data/test/migrations/valid/1_valid_people_have_last_names.rb +1 -1
 - data/test/migrations/valid/2_we_need_reminders.rb +2 -2
 - data/test/migrations/valid/3_innocent_jointable.rb +2 -2
 - data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +1 -1
 - data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +2 -2
 - data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +2 -2
 - data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +1 -1
 - data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +1 -1
 - data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +1 -1
 - data/test/migrations/version_check/20131219224947_migration_version_check.rb +1 -1
 - data/test/models/admin/randomly_named_c1.rb +6 -2
 - data/test/models/aircraft.rb +1 -0
 - data/test/models/author.rb +4 -7
 - data/test/models/bird.rb +1 -1
 - data/test/models/book.rb +5 -0
 - data/test/models/bulb.rb +2 -1
 - data/test/models/car.rb +3 -0
 - data/test/models/cat.rb +10 -0
 - data/test/models/chef.rb +1 -0
 - data/test/models/club.rb +2 -0
 - data/test/models/comment.rb +17 -5
 - data/test/models/company.rb +4 -2
 - data/test/models/company_in_module.rb +1 -1
 - data/test/models/contact.rb +1 -1
 - data/test/models/content.rb +40 -0
 - data/test/models/customer.rb +8 -2
 - data/test/models/developer.rb +19 -0
 - data/test/models/face.rb +1 -1
 - data/test/models/guitar.rb +4 -0
 - data/test/models/hotel.rb +2 -0
 - data/test/models/member.rb +1 -0
 - data/test/models/member_detail.rb +4 -3
 - data/test/models/mentor.rb +3 -0
 - data/test/models/mocktail_designer.rb +2 -0
 - data/test/models/node.rb +5 -0
 - data/test/models/non_primary_key.rb +2 -0
 - data/test/models/notification.rb +3 -0
 - data/test/models/other_dog.rb +5 -0
 - data/test/models/owner.rb +4 -1
 - data/test/models/parrot.rb +6 -7
 - data/test/models/person.rb +0 -1
 - data/test/models/pet.rb +3 -0
 - data/test/models/pet_treasure.rb +6 -0
 - data/test/models/pirate.rb +3 -3
 - data/test/models/post.rb +18 -9
 - data/test/models/project.rb +9 -0
 - data/test/models/randomly_named_c1.rb +1 -1
 - data/test/models/recipe.rb +3 -0
 - data/test/models/ship.rb +8 -2
 - data/test/models/tag.rb +6 -0
 - data/test/models/topic.rb +2 -8
 - data/test/models/tree.rb +3 -0
 - data/test/models/tuning_peg.rb +4 -0
 - data/test/models/user.rb +14 -0
 - data/test/models/uuid_item.rb +6 -0
 - data/test/schema/mysql2_specific_schema.rb +33 -23
 - data/test/schema/oracle_specific_schema.rb +1 -4
 - data/test/schema/postgresql_specific_schema.rb +36 -124
 - data/test/schema/schema.rb +170 -65
 - data/test/schema/schema.rb.original +1057 -0
 - data/test/schema/sqlite_specific_schema.rb +1 -5
 - data/test/support/connection.rb +1 -0
 - data/test/support/schema_dumping_helper.rb +1 -1
 - data/test/support/yaml_compatibility_fixtures/rails_4_1.yml +22 -0
 - data/test/support/yaml_compatibility_fixtures/rails_4_2_0.yml +182 -0
 - metadata +146 -30
 - data/lib/mswin32/rb19x/ibm_db.so +0 -0
 - data/lib/mswin32/rb21x/i386/ibm_db.so +0 -0
 - data/lib/mswin32/rb22x/i386/ibm_db.so +0 -0
 - data/lib/mswin32/rb23x/i386/ibm_db.so +0 -0
 - data/test/cases/associations/deprecated_counter_cache_on_has_many_through_test.rb +0 -26
 - data/test/cases/attribute_methods/serialization_test.rb +0 -29
 - data/test/cases/migration/change_schema_test - Copy.rb +0 -448
 - data/test/cases/migration/foreign_key_test - Changed.rb +0 -325
 - data/test/cases/migration/table_and_index_test.rb +0 -24
 - data/test/cases/relation/where_test2.rb +0 -36
 - data/test/cases/type/decimal_test.rb +0 -56
 - data/test/cases/type/unsigned_integer_test.rb +0 -18
 - data/test/cases/xml_serialization_test.rb +0 -457
 - data/test/fixtures/naked/csv/accounts.csv +0 -1
 - data/test/schema/mysql_specific_schema.rb +0 -70
 
    
        data/test/models/cat.rb
    ADDED
    
    
    
        data/test/models/chef.rb
    CHANGED
    
    
    
        data/test/models/club.rb
    CHANGED
    
    | 
         @@ -8,6 +8,8 @@ class Club < ActiveRecord::Base 
     | 
|
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
              has_many :favourites, -> { where(memberships: { favourite: true }) }, through: :memberships, source: :member
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
      
 11 
     | 
    
         
            +
              scope :general, -> { left_joins(:category).where(categories: { name: "General" }) }
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
       11 
13 
     | 
    
         
             
              private
         
     | 
| 
       12 
14 
     | 
    
         | 
| 
       13 
15 
     | 
    
         
             
              def private_method
         
     | 
    
        data/test/models/comment.rb
    CHANGED
    
    | 
         @@ -14,10 +14,26 @@ class Comment < ActiveRecord::Base 
     | 
|
| 
       14 
14 
     | 
    
         
             
              has_many :ratings
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         
             
              belongs_to :first_post, :foreign_key => :post_id
         
     | 
| 
      
 17 
     | 
    
         
            +
              belongs_to :special_post_with_default_scope, foreign_key: :post_id
         
     | 
| 
       17 
18 
     | 
    
         | 
| 
       18 
19 
     | 
    
         
             
              has_many :children, :class_name => 'Comment', :foreign_key => :parent_id
         
     | 
| 
       19 
20 
     | 
    
         
             
              belongs_to :parent, :class_name => 'Comment', :counter_cache => :children_count
         
     | 
| 
       20 
21 
     | 
    
         | 
| 
      
 22 
     | 
    
         
            +
              class ::OopsError < RuntimeError; end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              module OopsExtension
         
     | 
| 
      
 25 
     | 
    
         
            +
                def destroy_all(*)
         
     | 
| 
      
 26 
     | 
    
         
            +
                  raise OopsError
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
              end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
              default_scope { extending OopsExtension }
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
              # Should not be called if extending modules that having the method exists on an association.
         
     | 
| 
      
 33 
     | 
    
         
            +
              def self.greeting
         
     | 
| 
      
 34 
     | 
    
         
            +
                raise
         
     | 
| 
      
 35 
     | 
    
         
            +
              end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
       21 
37 
     | 
    
         
             
              def self.what_are_you
         
     | 
| 
       22 
38 
     | 
    
         
             
                'a comment...'
         
     | 
| 
       23 
39 
     | 
    
         
             
              end
         
     | 
| 
         @@ -37,6 +53,7 @@ class Comment < ActiveRecord::Base 
     | 
|
| 
       37 
53 
     | 
    
         
             
            end
         
     | 
| 
       38 
54 
     | 
    
         | 
| 
       39 
55 
     | 
    
         
             
            class SpecialComment < Comment
         
     | 
| 
      
 56 
     | 
    
         
            +
              default_scope { where(deleted_at: nil) }
         
     | 
| 
       40 
57 
     | 
    
         
             
            end
         
     | 
| 
       41 
58 
     | 
    
         | 
| 
       42 
59 
     | 
    
         
             
            class SubSpecialComment < SpecialComment
         
     | 
| 
         @@ -57,8 +74,3 @@ class CommentWithDefaultScopeReferencesAssociation < Comment 
     | 
|
| 
       57 
74 
     | 
    
         
             
              default_scope ->{ includes(:developer).order('developers.name').references(:developer) }
         
     | 
| 
       58 
75 
     | 
    
         
             
              belongs_to :developer
         
     | 
| 
       59 
76 
     | 
    
         
             
            end
         
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
            class CommentWithConflictingDefaultScope < Comment
         
     | 
| 
       62 
     | 
    
         
            -
              default_scope ->{ where(author_id: 42) }
         
     | 
| 
       63 
     | 
    
         
            -
              belongs_to :post_with_conflicting_default_scope, foreign_key: :post_id
         
     | 
| 
       64 
     | 
    
         
            -
            end
         
     | 
    
        data/test/models/company.rb
    CHANGED
    
    | 
         @@ -10,7 +10,6 @@ class Company < AbstractCompany 
     | 
|
| 
       10 
10 
     | 
    
         
             
              has_one :dummy_account, :foreign_key => "firm_id", :class_name => "Account"
         
     | 
| 
       11 
11 
     | 
    
         
             
              has_many :contracts
         
     | 
| 
       12 
12 
     | 
    
         
             
              has_many :developers, :through => :contracts
         
     | 
| 
       13 
     | 
    
         
            -
              has_many :accounts
         
     | 
| 
       14 
13 
     | 
    
         | 
| 
       15 
14 
     | 
    
         
             
              scope :of_first_firm, lambda {
         
     | 
| 
       16 
15 
     | 
    
         
             
                joins(:account => :firm).
         
     | 
| 
         @@ -26,6 +25,9 @@ class Company < AbstractCompany 
     | 
|
| 
       26 
25 
     | 
    
         
             
              def private_method
         
     | 
| 
       27 
26 
     | 
    
         
             
                "I am Jack's innermost fears and aspirations"
         
     | 
| 
       28 
27 
     | 
    
         
             
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
              class SpecialCo < Company
         
     | 
| 
      
 30 
     | 
    
         
            +
              end
         
     | 
| 
       29 
31 
     | 
    
         
             
            end
         
     | 
| 
       30 
32 
     | 
    
         | 
| 
       31 
33 
     | 
    
         
             
            module Namespaced
         
     | 
| 
         @@ -217,7 +219,7 @@ class Account < ActiveRecord::Base 
     | 
|
| 
       217 
219 
     | 
    
         
             
              protected
         
     | 
| 
       218 
220 
     | 
    
         | 
| 
       219 
221 
     | 
    
         
             
              def check_empty_credit_limit
         
     | 
| 
       220 
     | 
    
         
            -
                errors. 
     | 
| 
      
 222 
     | 
    
         
            +
                errors.add("credit_limit", :blank) if credit_limit.blank?
         
     | 
| 
       221 
223 
     | 
    
         
             
              end
         
     | 
| 
       222 
224 
     | 
    
         | 
| 
       223 
225 
     | 
    
         
             
              private
         
     | 
    
        data/test/models/contact.rb
    CHANGED
    
    
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Content < ActiveRecord::Base
         
     | 
| 
      
 2 
     | 
    
         
            +
              self.table_name = 'content'
         
     | 
| 
      
 3 
     | 
    
         
            +
              has_one :content_position, dependent: :destroy
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
              def self.destroyed_ids
         
     | 
| 
      
 6 
     | 
    
         
            +
                @destroyed_ids ||= []
         
     | 
| 
      
 7 
     | 
    
         
            +
              end
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
              before_destroy do |object|
         
     | 
| 
      
 10 
     | 
    
         
            +
                Content.destroyed_ids << object.id
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
            end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            class ContentWhichRequiresTwoDestroyCalls < ActiveRecord::Base
         
     | 
| 
      
 15 
     | 
    
         
            +
              self.table_name = 'content'
         
     | 
| 
      
 16 
     | 
    
         
            +
              has_one :content_position, foreign_key: 'content_id', dependent: :destroy
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
              after_initialize do
         
     | 
| 
      
 19 
     | 
    
         
            +
                @destroy_count = 0
         
     | 
| 
      
 20 
     | 
    
         
            +
              end
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              before_destroy do
         
     | 
| 
      
 23 
     | 
    
         
            +
                @destroy_count += 1
         
     | 
| 
      
 24 
     | 
    
         
            +
                if @destroy_count == 1
         
     | 
| 
      
 25 
     | 
    
         
            +
                  throw :abort
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
      
 28 
     | 
    
         
            +
            end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            class ContentPosition < ActiveRecord::Base
         
     | 
| 
      
 31 
     | 
    
         
            +
              belongs_to :content, dependent: :destroy
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              def self.destroyed_ids
         
     | 
| 
      
 34 
     | 
    
         
            +
                @destroyed_ids ||= []
         
     | 
| 
      
 35 
     | 
    
         
            +
              end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
              before_destroy do |object|
         
     | 
| 
      
 38 
     | 
    
         
            +
                ContentPosition.destroyed_ids << object.id
         
     | 
| 
      
 39 
     | 
    
         
            +
              end
         
     | 
| 
      
 40 
     | 
    
         
            +
            end
         
     | 
    
        data/test/models/customer.rb
    CHANGED
    
    | 
         @@ -2,11 +2,12 @@ class Customer < ActiveRecord::Base 
     | 
|
| 
       2 
2 
     | 
    
         
             
              cattr_accessor :gps_conversion_was_run
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
              composed_of :address, :mapping => [ %w(address_street street), %w(address_city city), %w(address_country country) ], :allow_nil => true
         
     | 
| 
       5 
     | 
    
         
            -
              composed_of :balance, :class_name => "Money", :mapping => %w(balance amount), :converter => Proc.new 
     | 
| 
      
 5 
     | 
    
         
            +
              composed_of :balance, :class_name => "Money", :mapping => %w(balance amount), :converter => Proc.new(&:to_money)
         
     | 
| 
       6 
6 
     | 
    
         
             
              composed_of :gps_location, :allow_nil => true
         
     | 
| 
       7 
7 
     | 
    
         
             
              composed_of :non_blank_gps_location, :class_name => "GpsLocation", :allow_nil => true, :mapping => %w(gps_location gps_location),
         
     | 
| 
       8 
8 
     | 
    
         
             
                          :converter => lambda { |gps| self.gps_conversion_was_run = true; gps.blank? ? nil : GpsLocation.new(gps)}
         
     | 
| 
       9 
9 
     | 
    
         
             
              composed_of :fullname, :mapping => %w(name to_s), :constructor => Proc.new { |name| Fullname.parse(name) }, :converter => :parse
         
     | 
| 
      
 10 
     | 
    
         
            +
              composed_of :fullname_no_converter, :mapping => %w(name to_s), class_name: "Fullname"
         
     | 
| 
       10 
11 
     | 
    
         
             
            end
         
     | 
| 
       11 
12 
     | 
    
         | 
| 
       12 
13 
     | 
    
         
             
            class Address
         
     | 
| 
         @@ -64,7 +65,12 @@ class Fullname 
     | 
|
| 
       64 
65 
     | 
    
         | 
| 
       65 
66 
     | 
    
         
             
              def self.parse(str)
         
     | 
| 
       66 
67 
     | 
    
         
             
                return nil unless str
         
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                if str.is_a?(Hash)
         
     | 
| 
      
 70 
     | 
    
         
            +
                  new(str[:first], str[:last])
         
     | 
| 
      
 71 
     | 
    
         
            +
                else
         
     | 
| 
      
 72 
     | 
    
         
            +
                  new(*str.to_s.split)
         
     | 
| 
      
 73 
     | 
    
         
            +
                end
         
     | 
| 
       68 
74 
     | 
    
         
             
              end
         
     | 
| 
       69 
75 
     | 
    
         | 
| 
       70 
76 
     | 
    
         
             
              def initialize(first, last = nil)
         
     | 
    
        data/test/models/developer.rb
    CHANGED
    
    | 
         @@ -7,12 +7,16 @@ module DeveloperProjectsAssociationExtension2 
     | 
|
| 
       7 
7 
     | 
    
         
             
            end
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
            class Developer < ActiveRecord::Base
         
     | 
| 
      
 10 
     | 
    
         
            +
              self.ignored_columns = %w(first_name last_name)
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
       10 
12 
     | 
    
         
             
              has_and_belongs_to_many :projects do
         
     | 
| 
       11 
13 
     | 
    
         
             
                def find_most_recent
         
     | 
| 
       12 
14 
     | 
    
         
             
                  order("id DESC").first
         
     | 
| 
       13 
15 
     | 
    
         
             
                end
         
     | 
| 
       14 
16 
     | 
    
         
             
              end
         
     | 
| 
       15 
17 
     | 
    
         | 
| 
      
 18 
     | 
    
         
            +
              belongs_to :mentor
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
       16 
20 
     | 
    
         
             
              accepts_nested_attributes_for :projects
         
     | 
| 
       17 
21 
     | 
    
         | 
| 
       18 
22 
     | 
    
         
             
              has_and_belongs_to_many :shared_computers, class_name: "Computer"
         
     | 
| 
         @@ -50,6 +54,7 @@ class Developer < ActiveRecord::Base 
     | 
|
| 
       50 
54 
     | 
    
         
             
              has_many :firms, :through => :contracts, :source => :firm
         
     | 
| 
       51 
55 
     | 
    
         
             
              has_many :comments, ->(developer) { where(body: "I'm #{developer.name}") }
         
     | 
| 
       52 
56 
     | 
    
         
             
              has_many :ratings, through: :comments
         
     | 
| 
      
 57 
     | 
    
         
            +
              has_one :ship, dependent: :nullify
         
     | 
| 
       53 
58 
     | 
    
         | 
| 
       54 
59 
     | 
    
         
             
              belongs_to :firm
         
     | 
| 
       55 
60 
     | 
    
         
             
              has_many :contracted_projects, class_name: "Project"
         
     | 
| 
         @@ -63,6 +68,9 @@ class Developer < ActiveRecord::Base 
     | 
|
| 
       63 
68 
     | 
    
         
             
                developer.audit_logs.build :message => "Computer created"
         
     | 
| 
       64 
69 
     | 
    
         
             
              end
         
     | 
| 
       65 
70 
     | 
    
         | 
| 
      
 71 
     | 
    
         
            +
              attr_accessor :last_name
         
     | 
| 
      
 72 
     | 
    
         
            +
              define_attribute_method 'last_name'
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
       66 
74 
     | 
    
         
             
              def log=(message)
         
     | 
| 
       67 
75 
     | 
    
         
             
                audit_logs.build :message => message
         
     | 
| 
       68 
76 
     | 
    
         
             
              end
         
     | 
| 
         @@ -78,6 +86,17 @@ class Developer < ActiveRecord::Base 
     | 
|
| 
       78 
86 
     | 
    
         | 
| 
       79 
87 
     | 
    
         
             
            end
         
     | 
| 
       80 
88 
     | 
    
         | 
| 
      
 89 
     | 
    
         
            +
            class SubDeveloper < Developer
         
     | 
| 
      
 90 
     | 
    
         
            +
            end
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
            class SymbolIgnoredDeveloper < ActiveRecord::Base
         
     | 
| 
      
 93 
     | 
    
         
            +
              self.table_name = "developers"
         
     | 
| 
      
 94 
     | 
    
         
            +
              self.ignored_columns = [:first_name, :last_name]
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
              attr_accessor :last_name
         
     | 
| 
      
 97 
     | 
    
         
            +
              define_attribute_method "last_name"
         
     | 
| 
      
 98 
     | 
    
         
            +
            end
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
       81 
100 
     | 
    
         
             
            class AuditLog < ActiveRecord::Base
         
     | 
| 
       82 
101 
     | 
    
         
             
              belongs_to :developer, :validate => true
         
     | 
| 
       83 
102 
     | 
    
         
             
              belongs_to :unvalidated_developer, :class_name => 'Developer'
         
     | 
    
        data/test/models/face.rb
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Face < ActiveRecord::Base
         
     | 
| 
       2 
2 
     | 
    
         
             
              belongs_to :man, :inverse_of => :face
         
     | 
| 
       3 
3 
     | 
    
         
             
              belongs_to :polymorphic_man, :polymorphic => true, :inverse_of => :polymorphic_face
         
     | 
| 
       4 
     | 
    
         
            -
              # Oracle identifier  
     | 
| 
      
 4 
     | 
    
         
            +
              # Oracle identifier length is limited to 30 bytes or less, `polymorphic` renamed `poly`
         
     | 
| 
       5 
5 
     | 
    
         
             
              belongs_to :poly_man_without_inverse, :polymorphic => true
         
     | 
| 
       6 
6 
     | 
    
         
             
              # These is a "broken" inverse_of for the purposes of testing
         
     | 
| 
       7 
7 
     | 
    
         
             
              belongs_to :horrible_man, :class_name => 'Man', :inverse_of => :horrible_face
         
     | 
    
        data/test/models/hotel.rb
    CHANGED
    
    
    
        data/test/models/member.rb
    CHANGED
    
    | 
         @@ -22,6 +22,7 @@ class Member < ActiveRecord::Base 
     | 
|
| 
       22 
22 
     | 
    
         
             
              has_many :organization_member_details_2, :through => :organization, :source => :member_details
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
              has_one :club_category, :through => :club, :source => :category
         
     | 
| 
      
 25 
     | 
    
         
            +
              has_one :general_club, -> { general }, through: :current_membership, source: :club
         
     | 
| 
       25 
26 
     | 
    
         | 
| 
       26 
27 
     | 
    
         
             
              has_many :current_memberships, -> { where :favourite => true }
         
     | 
| 
       27 
28 
     | 
    
         
             
              has_many :clubs, :through => :current_memberships
         
     | 
| 
         @@ -1,7 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class MemberDetail < ActiveRecord::Base
         
     | 
| 
       2 
     | 
    
         
            -
              belongs_to :member, : 
     | 
| 
      
 2 
     | 
    
         
            +
              belongs_to :member, inverse_of: false
         
     | 
| 
       3 
3 
     | 
    
         
             
              belongs_to :organization
         
     | 
| 
       4 
     | 
    
         
            -
              has_one :member_type, : 
     | 
| 
      
 4 
     | 
    
         
            +
              has_one :member_type, through: :member
         
     | 
| 
      
 5 
     | 
    
         
            +
              has_one :membership, through: :member
         
     | 
| 
       5 
6 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
              has_many :organization_member_details, : 
     | 
| 
      
 7 
     | 
    
         
            +
              has_many :organization_member_details, through: :organization, source: :member_details
         
     | 
| 
       7 
8 
     | 
    
         
             
            end
         
     | 
    
        data/test/models/node.rb
    ADDED
    
    
    
        data/test/models/owner.rb
    CHANGED
    
    | 
         @@ -1,7 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Owner < ActiveRecord::Base
         
     | 
| 
       2 
2 
     | 
    
         
             
              self.primary_key = :owner_id
         
     | 
| 
       3 
3 
     | 
    
         
             
              has_many :pets, -> { order 'pets.name desc' }
         
     | 
| 
       4 
     | 
    
         
            -
              has_many :toys, : 
     | 
| 
      
 4 
     | 
    
         
            +
              has_many :toys, through: :pets
         
     | 
| 
      
 5 
     | 
    
         
            +
              has_many :persons, through: :pets
         
     | 
| 
       5 
6 
     | 
    
         | 
| 
       6 
7 
     | 
    
         
             
              belongs_to :last_pet, class_name: 'Pet'
         
     | 
| 
       7 
8 
     | 
    
         
             
              scope :including_last_pet, -> {
         
     | 
| 
         @@ -17,6 +18,8 @@ class Owner < ActiveRecord::Base 
     | 
|
| 
       17 
18 
     | 
    
         | 
| 
       18 
19 
     | 
    
         
             
              after_commit :execute_blocks
         
     | 
| 
       19 
20 
     | 
    
         | 
| 
      
 21 
     | 
    
         
            +
              accepts_nested_attributes_for :pets, allow_destroy: true
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
       20 
23 
     | 
    
         
             
              def blocks
         
     | 
| 
       21 
24 
     | 
    
         
             
                @blocks ||= []
         
     | 
| 
       22 
25 
     | 
    
         
             
              end
         
     | 
    
        data/test/models/parrot.rb
    CHANGED
    
    | 
         @@ -11,7 +11,12 @@ class Parrot < ActiveRecord::Base 
     | 
|
| 
       11 
11 
     | 
    
         
             
              attr_accessor :cancel_save_from_callback
         
     | 
| 
       12 
12 
     | 
    
         
             
              before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
         
     | 
| 
       13 
13 
     | 
    
         
             
              def cancel_save_callback_method
         
     | 
| 
       14 
     | 
    
         
            -
                 
     | 
| 
      
 14 
     | 
    
         
            +
                throw(:abort)
         
     | 
| 
      
 15 
     | 
    
         
            +
              end
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              before_update :increment_updated_count
         
     | 
| 
      
 18 
     | 
    
         
            +
              def increment_updated_count
         
     | 
| 
      
 19 
     | 
    
         
            +
                self.updated_count += 1
         
     | 
| 
       15 
20 
     | 
    
         
             
              end
         
     | 
| 
       16 
21 
     | 
    
         
             
            end
         
     | 
| 
       17 
22 
     | 
    
         | 
| 
         @@ -21,9 +26,3 @@ end 
     | 
|
| 
       21 
26 
     | 
    
         
             
            class DeadParrot < Parrot
         
     | 
| 
       22 
27 
     | 
    
         
             
              belongs_to :killer, :class_name => 'Pirate', foreign_key: :killer_id
         
     | 
| 
       23 
28 
     | 
    
         
             
            end
         
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            class FunkyParrot < Parrot
         
     | 
| 
       26 
     | 
    
         
            -
              before_destroy do
         
     | 
| 
       27 
     | 
    
         
            -
                raise "before_destroy was called"
         
     | 
| 
       28 
     | 
    
         
            -
              end
         
     | 
| 
       29 
     | 
    
         
            -
            end
         
     | 
    
        data/test/models/person.rb
    CHANGED
    
    | 
         @@ -37,7 +37,6 @@ class Person < ActiveRecord::Base 
     | 
|
| 
       37 
37 
     | 
    
         
             
              has_many :essays, primary_key: "first_name", foreign_key: "writer_id"
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
       39 
39 
     | 
    
         
             
              scope :males,   -> { where(:gender => 'M') }
         
     | 
| 
       40 
     | 
    
         
            -
              scope :females, -> { where(:gender => 'F') }
         
     | 
| 
       41 
40 
     | 
    
         
             
            end
         
     | 
| 
       42 
41 
     | 
    
         | 
| 
       43 
42 
     | 
    
         
             
            class PersonWithDependentDestroyJobs < ActiveRecord::Base
         
     | 
    
        data/test/models/pet.rb
    CHANGED
    
    | 
         @@ -4,6 +4,9 @@ class Pet < ActiveRecord::Base 
     | 
|
| 
       4 
4 
     | 
    
         
             
              self.primary_key = :pet_id
         
     | 
| 
       5 
5 
     | 
    
         
             
              belongs_to :owner, :touch => true
         
     | 
| 
       6 
6 
     | 
    
         
             
              has_many :toys
         
     | 
| 
      
 7 
     | 
    
         
            +
              has_many :pet_treasures
         
     | 
| 
      
 8 
     | 
    
         
            +
              has_many :treasures, through: :pet_treasures
         
     | 
| 
      
 9 
     | 
    
         
            +
              has_many :persons, through: :treasures, source: :looter, source_type: 'Person'
         
     | 
| 
       7 
10 
     | 
    
         | 
| 
       8 
11 
     | 
    
         
             
              class << self
         
     | 
| 
       9 
12 
     | 
    
         
             
                attr_accessor :after_destroy_output
         
     | 
    
        data/test/models/pirate.rb
    CHANGED
    
    | 
         @@ -36,8 +36,8 @@ class Pirate < ActiveRecord::Base 
     | 
|
| 
       36 
36 
     | 
    
         | 
| 
       37 
37 
     | 
    
         
             
              has_one :foo_bulb, -> { where :name => 'foo' }, :foreign_key => :car_id, :class_name => "Bulb"
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
       39 
     | 
    
         
            -
              accepts_nested_attributes_for :parrots, :birds, :allow_destroy => true, :reject_if => proc 
     | 
| 
       40 
     | 
    
         
            -
              accepts_nested_attributes_for :ship, :allow_destroy => true, :reject_if => proc 
     | 
| 
      
 39 
     | 
    
         
            +
              accepts_nested_attributes_for :parrots, :birds, :allow_destroy => true, :reject_if => proc(&:empty?)
         
     | 
| 
      
 40 
     | 
    
         
            +
              accepts_nested_attributes_for :ship, :allow_destroy => true, :reject_if => proc(&:empty?)
         
     | 
| 
       41 
41 
     | 
    
         
             
              accepts_nested_attributes_for :update_only_ship, :update_only => true
         
     | 
| 
       42 
42 
     | 
    
         
             
              accepts_nested_attributes_for :parrots_with_method_callbacks, :parrots_with_proc_callbacks,
         
     | 
| 
       43 
43 
     | 
    
         
             
                :birds_with_method_callbacks, :birds_with_proc_callbacks, :allow_destroy => true
         
     | 
| 
         @@ -56,7 +56,7 @@ class Pirate < ActiveRecord::Base 
     | 
|
| 
       56 
56 
     | 
    
         
             
              attr_accessor :cancel_save_from_callback, :parrots_limit
         
     | 
| 
       57 
57 
     | 
    
         
             
              before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
         
     | 
| 
       58 
58 
     | 
    
         
             
              def cancel_save_callback_method
         
     | 
| 
       59 
     | 
    
         
            -
                 
     | 
| 
      
 59 
     | 
    
         
            +
                throw(:abort)
         
     | 
| 
       60 
60 
     | 
    
         
             
              end
         
     | 
| 
       61 
61 
     | 
    
         | 
| 
       62 
62 
     | 
    
         
             
              private
         
     | 
    
        data/test/models/post.rb
    CHANGED
    
    | 
         @@ -13,16 +13,18 @@ class Post < ActiveRecord::Base 
     | 
|
| 
       13 
13 
     | 
    
         | 
| 
       14 
14 
     | 
    
         
             
              module NamedExtension2
         
     | 
| 
       15 
15 
     | 
    
         
             
                def greeting
         
     | 
| 
       16 
     | 
    
         
            -
                  " 
     | 
| 
      
 16 
     | 
    
         
            +
                  "hullo"
         
     | 
| 
       17 
17 
     | 
    
         
             
                end
         
     | 
| 
       18 
18 
     | 
    
         
             
              end
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
              scope :containing_the_letter_a, -> { where("body LIKE '%a%'") }
         
     | 
| 
      
 21 
     | 
    
         
            +
              scope :titled_with_an_apostrophe, -> { where("title LIKE '%''%'") }
         
     | 
| 
       21 
22 
     | 
    
         
             
              scope :ranked_by_comments,      -> { order("comments_count DESC") }
         
     | 
| 
       22 
23 
     | 
    
         | 
| 
       23 
24 
     | 
    
         
             
              scope :limit_by, lambda {|l| limit(l) }
         
     | 
| 
       24 
25 
     | 
    
         | 
| 
       25 
26 
     | 
    
         
             
              belongs_to :author
         
     | 
| 
      
 27 
     | 
    
         
            +
              belongs_to :readonly_author, -> { readonly }, class_name: "Author", foreign_key: :author_id
         
     | 
| 
       26 
28 
     | 
    
         | 
| 
       27 
29 
     | 
    
         
             
              belongs_to :author_with_posts, -> { includes(:posts) }, :class_name => "Author", :foreign_key => :author_id
         
     | 
| 
       28 
30 
     | 
    
         
             
              belongs_to :author_with_address, -> { includes(:author_address) }, :class_name => "Author", :foreign_key => :author_id
         
     | 
| 
         @@ -43,6 +45,8 @@ class Post < ActiveRecord::Base 
     | 
|
| 
       43 
45 
     | 
    
         
             
              scope :tagged_with, ->(id) { joins(:taggings).where(taggings: { tag_id: id }) }
         
     | 
| 
       44 
46 
     | 
    
         
             
              scope :tagged_with_comment, ->(comment) { joins(:taggings).where(taggings: { comment: comment }) }
         
     | 
| 
       45 
47 
     | 
    
         | 
| 
      
 48 
     | 
    
         
            +
              scope :typographically_interesting, -> { containing_the_letter_a.or(titled_with_an_apostrophe) }
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
       46 
50 
     | 
    
         
             
              has_many   :comments do
         
     | 
| 
       47 
51 
     | 
    
         
             
                def find_most_recent
         
     | 
| 
       48 
52 
     | 
    
         
             
                  order("id DESC").first
         
     | 
| 
         @@ -72,15 +76,11 @@ class Post < ActiveRecord::Base 
     | 
|
| 
       72 
76 
     | 
    
         
             
                through: :author_with_address,
         
     | 
| 
       73 
77 
     | 
    
         
             
                source: :author_address_extra
         
     | 
| 
       74 
78 
     | 
    
         | 
| 
       75 
     | 
    
         
            -
              has_many :comments_with_interpolated_conditions,
         
     | 
| 
       76 
     | 
    
         
            -
                ->(p) { where "#{"#{p.aliased_table_name}." rescue ""}body = ?", 'Thank you for the welcome' },
         
     | 
| 
       77 
     | 
    
         
            -
                :class_name => 'Comment'
         
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
79 
     | 
    
         
             
              has_one  :very_special_comment
         
     | 
| 
       80 
80 
     | 
    
         
             
              has_one  :very_special_comment_with_post, -> { includes(:post) }, :class_name => "VerySpecialComment"
         
     | 
| 
       81 
81 
     | 
    
         
             
              has_one :very_special_comment_with_post_with_joins, -> { joins(:post).order('posts.id') }, class_name: "VerySpecialComment"
         
     | 
| 
       82 
82 
     | 
    
         
             
              has_many :special_comments
         
     | 
| 
       83 
     | 
    
         
            -
              has_many : 
     | 
| 
      
 83 
     | 
    
         
            +
              has_many :nonexistent_comments, -> { where 'comments.id < 0' }, :class_name => 'Comment'
         
     | 
| 
       84 
84 
     | 
    
         | 
| 
       85 
85 
     | 
    
         
             
              has_many :special_comments_ratings, :through => :special_comments, :source => :ratings
         
     | 
| 
       86 
86 
     | 
    
         
             
              has_many :special_comments_ratings_taggings, :through => :special_comments_ratings, :source => :taggings
         
     | 
| 
         @@ -186,6 +186,7 @@ class SubStiPost < StiPost 
     | 
|
| 
       186 
186 
     | 
    
         
             
            end
         
     | 
| 
       187 
187 
     | 
    
         | 
| 
       188 
188 
     | 
    
         
             
            class FirstPost < ActiveRecord::Base
         
     | 
| 
      
 189 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       189 
190 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       190 
191 
     | 
    
         
             
              default_scope { where(:id => 1) }
         
     | 
| 
       191 
192 
     | 
    
         | 
| 
         @@ -194,6 +195,7 @@ class FirstPost < ActiveRecord::Base 
     | 
|
| 
       194 
195 
     | 
    
         
             
            end
         
     | 
| 
       195 
196 
     | 
    
         | 
| 
       196 
197 
     | 
    
         
             
            class PostWithDefaultInclude < ActiveRecord::Base
         
     | 
| 
      
 198 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       197 
199 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       198 
200 
     | 
    
         
             
              default_scope { includes(:comments) }
         
     | 
| 
       199 
201 
     | 
    
         
             
              has_many :comments, :foreign_key => :post_id
         
     | 
| 
         @@ -205,6 +207,7 @@ class PostWithSpecialCategorization < Post 
     | 
|
| 
       205 
207 
     | 
    
         
             
            end
         
     | 
| 
       206 
208 
     | 
    
         | 
| 
       207 
209 
     | 
    
         
             
            class PostWithDefaultScope < ActiveRecord::Base
         
     | 
| 
      
 210 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       208 
211 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       209 
212 
     | 
    
         
             
              default_scope { order(:title) }
         
     | 
| 
       210 
213 
     | 
    
         
             
            end
         
     | 
| 
         @@ -226,11 +229,13 @@ class PostWithIncludesDefaultScope < ActiveRecord::Base 
     | 
|
| 
       226 
229 
     | 
    
         
             
            end
         
     | 
| 
       227 
230 
     | 
    
         | 
| 
       228 
231 
     | 
    
         
             
            class SpecialPostWithDefaultScope < ActiveRecord::Base
         
     | 
| 
      
 232 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       229 
233 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       230 
234 
     | 
    
         
             
              default_scope { where(:id => [1, 5,6]) }
         
     | 
| 
       231 
235 
     | 
    
         
             
            end
         
     | 
| 
       232 
236 
     | 
    
         | 
| 
       233 
237 
     | 
    
         
             
            class PostThatLoadsCommentsInAnAfterSaveHook < ActiveRecord::Base
         
     | 
| 
      
 238 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       234 
239 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       235 
240 
     | 
    
         
             
              has_many :comments, class_name: "CommentThatAutomaticallyAltersPostBody", foreign_key: :post_id
         
     | 
| 
       236 
241 
     | 
    
         | 
| 
         @@ -240,6 +245,7 @@ class PostThatLoadsCommentsInAnAfterSaveHook < ActiveRecord::Base 
     | 
|
| 
       240 
245 
     | 
    
         
             
            end
         
     | 
| 
       241 
246 
     | 
    
         | 
| 
       242 
247 
     | 
    
         
             
            class PostWithAfterCreateCallback < ActiveRecord::Base
         
     | 
| 
      
 248 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       243 
249 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       244 
250 
     | 
    
         
             
              has_many :comments, foreign_key: :post_id
         
     | 
| 
       245 
251 
     | 
    
         | 
| 
         @@ -249,6 +255,7 @@ class PostWithAfterCreateCallback < ActiveRecord::Base 
     | 
|
| 
       249 
255 
     | 
    
         
             
            end
         
     | 
| 
       250 
256 
     | 
    
         | 
| 
       251 
257 
     | 
    
         
             
            class PostWithCommentWithDefaultScopeReferencesAssociation < ActiveRecord::Base
         
     | 
| 
      
 258 
     | 
    
         
            +
              self.inheritance_column = :disabled
         
     | 
| 
       252 
259 
     | 
    
         
             
              self.table_name = 'posts'
         
     | 
| 
       253 
260 
     | 
    
         
             
              has_many :comment_with_default_scope_references_associations, foreign_key: :post_id
         
     | 
| 
       254 
261 
     | 
    
         
             
              has_one :first_comment, class_name: "CommentWithDefaultScopeReferencesAssociation", foreign_key: :post_id
         
     | 
| 
         @@ -258,7 +265,9 @@ class SerializedPost < ActiveRecord::Base 
     | 
|
| 
       258 
265 
     | 
    
         
             
              serialize :title
         
     | 
| 
       259 
266 
     | 
    
         
             
            end
         
     | 
| 
       260 
267 
     | 
    
         | 
| 
       261 
     | 
    
         
            -
            class  
     | 
| 
       262 
     | 
    
         
            -
              default_scope  
     | 
| 
       263 
     | 
    
         
            -
             
     | 
| 
      
 268 
     | 
    
         
            +
            class ConditionalStiPost < Post
         
     | 
| 
      
 269 
     | 
    
         
            +
              default_scope { where(title: 'Untitled') }
         
     | 
| 
      
 270 
     | 
    
         
            +
            end
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
            class SubConditionalStiPost < ConditionalStiPost
         
     | 
| 
       264 
273 
     | 
    
         
             
            end
         
     |