aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* More nested polymorphic url helper fixes. Closes #6432, references #8601.Jeremy Kemper2007-06-075-29/+92
* Fix incomplete work from [6951] that was hidden by test stubs. Closes #6432.Jeremy Kemper2007-06-062-19/+30
* Resources: url_for([parent, child]) generates /parents/1/children/2 for the n...Jeremy Kemper2007-06-056-45/+174
* Assume html format when rendering partials in RJS. #8076 [Rick]Rick Olson2007-06-054-0/+25
* revert [6924]Rick Olson2007-06-055-77/+5
* Migrations: report the number of rows affected when calling insert, update, d...Jeremy Kemper2007-06-051-0/+1
* Fixtures: correctly delete and insert fixtures in a single transaction. Close...Jeremy Kemper2007-06-052-1/+3
* Fix typo. Closes #7504 [aurelianito]Jeremy Kemper2007-06-051-1/+1
* Don't double-escape url_for in views. Closes #8144.Jeremy Kemper2007-06-053-1/+8
* Remove junk form helper test. Closes #8416 [eric_oconnell]Jeremy Kemper2007-06-051-7/+0
* Fixtures: people(:technomancy, :josh) returns both fixtures. Closes #7880.Jeremy Kemper2007-06-054-11/+32
* Fix indentation in model generator migration template. Closes #8577 [Josh Peek]Jeremy Kemper2007-06-051-1/+1
* Sexy migrations for the session_migration generator. Closes #8561.Jeremy Kemper2007-06-052-3/+5
* Add Date#since, ago, beginning_of_day, and end_of_day. Date + seconds works n...Jeremy Kemper2007-06-045-5/+48
* String#to_time overflows to DateTime. Add String#to_datetime. Closes #8572.Jeremy Kemper2007-06-043-1/+10
* Date.yesterday and .tomorrow. Closes #8571.Jeremy Kemper2007-06-043-124/+142
* Readable Date and DateTime#inspect. Closes #8570.Jeremy Kemper2007-06-045-0/+27
* Allow JSON-style values for the :with option of observe_field. Closes #8557 ...Thomas Fuchs2007-06-033-1/+14
* Enhance assert_difference to accept arrays of strings which are then evaledTobias Lütke2007-06-012-6/+21
* pass the prefix_options to the instantiated record when using find without a ...Rick Olson2007-06-013-2/+12
* Added proper handling of arrays (closes #8537) [hasmanyjosh]David Heinemeier Hansson2007-06-015-5/+77
* Remove RAILS_ROOT from backtrace paths. Closes #8540.Jeremy Kemper2007-06-012-1/+3
* Routing: map.resource :logo routes to LogosController so the controller may b...Jeremy Kemper2007-06-013-19/+19
* Move common DateTime calculations to Date. Closes #8536.Jeremy Kemper2007-06-014-119/+223
* render :partial recognizes Active Record associations as Arrays. Closes #8538.Jeremy Kemper2007-06-014-2/+68
* Calculations support non-numeric foreign keys. Closes #8154.Jeremy Kemper2007-06-013-1/+24
* Missing helper load error shouldn't shadow load errors within the helper itself.Jeremy Kemper2007-05-311-2/+6
* Base.inspect handles Base itself and abstract_class? Don't use #<Foo ...> si...Jeremy Kemper2007-05-312-5/+18
* Fix an edge case with find with a list of ids, limit, and offset. Closes #8437.Jeremy Kemper2007-05-312-4/+13
* Fixed that DateHelper#date_select should set the day to the 1st when its a hi...David Heinemeier Hansson2007-05-312-1/+31
* Added Date#change (like Time#change) [DHH]David Heinemeier Hansson2007-05-314-1/+22
* with_scope is protected. Closes #8524.Jeremy Kemper2007-05-306-92/+111
* Fix imprecise duration addition test. Closes #8516 [Geoff Buesing]Jeremy Kemper2007-05-301-2/+2
* Quickref for association methods. Closes #7723.Jeremy Kemper2007-05-302-3/+42
* Calculations: return nil average instead of 0 when there are no rows to avera...Jeremy Kemper2007-05-303-1/+11
* acts_as_nested_set: direct_children is sorted correctly. Closes #4761.Jeremy Kemper2007-05-304-10/+13
* DateTime#to_time converts to Time unless out of range. Date#to_datetime and D...Jeremy Kemper2007-05-306-12/+37
* Time durations use since instead of + for accuracy. Closes #8513.Jeremy Kemper2007-05-305-3/+23
* Skip databases that couldn't be created.Jeremy Kemper2007-05-301-3/+7
* Don't choke on nested helpers.Jeremy Kemper2007-05-291-18/+17
* Missed svn add from [6897]. References #8393.Jeremy Kemper2007-05-291-0/+25
* Console reload! runs to_prepare callbacks also. Closes #8393.Jeremy Kemper2007-05-292-1/+5
* Raise an exception if both attr_protected and attr_accessible are declared. C...Jeremy Kemper2007-05-293-0/+16
* fix test cases to match new json output. Closes #8371Rick Olson2007-05-293-13/+15
* escape <'s and >'s in JSON strings. #8371 [Rick]Rick Olson2007-05-293-3/+7
* Workaround test isolation failure with Task.attr_protected :starting.Jeremy Kemper2007-05-291-1/+5
* Typo in PostgreSQL change_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* Missed Oracle rename_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL...Jeremy Kemper2007-05-296-15/+33
* Routing: drop semicolon and comma as route separators.Jeremy Kemper2007-05-293-22/+28