activerecord 4.2.0 → 6.0.5.1
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 +5 -5
- data/CHANGELOG.md +852 -801
- 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 +267 -249
- data/lib/active_record/association_relation.rb +26 -6
- data/lib/active_record/associations/alias_tracker.rb +29 -36
- data/lib/active_record/associations/association.rb +137 -55
- data/lib/active_record/associations/association_scope.rb +110 -132
- data/lib/active_record/associations/belongs_to_association.rb +67 -54
- 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 -29
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +58 -70
- 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 +150 -275
- data/lib/active_record/associations/collection_proxy.rb +253 -152
- data/lib/active_record/associations/foreign_association.rb +20 -0
- data/lib/active_record/associations/has_many_association.rb +35 -84
- data/lib/active_record/associations/has_many_through_association.rb +62 -80
- data/lib/active_record/associations/has_one_association.rb +62 -49
- data/lib/active_record/associations/has_one_through_association.rb +20 -11
- data/lib/active_record/associations/join_dependency/join_association.rb +43 -78
- 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 +159 -162
- data/lib/active_record/associations/preloader/association.rb +102 -113
- data/lib/active_record/associations/preloader/through_association.rb +85 -65
- data/lib/active_record/associations/preloader.rb +96 -95
- data/lib/active_record/associations/singular_association.rb +18 -45
- data/lib/active_record/associations/through_association.rb +49 -24
- data/lib/active_record/associations.rb +1737 -1596
- 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 +14 -5
- data/lib/active_record/attribute_methods/dirty.rb +174 -134
- 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 +61 -37
- data/lib/active_record/attribute_methods/write.rb +33 -56
- data/lib/active_record/attribute_methods.rb +124 -143
- data/lib/active_record/attributes.rb +213 -74
- data/lib/active_record/autosave_association.rb +125 -54
- data/lib/active_record/base.rb +60 -49
- 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 +36 -13
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +810 -291
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +26 -8
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +253 -108
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +83 -24
- data/lib/active_record/connection_adapters/abstract/quoting.rb +171 -53
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +6 -4
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +74 -47
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +383 -239
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +736 -235
- data/lib/active_record/connection_adapters/abstract/transaction.rb +190 -87
- data/lib/active_record/connection_adapters/abstract_adapter.rb +487 -192
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +536 -600
- 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 +268 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +59 -196
- data/lib/active_record/connection_adapters/postgresql/column.rb +21 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +71 -115
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +49 -57
- 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 +5 -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 +17 -13
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +6 -3
- 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 +70 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -1
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +67 -51
- 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 +465 -291
- 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 +565 -363
- 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 -364
- 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 +277 -233
- data/lib/active_record/counter_cache.rb +71 -50
- 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 +172 -89
- data/lib/active_record/errors.rb +189 -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 +11 -6
- 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 +225 -497
- 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 +48 -0
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +99 -98
- 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 +636 -290
- data/lib/active_record/model_schema.rb +344 -112
- data/lib/active_record/nested_attributes.rb +265 -215
- data/lib/active_record/no_touching.rb +15 -2
- data/lib/active_record/null_relation.rb +24 -38
- data/lib/active_record/persistence.rb +559 -125
- data/lib/active_record/query_cache.rb +19 -23
- data/lib/active_record/querying.rb +44 -30
- data/lib/active_record/railtie.rb +166 -47
- 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 +341 -202
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +461 -302
- 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 +270 -249
- data/lib/active_record/relation/delegation.rb +76 -84
- data/lib/active_record/relation/finder_methods.rb +287 -255
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +86 -68
- data/lib/active_record/relation/predicate_builder/array_handler.rb +27 -25
- 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 +112 -92
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +612 -392
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +18 -17
- 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 +533 -340
- 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 -20
- data/lib/active_record/scoping/default.rb +98 -82
- data/lib/active_record/scoping/named.rb +91 -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 +309 -99
- data/lib/active_record/tasks/mysql_database_tasks.rb +58 -89
- data/lib/active_record/tasks/postgresql_database_tasks.rb +81 -31
- 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 +243 -0
- data/lib/active_record/timestamp.rb +86 -41
- data/lib/active_record/touch_later.rb +65 -0
- data/lib/active_record/transactions.rb +222 -146
- 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 -41
- data/lib/active_record/type/date_time.rb +4 -38
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +12 -5
- 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 +29 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +21 -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 +43 -46
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +44 -21
- 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 -8
- 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.rb +7 -5
- metadata +174 -63
- 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 -149
- data/lib/active_record/attribute_set/builder.rb +0 -86
- data/lib/active_record/attribute_set.rb +0 -77
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -491
- 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 -30
- data/lib/active_record/type/decimal.rb +0 -40
- 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 -55
- 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 -36
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -101
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -22
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
- /data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module TypeCaster
|
5
|
+
class Map # :nodoc:
|
6
|
+
def initialize(types)
|
7
|
+
@types = types
|
8
|
+
end
|
9
|
+
|
10
|
+
def type_cast_for_database(attr_name, value)
|
11
|
+
return value if value.is_a?(Arel::Nodes::BindParam)
|
12
|
+
type = types.type_for_attribute(attr_name)
|
13
|
+
type.serialize(value)
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
attr_reader :types
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module Validations
|
5
|
+
class AbsenceValidator < ActiveModel::Validations::AbsenceValidator # :nodoc:
|
6
|
+
def validate_each(record, attribute, association_or_value)
|
7
|
+
if record.class._reflect_on_association(attribute)
|
8
|
+
association_or_value = Array.wrap(association_or_value).reject(&:marked_for_destruction?)
|
9
|
+
end
|
10
|
+
super
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
module ClassMethods
|
15
|
+
# Validates that the specified attributes are not present (as defined by
|
16
|
+
# Object#present?). If the attribute is an association, the associated object
|
17
|
+
# is considered absent if it was marked for destruction.
|
18
|
+
#
|
19
|
+
# See ActiveModel::Validations::HelperMethods.validates_absence_of for more information.
|
20
|
+
def validates_absence_of(*attr_names)
|
21
|
+
validates_with AbsenceValidator, _merge_attributes(attr_names)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -1,11 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Validations
|
3
5
|
class AssociatedValidator < ActiveModel::EachValidator #:nodoc:
|
4
6
|
def validate_each(record, attribute, value)
|
5
|
-
if Array
|
6
|
-
record.errors.add(attribute, :invalid, options.merge(:
|
7
|
+
if Array(value).reject { |r| valid_object?(r) }.any?
|
8
|
+
record.errors.add(attribute, :invalid, options.merge(value: value))
|
7
9
|
end
|
8
10
|
end
|
11
|
+
|
12
|
+
private
|
13
|
+
def valid_object?(record)
|
14
|
+
(record.respond_to?(:marked_for_destruction?) && record.marked_for_destruction?) || record.valid?
|
15
|
+
end
|
9
16
|
end
|
10
17
|
|
11
18
|
module ClassMethods
|
@@ -24,13 +31,14 @@ module ActiveRecord
|
|
24
31
|
#
|
25
32
|
# NOTE: This validation will not fail if the association hasn't been
|
26
33
|
# assigned. If you want to ensure that the association is both present and
|
27
|
-
# guaranteed to be valid, you also need to use
|
34
|
+
# guaranteed to be valid, you also need to use
|
35
|
+
# {validates_presence_of}[rdoc-ref:Validations::ClassMethods#validates_presence_of].
|
28
36
|
#
|
29
37
|
# Configuration options:
|
30
38
|
#
|
31
39
|
# * <tt>:message</tt> - A custom error message (default is: "is invalid").
|
32
40
|
# * <tt>:on</tt> - Specifies the contexts where this validation is active.
|
33
|
-
# Runs in all validation contexts by default
|
41
|
+
# Runs in all validation contexts by default +nil+. You can pass a symbol
|
34
42
|
# or an array of symbols. (e.g. <tt>on: :create</tt> or
|
35
43
|
# <tt>on: :custom_validation_context</tt> or
|
36
44
|
# <tt>on: [:create, :custom_validation_context]</tt>)
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module Validations
|
5
|
+
class LengthValidator < ActiveModel::Validations::LengthValidator # :nodoc:
|
6
|
+
def validate_each(record, attribute, association_or_value)
|
7
|
+
if association_or_value.respond_to?(:loaded?) && association_or_value.loaded?
|
8
|
+
association_or_value = association_or_value.target.reject(&:marked_for_destruction?)
|
9
|
+
end
|
10
|
+
super
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
module ClassMethods
|
15
|
+
# Validates that the specified attributes match the length restrictions supplied.
|
16
|
+
# If the attribute is an association, records that are marked for destruction are not counted.
|
17
|
+
#
|
18
|
+
# See ActiveModel::Validations::HelperMethods.validates_length_of for more information.
|
19
|
+
def validates_length_of(*attr_names)
|
20
|
+
validates_with LengthValidator, _merge_attributes(attr_names)
|
21
|
+
end
|
22
|
+
|
23
|
+
alias_method :validates_size_of, :validates_length_of
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -1,17 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Validations
|
3
5
|
class PresenceValidator < ActiveModel::Validations::PresenceValidator # :nodoc:
|
4
|
-
def
|
5
|
-
|
6
|
-
|
7
|
-
next unless record.class._reflect_on_association(attribute)
|
8
|
-
associated_records = Array.wrap(record.send(attribute))
|
9
|
-
|
10
|
-
# Superclass validates presence. Ensure present records aren't about to be destroyed.
|
11
|
-
if associated_records.present? && associated_records.all? { |r| r.marked_for_destruction? }
|
12
|
-
record.errors.add(attribute, :blank, options)
|
13
|
-
end
|
6
|
+
def validate_each(record, attribute, association_or_value)
|
7
|
+
if record.class._reflect_on_association(attribute)
|
8
|
+
association_or_value = Array.wrap(association_or_value).reject(&:marked_for_destruction?)
|
14
9
|
end
|
10
|
+
super
|
15
11
|
end
|
16
12
|
end
|
17
13
|
|
@@ -36,16 +32,21 @@ module ActiveRecord
|
|
36
32
|
# This is due to the way Object#blank? handles boolean values:
|
37
33
|
# <tt>false.blank? # => true</tt>.
|
38
34
|
#
|
39
|
-
# This validator defers to the
|
35
|
+
# This validator defers to the Active Model validation for presence, adding the
|
40
36
|
# check to see that an associated object is not marked for destruction. This
|
41
37
|
# prevents the parent object from validating successfully and saving, which then
|
42
38
|
# deletes the associated object, thus putting the parent object into an invalid
|
43
39
|
# state.
|
44
40
|
#
|
41
|
+
# NOTE: This validation will not fail while using it with an association
|
42
|
+
# if the latter was assigned but not valid. If you want to ensure that
|
43
|
+
# it is both present and valid, you also need to use
|
44
|
+
# {validates_associated}[rdoc-ref:Validations::ClassMethods#validates_associated].
|
45
|
+
#
|
45
46
|
# Configuration options:
|
46
47
|
# * <tt>:message</tt> - A custom error message (default is: "can't be blank").
|
47
48
|
# * <tt>:on</tt> - Specifies the contexts where this validation is active.
|
48
|
-
# Runs in all validation contexts by default
|
49
|
+
# Runs in all validation contexts by default +nil+. You can pass a symbol
|
49
50
|
# or an array of symbols. (e.g. <tt>on: :create</tt> or
|
50
51
|
# <tt>on: :custom_validation_context</tt> or
|
51
52
|
# <tt>on: [:create, :custom_validation_context]</tt>)
|
@@ -58,7 +59,7 @@ module ActiveRecord
|
|
58
59
|
# or <tt>unless: Proc.new { |user| user.signup_step <= 2 }</tt>). The method,
|
59
60
|
# proc or string should return or evaluate to a +true+ or +false+ value.
|
60
61
|
# * <tt>:strict</tt> - Specifies whether validation should be strict.
|
61
|
-
# See
|
62
|
+
# See ActiveModel::Validations#validates! for more information.
|
62
63
|
def validates_presence_of(*attr_names)
|
63
64
|
validates_with PresenceValidator, _merge_attributes(attr_names)
|
64
65
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Validations
|
3
5
|
class UniquenessValidator < ActiveModel::EachValidator # :nodoc:
|
@@ -6,19 +8,27 @@ module ActiveRecord
|
|
6
8
|
raise ArgumentError, "#{options[:conditions]} was passed as :conditions but is not callable. " \
|
7
9
|
"Pass a callable instead: `conditions: -> { where(approved: true) }`"
|
8
10
|
end
|
9
|
-
|
11
|
+
unless Array(options[:scope]).all? { |scope| scope.respond_to?(:to_sym) }
|
12
|
+
raise ArgumentError, "#{options[:scope]} is not supported format for :scope option. " \
|
13
|
+
"Pass a symbol or an array of symbols instead: `scope: :user_id`"
|
14
|
+
end
|
15
|
+
super
|
10
16
|
@klass = options[:class]
|
11
17
|
end
|
12
18
|
|
13
19
|
def validate_each(record, attribute, value)
|
14
20
|
finder_class = find_finder_class_for(record)
|
15
|
-
table = finder_class.arel_table
|
16
21
|
value = map_enum_attribute(finder_class, attribute, value)
|
17
22
|
|
18
|
-
relation = build_relation(finder_class,
|
19
|
-
|
20
|
-
|
21
|
-
|
23
|
+
relation = build_relation(finder_class, attribute, value)
|
24
|
+
if record.persisted?
|
25
|
+
if finder_class.primary_key
|
26
|
+
relation = relation.where.not(finder_class.primary_key => record.id_in_database)
|
27
|
+
else
|
28
|
+
raise UnknownPrimaryKey.new(finder_class, "Cannot validate uniqueness for persisted record without primary key.")
|
29
|
+
end
|
30
|
+
end
|
31
|
+
relation = scope_relation(record, relation)
|
22
32
|
relation = relation.merge(options[:conditions]) if options[:conditions]
|
23
33
|
|
24
34
|
if relation.exists?
|
@@ -29,13 +39,13 @@ module ActiveRecord
|
|
29
39
|
end
|
30
40
|
end
|
31
41
|
|
32
|
-
|
42
|
+
private
|
33
43
|
# The check for an existing value should be run from a class that
|
34
44
|
# isn't abstract. This means working down from the current class
|
35
45
|
# (self), to the first non-abstract class. Since classes don't know
|
36
46
|
# their subclasses, we have to build the hierarchy between self and
|
37
47
|
# the record's class.
|
38
|
-
def find_finder_class_for(record)
|
48
|
+
def find_finder_class_for(record)
|
39
49
|
class_hierarchy = [record.class]
|
40
50
|
|
41
51
|
while class_hierarchy.first != @klass
|
@@ -45,43 +55,32 @@ module ActiveRecord
|
|
45
55
|
class_hierarchy.detect { |klass| !klass.abstract_class? }
|
46
56
|
end
|
47
57
|
|
48
|
-
def build_relation(klass,
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
end
|
53
|
-
|
54
|
-
attribute_name = attribute.to_s
|
55
|
-
|
56
|
-
# the attribute may be an aliased attribute
|
57
|
-
if klass.attribute_aliases[attribute_name]
|
58
|
-
attribute = klass.attribute_aliases[attribute_name]
|
59
|
-
attribute_name = attribute.to_s
|
60
|
-
end
|
58
|
+
def build_relation(klass, attribute, value)
|
59
|
+
relation = klass.unscoped
|
60
|
+
comparison = relation.bind_attribute(attribute, value) do |attr, bind|
|
61
|
+
return relation.none! if bind.unboundable?
|
61
62
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
63
|
+
if !options.key?(:case_sensitive) || bind.nil?
|
64
|
+
klass.connection.default_uniqueness_comparison(attr, bind, klass)
|
65
|
+
elsif options[:case_sensitive]
|
66
|
+
klass.connection.case_sensitive_comparison(attr, bind)
|
67
|
+
else
|
68
|
+
# will use SQL LOWER function before comparison, unless it detects a case insensitive collation
|
69
|
+
klass.connection.case_insensitive_comparison(attr, bind)
|
70
|
+
end
|
66
71
|
end
|
67
72
|
|
68
|
-
|
69
|
-
# will use SQL LOWER function before comparison, unless it detects a case insensitive collation
|
70
|
-
klass.connection.case_insensitive_comparison(table, attribute, column, value)
|
71
|
-
else
|
72
|
-
klass.connection.case_sensitive_comparison(table, attribute, column, value)
|
73
|
-
end
|
73
|
+
relation.where!(comparison)
|
74
74
|
end
|
75
75
|
|
76
|
-
def scope_relation(record,
|
76
|
+
def scope_relation(record, relation)
|
77
77
|
Array(options[:scope]).each do |scope_item|
|
78
|
-
|
79
|
-
|
80
|
-
scope_item = reflection.foreign_key
|
78
|
+
scope_value = if record.class._reflect_on_association(scope_item)
|
79
|
+
record.association(scope_item).reader
|
81
80
|
else
|
82
|
-
|
81
|
+
record._read_attribute(scope_item)
|
83
82
|
end
|
84
|
-
relation = relation.
|
83
|
+
relation = relation.where(scope_item => scope_value)
|
85
84
|
end
|
86
85
|
|
87
86
|
relation
|
@@ -159,7 +158,8 @@ module ActiveRecord
|
|
159
158
|
#
|
160
159
|
# === Concurrency and integrity
|
161
160
|
#
|
162
|
-
# Using this validation method in conjunction with
|
161
|
+
# Using this validation method in conjunction with
|
162
|
+
# {ActiveRecord::Base#save}[rdoc-ref:Persistence#save]
|
163
163
|
# does not guarantee the absence of duplicate record insertions, because
|
164
164
|
# uniqueness checks on the application level are inherently prone to race
|
165
165
|
# conditions. For example, suppose that two users try to post a Comment at
|
@@ -193,21 +193,19 @@ module ActiveRecord
|
|
193
193
|
# | # Boom! We now have a duplicate
|
194
194
|
# | # title!
|
195
195
|
#
|
196
|
-
#
|
197
|
-
#
|
198
|
-
#
|
199
|
-
# ActiveRecord::ConnectionAdapters::SchemaStatements#add_index. In the
|
200
|
-
# rare case that a race condition occurs, the database will guarantee
|
196
|
+
# The best way to work around this problem is to add a unique index to the database table using
|
197
|
+
# {connection.add_index}[rdoc-ref:ConnectionAdapters::SchemaStatements#add_index].
|
198
|
+
# In the rare case that a race condition occurs, the database will guarantee
|
201
199
|
# the field's uniqueness.
|
202
200
|
#
|
203
201
|
# When the database catches such a duplicate insertion,
|
204
|
-
# ActiveRecord::Base#save will raise an ActiveRecord::StatementInvalid
|
202
|
+
# {ActiveRecord::Base#save}[rdoc-ref:Persistence#save] will raise an ActiveRecord::StatementInvalid
|
205
203
|
# exception. You can either choose to let this error propagate (which
|
206
204
|
# will result in the default Rails exception page being shown), or you
|
207
205
|
# can catch it and restart the transaction (e.g. by telling the user
|
208
206
|
# that the title already exists, and asking them to re-enter the title).
|
209
207
|
# This technique is also known as
|
210
|
-
# {optimistic concurrency control}[
|
208
|
+
# {optimistic concurrency control}[https://en.wikipedia.org/wiki/Optimistic_concurrency_control].
|
211
209
|
#
|
212
210
|
# The bundled ActiveRecord::ConnectionAdapters distinguish unique index
|
213
211
|
# constraint errors from other types of database errors by throwing an
|
@@ -217,7 +215,6 @@ module ActiveRecord
|
|
217
215
|
#
|
218
216
|
# The following bundled adapters throw the ActiveRecord::RecordNotUnique exception:
|
219
217
|
#
|
220
|
-
# * ActiveRecord::ConnectionAdapters::MysqlAdapter.
|
221
218
|
# * ActiveRecord::ConnectionAdapters::Mysql2Adapter.
|
222
219
|
# * ActiveRecord::ConnectionAdapters::SQLite3Adapter.
|
223
220
|
# * ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.
|
@@ -1,8 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
|
-
# = Active Record RecordInvalid
|
4
|
+
# = Active Record \RecordInvalid
|
3
5
|
#
|
4
|
-
# Raised by
|
5
|
-
#
|
6
|
+
# Raised by {ActiveRecord::Base#save!}[rdoc-ref:Persistence#save!] and
|
7
|
+
# {ActiveRecord::Base#create!}[rdoc-ref:Persistence::ClassMethods#create!] when the record is invalid.
|
8
|
+
# Use the #record method to retrieve the record which did not validate.
|
6
9
|
#
|
7
10
|
# begin
|
8
11
|
# complex_operation_that_internally_calls_save!
|
@@ -12,74 +15,72 @@ module ActiveRecord
|
|
12
15
|
class RecordInvalid < ActiveRecordError
|
13
16
|
attr_reader :record
|
14
17
|
|
15
|
-
def initialize(record)
|
16
|
-
|
17
|
-
|
18
|
-
|
18
|
+
def initialize(record = nil)
|
19
|
+
if record
|
20
|
+
@record = record
|
21
|
+
errors = @record.errors.full_messages.join(", ")
|
22
|
+
message = I18n.t(:"#{@record.class.i18n_scope}.errors.messages.record_invalid", errors: errors, default: :"errors.messages.record_invalid")
|
23
|
+
else
|
24
|
+
message = "Record invalid"
|
25
|
+
end
|
26
|
+
|
27
|
+
super(message)
|
19
28
|
end
|
20
29
|
end
|
21
30
|
|
22
|
-
# = Active Record Validations
|
31
|
+
# = Active Record \Validations
|
23
32
|
#
|
24
|
-
# Active Record includes the majority of its validations from
|
33
|
+
# Active Record includes the majority of its validations from ActiveModel::Validations
|
25
34
|
# all of which accept the <tt>:on</tt> argument to define the context where the
|
26
35
|
# validations are active. Active Record will always supply either the context of
|
27
36
|
# <tt>:create</tt> or <tt>:update</tt> dependent on whether the model is a
|
28
|
-
#
|
37
|
+
# {new_record?}[rdoc-ref:Persistence#new_record?].
|
29
38
|
module Validations
|
30
39
|
extend ActiveSupport::Concern
|
31
40
|
include ActiveModel::Validations
|
32
41
|
|
33
42
|
# The validation process on save can be skipped by passing <tt>validate: false</tt>.
|
34
|
-
# The
|
35
|
-
#
|
36
|
-
|
43
|
+
# The validation context can be changed by passing <tt>context: context</tt>.
|
44
|
+
# The regular {ActiveRecord::Base#save}[rdoc-ref:Persistence#save] method is replaced
|
45
|
+
# with this when the validations module is mixed in, which it is by default.
|
46
|
+
def save(**options)
|
37
47
|
perform_validations(options) ? super : false
|
38
48
|
end
|
39
49
|
|
40
|
-
# Attempts to save the record just like Base#save but
|
41
|
-
# exception instead of returning +false+ if the record is not valid.
|
42
|
-
def save!(options
|
43
|
-
perform_validations(options) ? super :
|
50
|
+
# Attempts to save the record just like {ActiveRecord::Base#save}[rdoc-ref:Base#save] but
|
51
|
+
# will raise an ActiveRecord::RecordInvalid exception instead of returning +false+ if the record is not valid.
|
52
|
+
def save!(**options)
|
53
|
+
perform_validations(options) ? super : raise_validation_error
|
44
54
|
end
|
45
55
|
|
46
56
|
# Runs all the validations within the specified context. Returns +true+ if
|
47
57
|
# no errors are found, +false+ otherwise.
|
48
58
|
#
|
49
|
-
# Aliased as validate.
|
59
|
+
# Aliased as #validate.
|
50
60
|
#
|
51
61
|
# If the argument is +false+ (default is +nil+), the context is set to <tt>:create</tt> if
|
52
|
-
#
|
62
|
+
# {new_record?}[rdoc-ref:Persistence#new_record?] is +true+, and to <tt>:update</tt> if it is not.
|
53
63
|
#
|
54
|
-
# Validations with no <tt>:on</tt> option will run no matter the context. Validations with
|
64
|
+
# \Validations with no <tt>:on</tt> option will run no matter the context. \Validations with
|
55
65
|
# some <tt>:on</tt> option will only run in the specified context.
|
56
66
|
def valid?(context = nil)
|
57
|
-
context ||=
|
67
|
+
context ||= default_validation_context
|
58
68
|
output = super(context)
|
59
69
|
errors.empty? && output
|
60
70
|
end
|
61
71
|
|
62
72
|
alias_method :validate, :valid?
|
63
73
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
# If the argument is +false+ (default is +nil+), the context is set to <tt>:create</tt> if
|
68
|
-
# <tt>new_record?</tt> is +true+, and to <tt>:update</tt> if it is not.
|
69
|
-
#
|
70
|
-
# Validations with no <tt>:on</tt> option will run no matter the context. Validations with
|
71
|
-
# some <tt>:on</tt> option will only run in the specified context.
|
72
|
-
def validate!(context = nil)
|
73
|
-
valid?(context) || raise_record_invalid
|
74
|
+
private
|
75
|
+
def default_validation_context
|
76
|
+
new_record? ? :create : :update
|
74
77
|
end
|
75
78
|
|
76
|
-
|
77
|
-
|
78
|
-
def raise_record_invalid
|
79
|
+
def raise_validation_error
|
79
80
|
raise(RecordInvalid.new(self))
|
80
81
|
end
|
81
82
|
|
82
|
-
def perform_validations(options={})
|
83
|
+
def perform_validations(options = {})
|
83
84
|
options[:validate] == false || valid?(options[:context])
|
84
85
|
end
|
85
86
|
end
|
@@ -88,3 +89,5 @@ end
|
|
88
89
|
require "active_record/validations/associated"
|
89
90
|
require "active_record/validations/uniqueness"
|
90
91
|
require "active_record/validations/presence"
|
92
|
+
require "active_record/validations/absence"
|
93
|
+
require "active_record/validations/length"
|
data/lib/active_record.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
#--
|
2
|
-
# Copyright (c) 2004-
|
4
|
+
# Copyright (c) 2004-2019 David Heinemeier Hansson
|
3
5
|
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
5
7
|
# a copy of this software and associated documentation files (the
|
@@ -21,18 +23,19 @@
|
|
21
23
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
24
|
#++
|
23
25
|
|
24
|
-
require
|
25
|
-
require
|
26
|
-
require
|
27
|
-
require
|
26
|
+
require "active_support"
|
27
|
+
require "active_support/rails"
|
28
|
+
require "active_model"
|
29
|
+
require "arel"
|
30
|
+
require "yaml"
|
28
31
|
|
29
|
-
require
|
30
|
-
require
|
32
|
+
require "active_record/version"
|
33
|
+
require "active_model/attribute_set"
|
31
34
|
|
32
35
|
module ActiveRecord
|
33
36
|
extend ActiveSupport::Autoload
|
34
37
|
|
35
|
-
autoload :
|
38
|
+
autoload :AdvisoryLockBase
|
36
39
|
autoload :Base
|
37
40
|
autoload :Callbacks
|
38
41
|
autoload :Core
|
@@ -40,18 +43,21 @@ module ActiveRecord
|
|
40
43
|
autoload :CounterCache
|
41
44
|
autoload :DynamicMatchers
|
42
45
|
autoload :Enum
|
46
|
+
autoload :InternalMetadata
|
43
47
|
autoload :Explain
|
44
48
|
autoload :Inheritance
|
45
49
|
autoload :Integration
|
46
50
|
autoload :Migration
|
47
|
-
autoload :Migrator,
|
51
|
+
autoload :Migrator, "active_record/migration"
|
48
52
|
autoload :ModelSchema
|
49
53
|
autoload :NestedAttributes
|
50
54
|
autoload :NoTouching
|
55
|
+
autoload :TouchLater
|
51
56
|
autoload :Persistence
|
52
57
|
autoload :QueryCache
|
53
58
|
autoload :Querying
|
54
59
|
autoload :ReadonlyAttributes
|
60
|
+
autoload :RecordInvalid, "active_record/validations"
|
55
61
|
autoload :Reflection
|
56
62
|
autoload :RuntimeRegistry
|
57
63
|
autoload :Sanitization
|
@@ -62,15 +68,18 @@ module ActiveRecord
|
|
62
68
|
autoload :Serialization
|
63
69
|
autoload :StatementCache
|
64
70
|
autoload :Store
|
71
|
+
autoload :Suppressor
|
65
72
|
autoload :Timestamp
|
66
73
|
autoload :Transactions
|
67
74
|
autoload :Translation
|
68
75
|
autoload :Validations
|
76
|
+
autoload :SecureToken
|
77
|
+
autoload :DatabaseSelector, "active_record/middleware/database_selector"
|
69
78
|
|
70
79
|
eager_autoload do
|
71
|
-
autoload :ActiveRecordError,
|
72
|
-
autoload :ConnectionNotEstablished,
|
73
|
-
autoload :ConnectionAdapters,
|
80
|
+
autoload :ActiveRecordError, "active_record/errors"
|
81
|
+
autoload :ConnectionNotEstablished, "active_record/errors"
|
82
|
+
autoload :ConnectionAdapters, "active_record/connection_adapters/abstract_adapter"
|
74
83
|
|
75
84
|
autoload :Aggregations
|
76
85
|
autoload :Associations
|
@@ -78,11 +87,13 @@ module ActiveRecord
|
|
78
87
|
autoload :AttributeMethods
|
79
88
|
autoload :AutosaveAssociation
|
80
89
|
|
90
|
+
autoload :LegacyYamlAdapter
|
91
|
+
|
81
92
|
autoload :Relation
|
82
93
|
autoload :AssociationRelation
|
83
94
|
autoload :NullRelation
|
84
95
|
|
85
|
-
autoload_under
|
96
|
+
autoload_under "relation" do
|
86
97
|
autoload :QueryMethods
|
87
98
|
autoload :FinderMethods
|
88
99
|
autoload :Calculations
|
@@ -93,11 +104,13 @@ module ActiveRecord
|
|
93
104
|
end
|
94
105
|
|
95
106
|
autoload :Result
|
107
|
+
autoload :TableMetadata
|
108
|
+
autoload :Type
|
96
109
|
end
|
97
110
|
|
98
111
|
module Coders
|
99
|
-
autoload :YAMLColumn,
|
100
|
-
autoload :JSON,
|
112
|
+
autoload :YAMLColumn, "active_record/coders/yaml_column"
|
113
|
+
autoload :JSON, "active_record/coders/json"
|
101
114
|
end
|
102
115
|
|
103
116
|
module AttributeMethods
|
@@ -129,7 +142,6 @@ module ActiveRecord
|
|
129
142
|
|
130
143
|
eager_autoload do
|
131
144
|
autoload :AbstractAdapter
|
132
|
-
autoload :ConnectionManagement, "active_record/connection_adapters/abstract/connection_pool"
|
133
145
|
end
|
134
146
|
end
|
135
147
|
|
@@ -142,17 +154,24 @@ module ActiveRecord
|
|
142
154
|
end
|
143
155
|
end
|
144
156
|
|
157
|
+
module Middleware
|
158
|
+
extend ActiveSupport::Autoload
|
159
|
+
|
160
|
+
autoload :DatabaseSelector, "active_record/middleware/database_selector"
|
161
|
+
end
|
162
|
+
|
145
163
|
module Tasks
|
146
164
|
extend ActiveSupport::Autoload
|
147
165
|
|
148
166
|
autoload :DatabaseTasks
|
149
|
-
autoload :SQLiteDatabaseTasks,
|
150
|
-
autoload :MySQLDatabaseTasks,
|
167
|
+
autoload :SQLiteDatabaseTasks, "active_record/tasks/sqlite_database_tasks"
|
168
|
+
autoload :MySQLDatabaseTasks, "active_record/tasks/mysql_database_tasks"
|
151
169
|
autoload :PostgreSQLDatabaseTasks,
|
152
|
-
|
170
|
+
"active_record/tasks/postgresql_database_tasks"
|
153
171
|
end
|
154
172
|
|
155
|
-
autoload :
|
173
|
+
autoload :TestDatabases, "active_record/test_databases"
|
174
|
+
autoload :TestFixtures, "active_record/fixtures"
|
156
175
|
|
157
176
|
def self.eager_load!
|
158
177
|
super
|
@@ -169,5 +188,9 @@ ActiveSupport.on_load(:active_record) do
|
|
169
188
|
end
|
170
189
|
|
171
190
|
ActiveSupport.on_load(:i18n) do
|
172
|
-
I18n.load_path << File.
|
191
|
+
I18n.load_path << File.expand_path("active_record/locale/en.yml", __dir__)
|
173
192
|
end
|
193
|
+
|
194
|
+
YAML.load_tags["!ruby/object:ActiveRecord::AttributeSet"] = "ActiveModel::AttributeSet"
|
195
|
+
YAML.load_tags["!ruby/object:ActiveRecord::Attribute::FromDatabase"] = "ActiveModel::Attribute::FromDatabase"
|
196
|
+
YAML.load_tags["!ruby/object:ActiveRecord::LazyAttributeHash"] = "ActiveModel::LazyAttributeHash"
|