| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix const_missing to behave responsibly when called within anonymous modules | Nicholas Seckar | 2006-08-16 | 2 | -2/+25 |
* | Update require_dependency to return true or false as require does. | Nicholas Seckar | 2006-08-16 | 2 | -7/+9 |
* | Shorten index name. | Jeremy Kemper | 2006-08-16 | 1 | -1/+1 |
* | Included associations: go deep. | Jeremy Kemper | 2006-08-16 | 8 | -17/+75 |
* | Stop using defined? in Dependencies.qualified_const_defined? since defined? m... | Nicholas Seckar | 2006-08-16 | 3 | -1/+29 |
* | Fixed a bug which would cause .save to fail after trying to access a empty ha... | Tobias Lütke | 2006-08-16 | 3 | -10/+21 |
* | Nested classes are given table names prefixed by the singular form of the par... | Jeremy Kemper | 2006-08-16 | 3 | -10/+31 |
* | Dependencies can autoload directories of nested classes. | Jeremy Kemper | 2006-08-16 | 8 | -5/+54 |
* | Make indexed columns easy to extract from the index name. Oracle users should... | Jeremy Kemper | 2006-08-15 | 2 | -9/+12 |
* | Migrations: uniquely name multicolumn indexes so you don't have to. | Jeremy Kemper | 2006-08-15 | 3 | -11/+28 |
* | Updated trunk to script.aculo.us 1.6.2 | Thomas Fuchs | 2006-08-15 | 8 | -88/+142 |
* | cleanup | Nicholas Seckar | 2006-08-15 | 1 | -1/+0 |
* | Relax Routing's anchor pattern warning; it was preventing use of [^/] inside ... | Nicholas Seckar | 2006-08-15 | 3 | -1/+41 |
* | Add controller_paths variable to Routing; Assign Routing.controller_paths fro... | Nicholas Seckar | 2006-08-15 | 5 | -19/+28 |
* | Fix AWS tests | David Heinemeier Hansson | 2006-08-14 | 3 | -9/+15 |
* | Add silencing to deprecations; avoid self-scolding. | Nicholas Seckar | 2006-08-14 | 6 | -5/+32 |
* | Update respond_to docs to follow established naming convention | Marcel Molina | 2006-08-14 | 1 | -7/+7 |
* | Fix for deep includes on the same association. | Jeremy Kemper | 2006-08-14 | 5 | -2/+40 |
* | Fix assert_redirected_to issue with named routes for module controllers. [Ri... | Rick Olson | 2006-08-13 | 4 | -1/+38 |
* | Tweak RoutingError message to show option diffs, not just missing named route... | Rick Olson | 2006-08-13 | 2 | -2/+4 |
* | Invoke method_missing directly for hidden actions. Closes #3030. | Nicholas Seckar | 2006-08-13 | 3 | -2/+65 |
* | Add debugging logging to Dependencies. | Nicholas Seckar | 2006-08-13 | 2 | -4/+33 |
* | Use require_dependency and not require to load models | Nicholas Seckar | 2006-08-12 | 1 | -1/+1 |
* | Tweak fixtures so they don't try to use a non-ActiveRecord class. [Kevin Clark] | Rick Olson | 2006-08-11 | 3 | -1/+13 |
* | Remove ActiveRecord::Base.reset since Dispatcher doesn't use it anymore. [Ri... | Rick Olson | 2006-08-09 | 3 | -13/+3 |
* | Rearrange application resetting and preparation, fix bug with leaking subclas... | Rick Olson | 2006-08-09 | 2 | -1/+10 |
* | Cause ApplicationController to be reloaded | David Heinemeier Hansson | 2006-08-09 | 1 | -1/+1 |
* | Fix typo in caching docs. | Marcel Molina | 2006-08-09 | 1 | -1/+1 |
* | Document find's :from option. Closes #5762. [andrew@redlinesoftware.com] | Marcel Molina | 2006-08-09 | 2 | -0/+4 |
* | PostgreSQL: autodetected sequences work correctly with multiple schemas. Rely... | Jeremy Kemper | 2006-08-09 | 3 | -5/+80 |
* | Add missing mock directories from the autoload_paths configuration. [Rick Ol... | Rick Olson | 2006-08-09 | 2 | -2/+6 |
* | Nested controller scaffolding also nests the generated layout. | Jeremy Kemper | 2006-08-09 | 2 | -3/+4 |
* | Require Tempfile explicitly for TestUploadedFile due to changes in class auto... | Rick Olson | 2006-08-09 | 2 | -0/+3 |
* | Add RoutingError exception when RouteSet fails to generate a path from a Name... | Rick Olson | 2006-08-09 | 2 | -7/+9 |
* | be sure to require_dependency on 'application', so that dependency loading is... | Jamis Buck | 2006-08-08 | 1 | -1/+1 |
* | Add forgotten files; Fix double loading errors. | Nicholas Seckar | 2006-08-08 | 4 | -17/+25 |
* | Checkin forgotten add. Update const_missing handler to avoid double loading f... | Nicholas Seckar | 2006-08-08 | 2 | -1/+10 |
* | New dependencies implementation | Nicholas Seckar | 2006-08-08 | 27 | -73/+455 |
* | Cache nil results for has_one associations so multiple calls don't call the d... | Rick Olson | 2006-08-08 | 4 | -7/+14 |
* | separate warn method for easier localization override | Jeremy Kemper | 2006-08-08 | 1 | -1/+5 |
* | Include called method in instance variable deprecation warning. | Jeremy Kemper | 2006-08-08 | 2 | -9/+4 |
* | DateTime#to_time gives hour/minute/second resolution. Closes #5747. | Jeremy Kemper | 2006-08-07 | 3 | -4/+14 |
* | Deprecation: check whether instance variables have been monkeyed with before ... | Jeremy Kemper | 2006-08-07 | 3 | -4/+29 |
* | Fix Dispatcher.reset_application! so that AR subclasses are removed and Obser... | Rick Olson | 2006-08-07 | 2 | -1/+3 |
* | Deprecate direct usage of @params. Update ActionView::Base for instance var d... | Jeremy Kemper | 2006-08-07 | 14 | -32/+66 |
* | Add support for the param_name parameter to the auto_complete_field helper. F... | Thomas Fuchs | 2006-08-07 | 3 | -0/+5 |
* | Add documentation for how to disable timestamps on a per model basis. Closes ... | Marcel Molina | 2006-08-07 | 2 | -0/+11 |
* | Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com] | Marcel Molina | 2006-08-07 | 2 | -2/+4 |
* | it's me, john wayne | Nicholas Seckar | 2006-08-07 | 1 | -12/+0 |
* | Deprecation! @session and @flash will be removed after 1.2. Use the session a... | Jeremy Kemper | 2006-08-07 | 7 | -47/+92 |