rails/activerecord/lib/active_record
Rafael Mendonça França 6f6c2909dc Fix delete_all when chained with joins.
Closes #5202 and #919
2012-04-10 23:45:01 -03:00
..
associations Fix #5667. Preloading should ignore scoping. 2012-03-30 16:19:32 +01: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 Add Relation#find_by and Relation#find_by! 2012-03-30 12:52:29 +01:00
scoping Removes caching from ActiveRecord::Core::ClassMethods#relation 2012-04-03 17:00:37 +02: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
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 Added none query method to return zero records. 2012-01-31 19:50:09 +01:00
observer.rb
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 Merge pull request #2621 from icco/master 2012-03-26 17:24:48 -07:00
schema_migration.rb allow mass-assign version attribute in AR::SchemaMigration 2012-02-06 09:33:02 +03:00
schema.rb
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