activerecord 4.2.11.1 → 6.0.3.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +721 -1522
- data/MIT-LICENSE +4 -2
- data/README.rdoc +14 -13
- data/examples/performance.rb +33 -32
- data/examples/simple.rb +5 -4
- data/lib/active_record/advisory_lock_base.rb +18 -0
- data/lib/active_record/aggregations.rb +266 -251
- data/lib/active_record/association_relation.rb +20 -13
- data/lib/active_record/associations/alias_tracker.rb +29 -36
- data/lib/active_record/associations/association.rb +128 -57
- data/lib/active_record/associations/association_scope.rb +103 -132
- data/lib/active_record/associations/belongs_to_association.rb +65 -60
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -12
- data/lib/active_record/associations/builder/association.rb +27 -40
- data/lib/active_record/associations/builder/belongs_to.rb +69 -55
- data/lib/active_record/associations/builder/collection_association.rb +10 -33
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +50 -66
- data/lib/active_record/associations/builder/has_many.rb +8 -4
- data/lib/active_record/associations/builder/has_one.rb +46 -5
- data/lib/active_record/associations/builder/singular_association.rb +16 -10
- data/lib/active_record/associations/collection_association.rb +136 -288
- data/lib/active_record/associations/collection_proxy.rb +241 -147
- data/lib/active_record/associations/foreign_association.rb +10 -1
- data/lib/active_record/associations/has_many_association.rb +34 -98
- data/lib/active_record/associations/has_many_through_association.rb +60 -87
- data/lib/active_record/associations/has_one_association.rb +61 -49
- data/lib/active_record/associations/has_one_through_association.rb +20 -11
- data/lib/active_record/associations/join_dependency/join_association.rb +38 -86
- data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
- data/lib/active_record/associations/join_dependency/join_part.rb +14 -14
- data/lib/active_record/associations/join_dependency.rb +149 -166
- data/lib/active_record/associations/preloader/association.rb +90 -123
- data/lib/active_record/associations/preloader/through_association.rb +85 -65
- data/lib/active_record/associations/preloader.rb +90 -93
- data/lib/active_record/associations/singular_association.rb +18 -39
- data/lib/active_record/associations/through_association.rb +38 -18
- data/lib/active_record/associations.rb +1737 -1597
- data/lib/active_record/attribute_assignment.rb +57 -185
- data/lib/active_record/attribute_decorators.rb +39 -17
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -9
- data/lib/active_record/attribute_methods/dirty.rb +174 -144
- data/lib/active_record/attribute_methods/primary_key.rb +90 -84
- data/lib/active_record/attribute_methods/query.rb +6 -5
- data/lib/active_record/attribute_methods/read.rb +20 -77
- data/lib/active_record/attribute_methods/serialization.rb +40 -21
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +57 -37
- data/lib/active_record/attribute_methods/write.rb +32 -55
- data/lib/active_record/attribute_methods.rb +120 -135
- data/lib/active_record/attributes.rb +213 -82
- data/lib/active_record/autosave_association.rb +97 -41
- data/lib/active_record/base.rb +57 -45
- data/lib/active_record/callbacks.rb +101 -76
- data/lib/active_record/coders/json.rb +3 -1
- data/lib/active_record/coders/yaml_column.rb +23 -12
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +804 -297
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +26 -8
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +240 -115
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +83 -24
- data/lib/active_record/connection_adapters/abstract/quoting.rb +170 -53
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +5 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +74 -47
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +371 -242
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +694 -256
- data/lib/active_record/connection_adapters/abstract/transaction.rb +190 -83
- data/lib/active_record/connection_adapters/abstract_adapter.rb +473 -202
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +507 -639
- data/lib/active_record/connection_adapters/column.rb +56 -43
- data/lib/active_record/connection_adapters/connection_specification.rb +174 -153
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +196 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +58 -181
- data/lib/active_record/connection_adapters/postgresql/column.rb +21 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +70 -114
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +49 -58
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +9 -8
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +4 -2
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +9 -22
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +5 -4
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -20
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
- data/lib/active_record/connection_adapters/postgresql/oid/{infinity.rb → oid.rb} +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +32 -11
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +51 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -5
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +58 -54
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +9 -5
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +23 -25
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +144 -47
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +178 -108
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +462 -296
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +11 -8
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +558 -356
- data/lib/active_record/connection_adapters/schema_cache.rb +72 -25
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +119 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +102 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +137 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +299 -349
- data/lib/active_record/connection_adapters/statement_pool.rb +33 -13
- data/lib/active_record/connection_handling.rb +167 -41
- data/lib/active_record/core.rb +252 -230
- data/lib/active_record/counter_cache.rb +70 -49
- data/lib/active_record/database_configurations/database_config.rb +37 -0
- data/lib/active_record/database_configurations/hash_config.rb +50 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +233 -0
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -106
- data/lib/active_record/enum.rb +163 -86
- data/lib/active_record/errors.rb +188 -53
- data/lib/active_record/explain.rb +22 -11
- data/lib/active_record/explain_registry.rb +4 -2
- data/lib/active_record/explain_subscriber.rb +10 -5
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixture_set/model_metadata.rb +33 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +152 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +227 -501
- data/lib/active_record/gem_version.rb +6 -4
- data/lib/active_record/inheritance.rb +158 -115
- data/lib/active_record/insert_all.rb +179 -0
- data/lib/active_record/integration.rb +123 -29
- data/lib/active_record/internal_metadata.rb +53 -0
- data/lib/active_record/legacy_yaml_adapter.rb +21 -3
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +86 -96
- data/lib/active_record/locking/pessimistic.rb +18 -6
- data/lib/active_record/log_subscriber.rb +76 -33
- data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +87 -0
- data/lib/active_record/middleware/database_selector.rb +74 -0
- data/lib/active_record/migration/command_recorder.rb +166 -91
- data/lib/active_record/migration/compatibility.rb +244 -0
- data/lib/active_record/migration/join_table.rb +8 -7
- data/lib/active_record/migration.rb +623 -305
- data/lib/active_record/model_schema.rb +313 -112
- data/lib/active_record/nested_attributes.rb +263 -223
- data/lib/active_record/no_touching.rb +15 -2
- data/lib/active_record/null_relation.rb +24 -38
- data/lib/active_record/persistence.rb +557 -126
- data/lib/active_record/query_cache.rb +19 -23
- data/lib/active_record/querying.rb +44 -30
- data/lib/active_record/railtie.rb +143 -44
- data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
- data/lib/active_record/railties/console_sandbox.rb +2 -0
- data/lib/active_record/railties/controller_runtime.rb +34 -33
- data/lib/active_record/railties/databases.rake +331 -185
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +430 -281
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +206 -55
- data/lib/active_record/relation/calculations.rb +268 -254
- data/lib/active_record/relation/delegation.rb +75 -84
- data/lib/active_record/relation/finder_methods.rb +285 -241
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +78 -88
- data/lib/active_record/relation/predicate_builder/array_handler.rb +27 -26
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
- data/lib/active_record/relation/predicate_builder.rb +110 -119
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +603 -397
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +11 -14
- data/lib/active_record/relation/where_clause.rb +189 -0
- data/lib/active_record/relation/where_clause_factory.rb +33 -0
- data/lib/active_record/relation.rb +530 -341
- data/lib/active_record/result.rb +79 -43
- data/lib/active_record/runtime_registry.rb +6 -4
- data/lib/active_record/sanitization.rb +144 -121
- data/lib/active_record/schema.rb +21 -24
- data/lib/active_record/schema_dumper.rb +112 -93
- data/lib/active_record/schema_migration.rb +24 -17
- data/lib/active_record/scoping/default.rb +98 -83
- data/lib/active_record/scoping/named.rb +86 -33
- data/lib/active_record/scoping.rb +45 -27
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/statement_cache.rb +73 -36
- data/lib/active_record/store.rb +127 -42
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +90 -0
- data/lib/active_record/tasks/database_tasks.rb +307 -100
- data/lib/active_record/tasks/mysql_database_tasks.rb +55 -100
- data/lib/active_record/tasks/postgresql_database_tasks.rb +80 -41
- data/lib/active_record/tasks/sqlite_database_tasks.rb +37 -16
- data/lib/active_record/test_databases.rb +23 -0
- data/lib/active_record/test_fixtures.rb +225 -0
- data/lib/active_record/timestamp.rb +86 -41
- data/lib/active_record/touch_later.rb +65 -0
- data/lib/active_record/transactions.rb +223 -157
- data/lib/active_record/translation.rb +3 -1
- data/lib/active_record/type/adapter_specific_registry.rb +126 -0
- data/lib/active_record/type/date.rb +4 -45
- data/lib/active_record/type/date_time.rb +4 -49
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +5 -4
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +23 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +11 -16
- data/lib/active_record/type/type_map.rb +16 -19
- data/lib/active_record/type/unsigned_integer.rb +9 -8
- data/lib/active_record/type.rb +77 -23
- data/lib/active_record/type_caster/connection.rb +34 -0
- data/lib/active_record/type_caster/map.rb +20 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +12 -4
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +14 -13
- data/lib/active_record/validations/uniqueness.rb +42 -55
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +42 -22
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +37 -0
- data/lib/arel/attributes.rb +22 -0
- data/lib/arel/collectors/bind.rb +24 -0
- data/lib/arel/collectors/composite.rb +31 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +20 -0
- data/lib/arel/collectors/substitute_binds.rb +28 -0
- data/lib/arel/crud.rb +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +52 -0
- data/lib/arel/nodes/bind_param.rb +36 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +50 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/delete_statement.rb +45 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +18 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +8 -0
- data/lib/arel/nodes/in.rb +8 -0
- data/lib/arel/nodes/infix_operation.rb +80 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +50 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +16 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +27 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +45 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +41 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/nodes.rb +68 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +256 -0
- data/lib/arel/select_manager.rb +271 -0
- data/lib/arel/table.rb +110 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors/depth_first.rb +203 -0
- data/lib/arel/visitors/dot.rb +296 -0
- data/lib/arel/visitors/ibm_db.rb +34 -0
- data/lib/arel/visitors/informix.rb +62 -0
- data/lib/arel/visitors/mssql.rb +156 -0
- data/lib/arel/visitors/mysql.rb +83 -0
- data/lib/arel/visitors/oracle.rb +158 -0
- data/lib/arel/visitors/oracle12.rb +65 -0
- data/lib/arel/visitors/postgresql.rb +109 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +888 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors/where_sql.rb +22 -0
- data/lib/arel/visitors.rb +20 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +62 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +42 -37
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
- data/lib/rails/generators/active_record/migration/templates/{migration.rb → migration.rb.tt} +11 -2
- data/lib/rails/generators/active_record/migration.rb +30 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +18 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
- data/lib/rails/generators/active_record.rb +7 -5
- metadata +168 -59
- data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
- data/lib/active_record/associations/preloader/collection_association.rb +0 -24
- data/lib/active_record/associations/preloader/has_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
- data/lib/active_record/associations/preloader/has_one.rb +0 -23
- data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
- data/lib/active_record/associations/preloader/singular_association.rb +0 -21
- data/lib/active_record/attribute.rb +0 -163
- data/lib/active_record/attribute_set/builder.rb +0 -106
- data/lib/active_record/attribute_set.rb +0 -81
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -498
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/integer.rb +0 -11
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -31
- data/lib/active_record/type/decimal.rb +0 -64
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -59
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -40
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -110
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -19
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
@@ -1,46 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Associations
|
3
5
|
class AssociationScope #:nodoc:
|
4
|
-
def self.scope(association
|
5
|
-
INSTANCE.scope
|
6
|
-
end
|
7
|
-
|
8
|
-
class BindSubstitution
|
9
|
-
def initialize(block)
|
10
|
-
@block = block
|
11
|
-
end
|
12
|
-
|
13
|
-
def bind_value(scope, column, value, alias_tracker)
|
14
|
-
substitute = alias_tracker.connection.substitute_at(column)
|
15
|
-
scope.bind_values += [[column, @block.call(value)]]
|
16
|
-
substitute
|
17
|
-
end
|
6
|
+
def self.scope(association)
|
7
|
+
INSTANCE.scope(association)
|
18
8
|
end
|
19
9
|
|
20
10
|
def self.create(&block)
|
21
|
-
block
|
22
|
-
new
|
11
|
+
block ||= lambda { |val| val }
|
12
|
+
new(block)
|
23
13
|
end
|
24
14
|
|
25
|
-
def initialize(
|
26
|
-
@
|
15
|
+
def initialize(value_transformation)
|
16
|
+
@value_transformation = value_transformation
|
27
17
|
end
|
28
18
|
|
29
19
|
INSTANCE = create
|
30
20
|
|
31
|
-
def scope(association
|
32
|
-
klass
|
33
|
-
reflection
|
34
|
-
scope
|
35
|
-
owner
|
36
|
-
|
21
|
+
def scope(association)
|
22
|
+
klass = association.klass
|
23
|
+
reflection = association.reflection
|
24
|
+
scope = klass.unscoped
|
25
|
+
owner = association.owner
|
26
|
+
chain = get_chain(reflection, association, scope.alias_tracker)
|
37
27
|
|
38
|
-
scope.extending!
|
39
|
-
add_constraints(scope, owner,
|
40
|
-
|
41
|
-
|
42
|
-
def join_type
|
43
|
-
Arel::Nodes::InnerJoin
|
28
|
+
scope.extending! reflection.extensions
|
29
|
+
scope = add_constraints(scope, owner, chain)
|
30
|
+
scope.limit!(1) unless reflection.collection?
|
31
|
+
scope
|
44
32
|
end
|
45
33
|
|
46
34
|
def self.get_bind_values(owner, chain)
|
@@ -49,147 +37,130 @@ module ActiveRecord
|
|
49
37
|
|
50
38
|
binds << last_reflection.join_id_for(owner)
|
51
39
|
if last_reflection.type
|
52
|
-
binds << owner.class.
|
40
|
+
binds << owner.class.polymorphic_name
|
53
41
|
end
|
54
42
|
|
55
43
|
chain.each_cons(2).each do |reflection, next_reflection|
|
56
44
|
if reflection.type
|
57
|
-
binds << next_reflection.klass.
|
45
|
+
binds << next_reflection.klass.polymorphic_name
|
58
46
|
end
|
59
47
|
end
|
60
48
|
binds
|
61
49
|
end
|
62
50
|
|
63
51
|
private
|
52
|
+
attr_reader :value_transformation
|
64
53
|
|
65
|
-
|
66
|
-
|
67
|
-
alias_tracker.aliased_table_for(
|
68
|
-
table_name_for(reflection, klass, refl),
|
69
|
-
table_alias_for(reflection, refl, reflection != refl)
|
70
|
-
)
|
54
|
+
def join(table, constraint)
|
55
|
+
table.create_join(table, table.create_on(constraint))
|
71
56
|
end
|
72
|
-
end
|
73
57
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
end
|
58
|
+
def last_chain_scope(scope, reflection, owner)
|
59
|
+
join_keys = reflection.join_keys
|
60
|
+
key = join_keys.key
|
61
|
+
foreign_key = join_keys.foreign_key
|
79
62
|
|
80
|
-
|
81
|
-
|
82
|
-
|
63
|
+
table = reflection.aliased_table
|
64
|
+
value = transform_value(owner[foreign_key])
|
65
|
+
scope = apply_scope(scope, table, key, value)
|
83
66
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
def bind_value(scope, column, value, alias_tracker)
|
90
|
-
@bind_substitution.bind_value scope, column, value, alias_tracker
|
91
|
-
end
|
92
|
-
|
93
|
-
def bind(scope, table_name, column_name, value, tracker)
|
94
|
-
column = column_for table_name, column_name, tracker
|
95
|
-
bind_value scope, column, value, tracker
|
96
|
-
end
|
97
|
-
|
98
|
-
def last_chain_scope(scope, table, reflection, owner, tracker, assoc_klass)
|
99
|
-
join_keys = reflection.join_keys(assoc_klass)
|
100
|
-
key = join_keys.key
|
101
|
-
foreign_key = join_keys.foreign_key
|
102
|
-
|
103
|
-
bind_val = bind scope, table.table_name, key.to_s, owner[foreign_key], tracker
|
104
|
-
scope = scope.where(table[key].eq(bind_val))
|
67
|
+
if reflection.type
|
68
|
+
polymorphic_type = transform_value(owner.class.polymorphic_name)
|
69
|
+
scope = apply_scope(scope, table, reflection.type, polymorphic_type)
|
70
|
+
end
|
105
71
|
|
106
|
-
if reflection.type
|
107
|
-
value = owner.class.base_class.name
|
108
|
-
bind_val = bind scope, table.table_name, reflection.type, value, tracker
|
109
|
-
scope = scope.where(table[reflection.type].eq(bind_val))
|
110
|
-
else
|
111
72
|
scope
|
112
73
|
end
|
113
|
-
end
|
114
74
|
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
foreign_key = join_keys.foreign_key
|
75
|
+
def transform_value(value)
|
76
|
+
value_transformation.call(value)
|
77
|
+
end
|
119
78
|
|
120
|
-
|
79
|
+
def next_chain_scope(scope, reflection, next_reflection)
|
80
|
+
join_keys = reflection.join_keys
|
81
|
+
key = join_keys.key
|
82
|
+
foreign_key = join_keys.foreign_key
|
121
83
|
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
84
|
+
table = reflection.aliased_table
|
85
|
+
foreign_table = next_reflection.aliased_table
|
86
|
+
constraint = table[key].eq(foreign_table[foreign_key])
|
87
|
+
|
88
|
+
if reflection.type
|
89
|
+
value = transform_value(next_reflection.klass.polymorphic_name)
|
90
|
+
scope = apply_scope(scope, table, reflection.type, value)
|
91
|
+
end
|
92
|
+
|
93
|
+
scope.joins!(join(foreign_table, constraint))
|
126
94
|
end
|
127
95
|
|
128
|
-
|
129
|
-
|
96
|
+
class ReflectionProxy < SimpleDelegator # :nodoc:
|
97
|
+
attr_reader :aliased_table
|
130
98
|
|
131
|
-
|
132
|
-
|
133
|
-
|
99
|
+
def initialize(reflection, aliased_table)
|
100
|
+
super(reflection)
|
101
|
+
@aliased_table = aliased_table
|
102
|
+
end
|
134
103
|
|
135
|
-
|
104
|
+
def all_includes; nil; end
|
105
|
+
end
|
136
106
|
|
137
|
-
|
138
|
-
|
139
|
-
|
107
|
+
def get_chain(reflection, association, tracker)
|
108
|
+
name = reflection.name
|
109
|
+
chain = [Reflection::RuntimeReflection.new(reflection, association)]
|
110
|
+
reflection.chain.drop(1).each do |refl|
|
111
|
+
aliased_table = tracker.aliased_table_for(
|
112
|
+
refl.table_name,
|
113
|
+
refl.alias_candidate(name),
|
114
|
+
refl.klass.type_caster
|
115
|
+
)
|
116
|
+
chain << ReflectionProxy.new(refl, aliased_table)
|
117
|
+
end
|
118
|
+
chain
|
119
|
+
end
|
140
120
|
|
141
|
-
|
142
|
-
|
121
|
+
def add_constraints(scope, owner, chain)
|
122
|
+
scope = last_chain_scope(scope, chain.last, owner)
|
143
123
|
|
144
|
-
|
145
|
-
|
146
|
-
scope = next_chain_scope(scope, table, reflection, tracker, assoc_klass, foreign_table, next_reflection)
|
124
|
+
chain.each_cons(2) do |reflection, next_reflection|
|
125
|
+
scope = next_chain_scope(scope, reflection, next_reflection)
|
147
126
|
end
|
148
127
|
|
149
|
-
|
150
|
-
|
128
|
+
chain_head = chain.first
|
129
|
+
chain.reverse_each do |reflection|
|
130
|
+
# Exclude the scope of the association itself, because that
|
131
|
+
# was already merged in the #scope method.
|
132
|
+
reflection.constraints.each do |scope_chain_item|
|
133
|
+
item = eval_scope(reflection, scope_chain_item, owner)
|
151
134
|
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
item = eval_scope(klass, scope_chain_item, owner)
|
135
|
+
if scope_chain_item == chain_head.scope
|
136
|
+
scope.merge! item.except(:where, :includes, :unscope, :order)
|
137
|
+
end
|
156
138
|
|
157
|
-
|
158
|
-
|
159
|
-
|
139
|
+
reflection.all_includes do
|
140
|
+
scope.includes! item.includes_values
|
141
|
+
end
|
160
142
|
|
161
|
-
|
162
|
-
scope.
|
143
|
+
scope.unscope!(*item.unscope_values)
|
144
|
+
scope.where_clause += item.where_clause
|
145
|
+
scope.order_values = item.order_values | scope.order_values
|
163
146
|
end
|
164
|
-
|
165
|
-
scope.unscope!(*item.unscope_values)
|
166
|
-
scope.where_values += item.where_values
|
167
|
-
scope.bind_values += item.bind_values
|
168
|
-
scope.order_values |= item.order_values
|
169
147
|
end
|
170
|
-
end
|
171
|
-
|
172
|
-
scope
|
173
|
-
end
|
174
148
|
|
175
|
-
|
176
|
-
|
177
|
-
end
|
149
|
+
scope
|
150
|
+
end
|
178
151
|
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
else
|
186
|
-
reflection.table_name
|
152
|
+
def apply_scope(scope, table, key, value)
|
153
|
+
if scope.table == table
|
154
|
+
scope.where!(key => value)
|
155
|
+
else
|
156
|
+
scope.where!(table.name => { key => value })
|
157
|
+
end
|
187
158
|
end
|
188
|
-
end
|
189
159
|
|
190
|
-
|
191
|
-
|
192
|
-
|
160
|
+
def eval_scope(reflection, scope, owner)
|
161
|
+
relation = reflection.build_scope(reflection.aliased_table)
|
162
|
+
relation.instance_exec(owner, &scope) || relation
|
163
|
+
end
|
193
164
|
end
|
194
165
|
end
|
195
166
|
end
|
@@ -1,25 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
|
-
# = Active Record Belongs To Association
|
3
4
|
module Associations
|
5
|
+
# = Active Record Belongs To Association
|
4
6
|
class BelongsToAssociation < SingularAssociation #:nodoc:
|
5
|
-
|
6
7
|
def handle_dependency
|
7
|
-
|
8
|
-
end
|
8
|
+
return unless load_target
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
replace_keys(record)
|
15
|
-
set_inverse_instance(record)
|
16
|
-
@updated = true
|
10
|
+
case options[:dependent]
|
11
|
+
when :destroy
|
12
|
+
target.destroy
|
13
|
+
raise ActiveRecord::Rollback unless target.destroyed?
|
17
14
|
else
|
18
|
-
|
19
|
-
remove_keys
|
15
|
+
target.send(options[:dependent])
|
20
16
|
end
|
17
|
+
end
|
21
18
|
|
22
|
-
|
19
|
+
def inversed_from(record)
|
20
|
+
replace_keys(record)
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def default(&block)
|
25
|
+
writer(owner.instance_exec(&block)) if reader.nil?
|
23
26
|
end
|
24
27
|
|
25
28
|
def reset
|
@@ -31,60 +34,74 @@ module ActiveRecord
|
|
31
34
|
@updated
|
32
35
|
end
|
33
36
|
|
34
|
-
def decrement_counters
|
35
|
-
|
37
|
+
def decrement_counters
|
38
|
+
update_counters(-1)
|
36
39
|
end
|
37
40
|
|
38
|
-
def increment_counters
|
39
|
-
|
41
|
+
def increment_counters
|
42
|
+
update_counters(1)
|
40
43
|
end
|
41
44
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
45
|
+
def decrement_counters_before_last_save
|
46
|
+
if reflection.polymorphic?
|
47
|
+
model_was = owner.attribute_before_last_save(reflection.foreign_type).try(:constantize)
|
48
|
+
else
|
49
|
+
model_was = klass
|
46
50
|
end
|
47
51
|
|
48
|
-
|
49
|
-
counter_cache_name = reflection.counter_cache_column
|
50
|
-
return unless counter_cache_name && owner.persisted?
|
51
|
-
yield counter_cache_name
|
52
|
-
end
|
52
|
+
foreign_key_was = owner.attribute_before_last_save(reflection.foreign_key)
|
53
53
|
|
54
|
-
|
55
|
-
|
56
|
-
return unless different_target? record
|
57
|
-
record.class.increment_counter(name, record.id)
|
58
|
-
decrement_counter name
|
59
|
-
end
|
54
|
+
if foreign_key_was && model_was < ActiveRecord::Base
|
55
|
+
update_counters_via_scope(model_was, foreign_key_was, -1)
|
60
56
|
end
|
57
|
+
end
|
61
58
|
|
62
|
-
|
63
|
-
|
64
|
-
|
59
|
+
def target_changed?
|
60
|
+
owner.saved_change_to_attribute?(reflection.foreign_key)
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
def replace(record)
|
65
|
+
if record
|
66
|
+
raise_on_type_mismatch!(record)
|
67
|
+
set_inverse_instance(record)
|
68
|
+
@updated = true
|
65
69
|
end
|
70
|
+
|
71
|
+
replace_keys(record)
|
72
|
+
|
73
|
+
self.target = record
|
66
74
|
end
|
67
75
|
|
68
|
-
def
|
69
|
-
if foreign_key_present?
|
70
|
-
|
71
|
-
|
72
|
-
|
76
|
+
def update_counters(by)
|
77
|
+
if require_counter_update? && foreign_key_present?
|
78
|
+
if target && !stale_target?
|
79
|
+
target.increment!(reflection.counter_cache_column, by, touch: reflection.options[:touch])
|
80
|
+
else
|
81
|
+
update_counters_via_scope(klass, owner._read_attribute(reflection.foreign_key), by)
|
73
82
|
end
|
74
83
|
end
|
75
84
|
end
|
76
85
|
|
77
|
-
|
78
|
-
|
79
|
-
|
86
|
+
def update_counters_via_scope(klass, foreign_key, by)
|
87
|
+
scope = klass.unscoped.where!(primary_key(klass) => foreign_key)
|
88
|
+
scope.update_counters(reflection.counter_cache_column => by, touch: reflection.options[:touch])
|
89
|
+
end
|
90
|
+
|
91
|
+
def find_target?
|
92
|
+
!loaded? && foreign_key_present? && klass
|
93
|
+
end
|
94
|
+
|
95
|
+
def require_counter_update?
|
96
|
+
reflection.counter_cache_column && owner.persisted?
|
80
97
|
end
|
81
98
|
|
82
99
|
def replace_keys(record)
|
83
|
-
owner[reflection.foreign_key] = record._read_attribute(
|
100
|
+
owner[reflection.foreign_key] = record ? record._read_attribute(primary_key(record.class)) : nil
|
84
101
|
end
|
85
102
|
|
86
|
-
def
|
87
|
-
|
103
|
+
def primary_key(klass)
|
104
|
+
reflection.association_primary_key(klass)
|
88
105
|
end
|
89
106
|
|
90
107
|
def foreign_key_present?
|
@@ -98,22 +115,10 @@ module ActiveRecord
|
|
98
115
|
inverse && inverse.has_one?
|
99
116
|
end
|
100
117
|
|
101
|
-
def target_id
|
102
|
-
if options[:primary_key]
|
103
|
-
owner.send(reflection.name).try(:id)
|
104
|
-
else
|
105
|
-
owner._read_attribute(reflection.foreign_key)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
118
|
def stale_state
|
110
|
-
result = owner._read_attribute(reflection.foreign_key)
|
119
|
+
result = owner._read_attribute(reflection.foreign_key) { |n| owner.send(:missing_attribute, n, caller) }
|
111
120
|
result && result.to_s
|
112
121
|
end
|
113
|
-
|
114
|
-
def counter_cache_available_in_memory?(counter_cache_name)
|
115
|
-
target.respond_to?(counter_cache_name)
|
116
|
-
end
|
117
122
|
end
|
118
123
|
end
|
119
124
|
end
|
@@ -1,26 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
|
-
# = Active Record Belongs To Polymorphic Association
|
3
4
|
module Associations
|
5
|
+
# = Active Record Belongs To Polymorphic Association
|
4
6
|
class BelongsToPolymorphicAssociation < BelongsToAssociation #:nodoc:
|
5
7
|
def klass
|
6
8
|
type = owner[reflection.foreign_type]
|
7
9
|
type.presence && type.constantize
|
8
10
|
end
|
9
11
|
|
10
|
-
|
12
|
+
def target_changed?
|
13
|
+
super || owner.saved_change_to_attribute?(reflection.foreign_type)
|
14
|
+
end
|
11
15
|
|
16
|
+
private
|
12
17
|
def replace_keys(record)
|
13
18
|
super
|
14
|
-
owner[reflection.foreign_type] = record.class.
|
15
|
-
end
|
16
|
-
|
17
|
-
def remove_keys
|
18
|
-
super
|
19
|
-
owner[reflection.foreign_type] = nil
|
20
|
-
end
|
21
|
-
|
22
|
-
def different_target?(record)
|
23
|
-
super || record.class != klass
|
19
|
+
owner[reflection.foreign_type] = record ? record.class.polymorphic_name : nil
|
24
20
|
end
|
25
21
|
|
26
22
|
def inverse_reflection_for(record)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This is the parent Association class which defines the variables
|
4
4
|
# used by all associations.
|
@@ -11,19 +11,14 @@ require 'active_support/core_ext/module/attribute_accessors'
|
|
11
11
|
# - CollectionAssociation
|
12
12
|
# - HasManyAssociation
|
13
13
|
|
14
|
-
module ActiveRecord::Associations::Builder
|
14
|
+
module ActiveRecord::Associations::Builder # :nodoc:
|
15
15
|
class Association #:nodoc:
|
16
16
|
class << self
|
17
17
|
attr_accessor :extensions
|
18
|
-
# TODO: This class accessor is needed to make activerecord-deprecated_finders work.
|
19
|
-
# We can move it to a constant in 5.0.
|
20
|
-
attr_accessor :valid_options
|
21
18
|
end
|
22
19
|
self.extensions = []
|
23
20
|
|
24
|
-
|
25
|
-
|
26
|
-
attr_reader :name, :scope, :options
|
21
|
+
VALID_OPTIONS = [:class_name, :anonymous_class, :foreign_key, :validate] # :nodoc:
|
27
22
|
|
28
23
|
def self.build(model, name, scope, options, &block)
|
29
24
|
if model.dangerous_attribute_method?(name)
|
@@ -32,57 +27,47 @@ module ActiveRecord::Associations::Builder
|
|
32
27
|
"Please choose a different association name."
|
33
28
|
end
|
34
29
|
|
35
|
-
|
36
|
-
reflection = builder.build(model)
|
30
|
+
reflection = create_reflection(model, name, scope, options, &block)
|
37
31
|
define_accessors model, reflection
|
38
32
|
define_callbacks model, reflection
|
39
33
|
define_validations model, reflection
|
40
|
-
builder.define_extensions model
|
41
34
|
reflection
|
42
35
|
end
|
43
36
|
|
44
|
-
def self.
|
37
|
+
def self.create_reflection(model, name, scope, options, &block)
|
45
38
|
raise ArgumentError, "association names must be a Symbol" unless name.kind_of?(Symbol)
|
46
39
|
|
47
|
-
|
48
|
-
end
|
40
|
+
validate_options(options)
|
49
41
|
|
50
|
-
|
51
|
-
|
52
|
-
if scope.is_a?(Hash)
|
53
|
-
options = scope
|
54
|
-
scope = nil
|
55
|
-
end
|
42
|
+
extension = define_extensions(model, name, &block)
|
43
|
+
options[:extend] = [*options[:extend], extension] if extension
|
56
44
|
|
57
|
-
|
58
|
-
@name = name
|
59
|
-
@scope = scope
|
60
|
-
@options = options
|
45
|
+
scope = build_scope(scope)
|
61
46
|
|
62
|
-
|
47
|
+
ActiveRecord::Reflection.create(macro, name, scope, options, model)
|
48
|
+
end
|
63
49
|
|
50
|
+
def self.build_scope(scope)
|
64
51
|
if scope && scope.arity == 0
|
65
|
-
|
52
|
+
proc { instance_exec(&scope) }
|
53
|
+
else
|
54
|
+
scope
|
66
55
|
end
|
67
56
|
end
|
68
57
|
|
69
|
-
def
|
70
|
-
ActiveRecord::Reflection.create(macro, name, scope, options, model)
|
71
|
-
end
|
72
|
-
|
73
|
-
def macro
|
58
|
+
def self.macro
|
74
59
|
raise NotImplementedError
|
75
60
|
end
|
76
61
|
|
77
|
-
def valid_options
|
78
|
-
|
62
|
+
def self.valid_options(options)
|
63
|
+
VALID_OPTIONS + Association.extensions.flat_map(&:valid_options)
|
79
64
|
end
|
80
65
|
|
81
|
-
def validate_options
|
82
|
-
options.assert_valid_keys(valid_options)
|
66
|
+
def self.validate_options(options)
|
67
|
+
options.assert_valid_keys(valid_options(options))
|
83
68
|
end
|
84
69
|
|
85
|
-
def define_extensions(model)
|
70
|
+
def self.define_extensions(model, name)
|
86
71
|
end
|
87
72
|
|
88
73
|
def self.define_callbacks(model, reflection)
|
@@ -111,8 +96,8 @@ module ActiveRecord::Associations::Builder
|
|
111
96
|
|
112
97
|
def self.define_readers(mixin, name)
|
113
98
|
mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
|
114
|
-
def #{name}
|
115
|
-
association(:#{name}).reader
|
99
|
+
def #{name}
|
100
|
+
association(:#{name}).reader
|
116
101
|
end
|
117
102
|
CODE
|
118
103
|
end
|
@@ -133,8 +118,6 @@ module ActiveRecord::Associations::Builder
|
|
133
118
|
raise NotImplementedError
|
134
119
|
end
|
135
120
|
|
136
|
-
private
|
137
|
-
|
138
121
|
def self.check_dependent_options(dependent)
|
139
122
|
unless valid_dependent_options.include? dependent
|
140
123
|
raise ArgumentError, "The :dependent option must be one of #{valid_dependent_options}, but is :#{dependent}"
|
@@ -145,5 +128,9 @@ module ActiveRecord::Associations::Builder
|
|
145
128
|
name = reflection.name
|
146
129
|
model.before_destroy lambda { |o| o.association(name).handle_dependency }
|
147
130
|
end
|
131
|
+
|
132
|
+
private_class_method :build_scope, :macro, :valid_options, :validate_options, :define_extensions,
|
133
|
+
:define_callbacks, :define_accessors, :define_readers, :define_writers, :define_validations,
|
134
|
+
:valid_dependent_options, :check_dependent_options, :add_destroy_callbacks
|
148
135
|
end
|
149
136
|
end
|