1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/active_record
2012-01-21 20:07:12 +09:00
..
associations Deprecate inferred JOINs with includes + SQL snippets. 2012-01-16 21:32:12 +00:00
attribute_methods Revert "just use an alias. The target method is public, so make this one public" 2012-01-20 09:33:58 -08:00
coders Make serialized columns with explicit object_type return a new instance of the object instead of nil 2011-02-03 09:08:45 -08:00
connection_adapters avoid useless is_a checks 2012-01-19 14:39:13 -08:00
fixtures No need to require psych since require yaml does that. 2012-01-04 14:29:13 -03:00
locale
locking Add ActiveRecord::Base#with_lock 2012-01-18 23:23:41 +01:00
migration Fix GH #4285. Remove options when we record calling creat_table 2012-01-04 10:25:15 +09:00
railties fixes in api docs 2012-01-13 00:41:12 +05:30
relation select doesn't take multiple arguments - fixes #4539 [ci skip] 2012-01-19 21:53:37 +05:30
scoping app code in general wants Time.current, not Time.now 2011-12-28 23:47:10 +01:00
serializers Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -03:00
validations validate related records in the same validation context as parent. 2012-01-17 01:40:17 -03:00
aggregations.rb minor fixes in the composed_of doc 2011-10-22 23:53:52 +05:30
associations.rb removed unnecessary require for activesupport/core_ext/array/wrap 2012-01-07 00:30:01 +05:30
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 Fix another race condition. 2012-01-20 18:32:27 +00:00
autosave_association.rb validate related records in the same validation context as parent. 2012-01-17 01:40:17 -03:00
base.rb deleted duplicated line 2012-01-05 11:33:13 -05:00
callbacks.rb Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -03:00
connection_handling.rb Delegate clear_active_connections to handler as well 2012-01-14 17:34:21 -02:00
core.rb change AR default_timezone to :utc since it's the default for AR::Railtie 2012-01-21 20:07:12 +09:00
counter_cache.rb Fix bug where reset_counters resets the wrong counter cache. 2012-01-16 19:06:45 -08:00
dynamic_finder_match.rb
dynamic_matchers.rb Split out most of the AR::Base code into separate modules 🍰 2011-12-15 20:45:37 +00:00
dynamic_scope_match.rb
errors.rb Consider attempted action in exception message of ActiveRecord::StaleObjectError 2011-10-14 18:20:41 +02:00
explain.rb Support configuration on ActiveRecord::Model. 2011-12-28 18:27:41 +00:00
explain_subscriber.rb moves some auto explain logic to the subscriber [José Valim & Xavier Noria] 2011-12-04 13:53:26 -08:00
fixtures.rb Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -03:00
identity_map.rb use Rack::BodyProxy in activerecord middlewares 2012-01-16 14:36:41 +03:00
inheritance.rb Support establishing connection on ActiveRecord::Model. 2011-12-28 18:27:41 +00: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.rb Delete some stray lines 2011-12-28 18:44:15 +00:00
model_schema.rb Fix table_name in ActiveRecord with more than one abstract ancestors 2012-01-12 20:39:12 +01:00
nested_attributes.rb Array.wrap is an overhead as there is already check for class 2012-01-06 17:02:17 +03:00
observer.rb Allow ActiveRecord observers to be disabled. 2011-08-12 20:48:44 -07:00
persistence.rb Clarify what persisted? returns. 2011-12-25 15:41:50 +02:00
query_cache.rb use Rack::BodyProxy in activerecord middlewares 2012-01-16 14:36:41 +03:00
querying.rb Add ActiveRecord::Relation#references (#950) 2012-01-16 21:17:17 +00:00
railtie.rb pushed broadcasting down to a module 2012-01-20 14:18:29 -08:00
readonly_attributes.rb Support configuration on ActiveRecord::Model. 2011-12-28 18:27:41 +00:00
reflection.rb no need for extra method calls inside the framework 2012-01-09 14:38:21 -08:00
relation.rb Deprecate inferred JOINs with includes + SQL snippets. 2012-01-16 21:32:12 +00:00
result.rb Remove extra white spaces on ActiveRecord docs. 2011-05-23 20:58:25 -03:00
sanitization.rb Split out most of the AR::Base code into separate modules 🍰 2011-12-15 20:45:37 +00:00
schema.rb Allow to run migrations from more than one directory 2010-12-09 00:04:36 +01:00
schema_dumper.rb just use the list of formatting keys we care about 2012-01-04 17:10:13 -08:00
schema_migration.rb make sure the migration table is alive and empty 2012-01-13 16:09:47 -08: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 Fix that changing a store should mark the store attribute as changed 2011-10-25 17:22:52 -05:00
test_case.rb Revert "active record base class test case should not be public" 2012-01-05 12:44:05 -02:00
timestamp.rb Support configuration on ActiveRecord::Model. 2011-12-28 18:27:41 +00:00
transactions.rb Remove Array.wrap calls in ActiveRecord 2012-01-06 01:04:33 -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 Remove extra white spaces on ActiveRecord docs. 2011-05-23 20:58:25 -03: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