rails/activerecord/lib/active_record
kennyj 1e417d5cd2 Some refactor for association.
* Remove unused association_class method.
* Remove a unnecessary assignment.
* Move @updated to BelongsToAssociation that only reference this instance variable.
* Reset @stale_state at the reset method. I think this place is right place.
2012-04-12 23:28:31 +09:00
..
associations Some refactor for association. 2012-04-12 23:28:31 +09:00
attribute_methods recurse in read_attribute we get caching / don't duplicate code 2012-03-30 11:09:27 +01:00
coders ActiveRecord::Coders::YAMLColumn#dump should raise an error 2012-03-26 21:57:39 +02:00
connection_adapters Fix delete_all when chained with joins. 2012-04-10 23:45:01 -03:00
fixtures No need to require psych since require yaml does that. 2012-01-04 14:29:13 -03:00
locale Fix typo 2012-02-01 17:14:00 -02:00
locking clear up duplication between Persistence#destroy and Locking#destroy 2012-03-30 14:39:55 +01:00
migration Add create_join_table migration helper to create HABTM join tables 2012-01-27 15:34:53 -02:00
railties Fix GH #5435. db:structure:dump should be reenable. 2012-03-17 13:57:10 +09:00
relation move apply_finder_options to active_record_deprecated_finders 2012-04-12 15:02:00 +01:00
scoping Corrected grammatical errors in schema_dumper and scoping/default 2012-04-10 22:05:43 -07:00
serializers no need to check for this constant 2012-02-07 21:20:35 +01:00
validations Correct grammar in documentation 2012-03-07 16:36:03 +01:00
aggregations.rb Fixed typo in composed_of example with Money#<=>, was comparing amount itself instead of other_money.amount 2012-02-24 13:55:24 -06:00
associations.rb added clarification stating the counter_cache attribute needs to be created on the associate class via a migration 2012-03-11 06:30:06 +03:00
attribute_assignment.rb Split out most of the AR::Base code into separate modules 🍰 2011-12-15 20:45:37 +00:00
attribute_methods.rb much code can be deleted thanks to @tenderlove's refactoring 2012-03-28 16:38:38 +01:00
autosave_association.rb Merge pull request #3329 from armstrjare/autosave_collection_new_record_bug 2012-03-18 04:13:28 -07:00
base.rb fix markup error [ci skip] 2012-04-08 02:13:51 +05:30
callbacks.rb Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -03:00
connection_handling.rb removes verify_active_connections! 2012-02-24 09:11:59 -08:00
core.rb Removes caching from ActiveRecord::Core::ClassMethods#relation 2012-04-03 17:00:37 +02:00
counter_cache.rb Remove IdentityMap 2012-03-13 20:08:54 -03:00
dynamic_finder_match.rb Add dynamic find_or_create_by_{attribute}! method. 2012-03-12 14:16:19 +00:00
dynamic_matchers.rb Refactor and cleanup in some ActiveRecord modules 2012-03-03 04:09:50 -03:00
dynamic_scope_match.rb Refactor and cleanup in some ActiveRecord modules 2012-03-03 04:09:50 -03:00
errors.rb Consider attempted action in exception message of ActiveRecord::StaleObjectError 2011-10-14 18:20:41 +02:00
explain_subscriber.rb let automatic EXPLAIN ignore CACHE notifications 2012-02-03 16:10:39 -08:00
explain.rb disable automatic explain if there is no logger [closes #4671] 2012-01-26 02:50:46 -08:00
fixtures.rb properly namespace the fixture exception 2012-03-22 16:25:48 -07:00
inheritance.rb Adding documentation for ActiveRecord::Base.abstract_class to clarify a particular usecase for this feature (to allow you to use inheritance in ActiveRecord without using the STI table name 2012-03-22 10:02:08 -05:00
integration.rb Split out most of the AR::Base code into separate modules 🍰 2011-12-15 20:45:37 +00:00
log_subscriber.rb implements a much faster auto EXPLAIN, closes #3843 [José Valim & Xavier Noria] 2011-12-04 11:52:12 -08:00
migration.rb moving verbosity tests to the migrator test, removing ddl changes 2012-01-16 11:28:00 -08:00
model_schema.rb Don't reset inheritance_column when setting explicitly. 2012-03-08 00:00:58 +09:00
model.rb Remove IdentityMap 2012-03-13 20:08:54 -03:00
nested_attributes.rb Nested attribute setters can be overridden. 2012-03-28 19:08:31 -04:00
null_relation.rb Override AR::Relation methods in NullRelation. 2012-04-11 15:24:23 +02:00
observer.rb Allow ActiveRecord observers to be disabled. 2011-08-12 20:48:44 -07:00
persistence.rb clear up duplication between Persistence#destroy and Locking#destroy 2012-03-30 14:39:55 +01:00
query_cache.rb use Rack::BodyProxy in activerecord middlewares 2012-01-16 14:36:41 +03:00
querying.rb Add Relation#find_by and Relation#find_by! 2012-03-30 12:52:29 +01:00
railtie.rb DATABASE_URL allows omission of database.yml 2012-04-03 15:57:01 -07:00
readonly_attributes.rb Support configuration on ActiveRecord::Model. 2011-12-28 18:27:41 +00:00
reflection.rb Refactor and cleanup in some ActiveRecord modules 2012-03-03 04:09:50 -03:00
relation.rb Fix delete_all when chained with joins. 2012-04-10 23:45:01 -03:00
result.rb moving column types to an ivar on the result 2012-02-07 13:51:53 -08:00
sanitization.rb Refactor and cleanup in some ActiveRecord modules 2012-03-03 04:09:50 -03:00
schema_dumper.rb Corrected grammatical errors in schema_dumper and scoping/default 2012-04-10 22:05:43 -07:00
schema_migration.rb allow mass-assign version attribute in AR::SchemaMigration 2012-02-06 09:33:02 +03:00
schema.rb Allow to run migrations from more than one directory 2010-12-09 00:04:36 +01:00
scoping.rb Move DefaultScope and NamedScope under Scoping 2011-12-15 20:45:42 +00:00
serialization.rb Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -03:00
session_store.rb test a subclass so that the removed method does not imact other tests 2012-01-05 17:05:43 -08:00
store.rb Merge pull request #4856 from ihid/store_null_bug 2012-02-02 12:07:28 -08:00
test_case.rb Remove IdentityMap 2012-03-13 20:08:54 -03:00
timestamp.rb Support configuration on ActiveRecord::Model. 2011-12-28 18:27:41 +00:00
transactions.rb Remove IdentityMap 2012-03-13 20:08:54 -03:00
translation.rb Split out most of the AR::Base code into separate modules 🍰 2011-12-15 20:45:37 +00:00
validations.rb Allow translations of activerecord.errors.messages.record_invalid to be looked up in errors.messages.record_invalid 2012-03-05 00:17:47 +01:00
version.rb rails/master is now 4.0.0.beta and will only support Ruby 1.9.3+ 2011-12-20 09:30:37 -06:00