Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move predicate building to a stand alone PredicateBuilder class | Pratik Naik | 2010-01-01 | 1 | -0/+1 |
| | |||||
* | Fix up AR extension by using Railties module instead of Rails and requiring ↵ | Jeremy Kemper | 2009-12-30 | 1 | -1/+0 |
| | | | | ControllerRuntime at initialization time instead of boot | ||||
* | Organize Relation methods into separate modules | Pratik Naik | 2009-12-30 | 1 | -1/+8 |
| | |||||
* | Move Relation calculation methods to a separate module | Pratik Naik | 2009-12-28 | 1 | -0/+1 |
| | |||||
* | Remove ActiveRecord runtime logging from ActionPack and place in ↵ | José Valim | 2009-12-27 | 1 | -0/+1 |
| | | | | ActiveRecord, adding it through config.action_controller.include hook. | ||||
* | Flip deferrable autoload convention | Joshua Peek | 2009-12-22 | 1 | -52/+64 |
| | |||||
* | Fully expand relative rails framework paths and make sure we aren't | Joshua Peek | 2009-12-16 | 1 | -7/+8 |
| | | | | adding any to the load path more than once. | ||||
* | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -47/+53 |
| | | | | | | | | | | | | | | | | | | | | | * A new module (ActiveSupport::Autoload) is provide that extends autoloading with new behavior. * All autoloads in modules that have extended ActiveSupport::Autoload will be eagerly required in threadsafe environments * Autoloads can optionally leave off the path if the path is the same as full_constant_name.underscore * It is possible to specify that a group of autoloads live under an additional path. For instance, all of ActionDispatch's middlewares are ActionDispatch::MiddlewareName, but they live under "action_dispatch/middlewares/middleware_name" * It is possible to specify that a group of autoloads are all found at the same path. For instance, a number of exceptions might all be declared there. * One consequence of this is that testing-related constants are not autoloaded. To get the testing helpers for a given component, require "component_name/test_case". For instance, "action_controller/test_case". * test_help.rb, which is automatically required by a Rails application's test helper, requires the test_case.rb for all active components, so this change will not be disruptive in existing or new applications. | ||||
* | Move validator, human_name and human_attribute_name to ActiveModel, remove ↵ | José Valim | 2009-10-20 | 1 | -1/+0 |
| | | | | | | deprecated error messages and add i18n_scope and lookup_ancestors. Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Use bundled env for tests only | Jeremy Kemper | 2009-10-19 | 1 | -9/+4 |
| | |||||
* | Refactoring attributes/types [#3348 state:resolved] | Eric Chapweske | 2009-10-17 | 1 | -0/+16 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Fix env path | Jeremy Kemper | 2009-10-14 | 1 | -1/+1 |
| | |||||
* | Include bundled env in toplevel require, if present | Jeremy Kemper | 2009-10-14 | 1 | -8/+10 |
| | |||||
* | No more toplevel arel sibling | Jeremy Kemper | 2009-10-14 | 1 | -4/+2 |
| | |||||
* | Merge commit 'rails/master' | Emilio Tagua | 2009-08-10 | 1 | -0/+1 |
|\ | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/calculations.rb activerecord/lib/active_record/connection_adapters/mysql_adapter.rb activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb | ||||
| * | Introduce validates_with to encapsulate attribute validations in a class. | Jeff Dean | 2009-08-09 | 1 | -0/+1 |
| | | | | | | | | | | | | [#2630 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | | Merge commit 'rails/master' | Emilio Tagua | 2009-08-05 | 1 | -0/+1 |
|\| | |||||
| * | Add simple support for ActiveModel's StateMachine for ActiveRecord | Joshua Peek | 2009-08-04 | 1 | -0/+1 |
| | | |||||
* | | Merge commit 'rails/master' | Emilio Tagua | 2009-07-31 | 1 | -2/+11 |
|\| | | | | | | | | | Conflicts: activerecord/lib/active_record/associations.rb | ||||
| * | Start separating primary key concerns | Joshua Peek | 2009-07-30 | 1 | -0/+1 |
| | | |||||
| * | Concernify AR AttributeMethods | Joshua Peek | 2009-07-30 | 1 | -1/+9 |
| | | |||||
| * | Merge docrails | Pratik Naik | 2009-07-25 | 1 | -1/+1 |
| | | |||||
* | | Introduced ActiveRecord::Relation, a layer between an ARel relation and an ↵ | Emilio Tagua | 2009-07-21 | 1 | -0/+1 |
| | | | | | | | | AR relation | ||||
* | | Merge commit 'rails/master' | Emilio Tagua | 2009-06-12 | 1 | -1/+1 |
|\| | |||||
| * | Integrate ActiveModel::Observing into ActiveRecord | Joshua Peek | 2009-06-10 | 1 | -1/+1 |
| | | |||||
* | | Merge commit 'rails/master' | Emilio Tagua | 2009-06-02 | 1 | -1/+9 |
|\| | | | | | | | | | | | Conflicts: activerecord/lib/active_record.rb | ||||
| * | Merge branch 'master' into active_model | Joshua Peek | 2009-05-29 | 1 | -10/+3 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: activemodel/lib/active_model/core.rb activemodel/test/cases/state_machine/event_test.rb activemodel/test/cases/state_machine/state_transition_test.rb activerecord/lib/active_record/validations.rb activerecord/test/cases/validations/i18n_validation_test.rb activeresource/lib/active_resource.rb activeresource/test/abstract_unit.rb | ||||
| * | | Make Active Resource use ActiveModel::Errors | Pratik Naik | 2009-03-19 | 1 | -3/+1 |
| | | | |||||
| * | | Move all the Active Record validations to Active Model | Pratik Naik | 2009-03-19 | 1 | -0/+9 |
| | | | |||||
* | | | Set ActiveRecord as Arel engine on load. | Emilio Tagua | 2009-06-02 | 1 | -0/+1 |
| | | | |||||
* | | | Merge commit 'rails/master' | Emilio Tagua | 2009-05-18 | 1 | -3/+0 |
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record.rb Updated: Arel submodule | ||||
| * | | Revert "Get AR CI passing again by requiring the entire core_ext" | Jeremy Kemper | 2009-05-18 | 1 | -3/+0 |
| | | | | | | | | | | | | This reverts commit 8e6a18d8672f7efe6ef79b49185e4a6a23e4e547. | ||||
* | | | Merge commit 'rails/master' | Emilio Tagua | 2009-05-18 | 1 | -2/+3 |
|\| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/base.rb activerecord/lib/active_record/migration.rb activerecord/test/cases/helper.rb | ||||
| * | | Get AR CI passing again by requiring the entire core_ext | Yehuda Katz | 2009-05-16 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | Note that this includes Time and Date; we should really figure out what parts of core_ext are really required for AR and require just those. | ||||
| * | | Cherry-pick core extensions | Jeremy Kemper | 2009-05-13 | 1 | -1/+0 |
| | | | |||||
| * | | Remove support for deprecated validation message interpolation format | Jeremy Kemper | 2009-05-13 | 1 | -1/+0 |
| | | | |||||
* | | | Merge commit 'rails/master' | Emilio Tagua | 2009-05-04 | 1 | -9/+3 |
|\| | | |||||
| * | | Don't use #tap before Active Support is available, since older versions of ↵ | Chris Kampmeier | 2009-05-04 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | ruby don't have native implementations [#2603 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
| * | | Check for sibling Active Support first | Jeremy Kemper | 2009-05-02 | 1 | -8/+3 |
| | | | |||||
* | | | Removed blank lines | Emilio Tagua | 2009-04-23 | 1 | -2/+0 |
| | | | |||||
* | | | Require Arel | Emilio Tagua | 2009-04-23 | 1 | -0/+5 |
|/ / | |||||
* / | No more free lunch | Jeremy Kemper | 2009-04-22 | 1 | -0/+1 |
|/ | |||||
* | Added ActiveRecord::Base.each and ActiveRecord::Base.find_in_batches for ↵ | David Heinemeier Hansson | 2009-02-23 | 1 | -0/+1 |
| | | | | batch processing [DHH/Jamis Buck] | ||||
* | Add support for nested object forms to ActiveRecord and the helpers in ↵ | Eloy Duran | 2009-02-01 | 1 | -0/+2 |
| | | | | | | | | ActionPack Signed-Off-By: Michael Koziarski <michael@koziarski.com> [#1202 state:committed] | ||||
* | Bump up the year in MIT license files | Pratik Naik | 2009-01-18 | 1 | -1/+1 |
| | |||||
* | Introduce dynamic scopes for ActiveRecord: you can now use class methods ↵ | Yaroslav Markin | 2008-12-28 | 1 | -0/+1 |
| | | | | | | like scoped_by_user_name(user_name) and scoped_by_user_name_and_password(user_name, password) that will use the scoped method with attributes you supply. [#1648 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Switch to Rack based session stores. | Joshua Peek | 2008-12-15 | 1 | -0/+1 |
| | |||||
* | Add ActiveRecord::VERSION autoload | Jeremy Kemper | 2008-12-10 | 1 | -0/+2 |
| | |||||
* | Add config.preload_frameworks to load all frameworks at startup. Default to ↵ | Jeremy Kemper | 2008-11-24 | 1 | -2/+0 |
| | | | | false so Rails autoloads itself as it's used. | ||||
* | missed ActiveRecord::Migrator | Joshua Peek | 2008-11-24 | 1 | -0/+1 |
| |