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