| Commit message (Expand) | Author | Age | Files | Lines |
* | Raise error when using write_attribute with a non-existent attribute. | Jon Leighton | 2011-09-13 | 1 | -1/+3 |
* | Fix test failures on 1.8.7, since Object#initialize_dup is not defined there ... | Jon Leighton | 2011-08-29 | 1 | -1/+0 |
* | Move clear_timestamp_attributes into Timestamp module | Jon Leighton | 2011-08-29 | 1 | -1/+13 |
* | Updates to ActiveRecord::Timestamp documentation. | Brian Morearty | 2011-02-05 | 1 | -6/+8 |
* | Implement and test private method all_timestamp_attributes_in_model | Franck Verrot | 2011-02-02 | 1 | -0/+4 |
* | Added timestamp_attributes_for_create_in_model | Franck Verrot | 2011-02-02 | 1 | -0/+4 |
* | Make sure Model#touch doesn't try to update non existing columns | Pratik Naik | 2010-12-30 | 1 | -1/+1 |
* | class inheritable attributes is used no more! all internal use of class inher... | Josh Kalderimis | 2010-11-20 | 1 | -3/+5 |
* | Make should_record_timestamps? serialization aware rather than object#changed? | Pratik Naik | 2010-11-02 | 1 | -1/+1 |
* | Ensure timestamps are not generated when explicitly set to false [#5440 state... | José Valim | 2010-08-24 | 1 | -1/+1 |
* | Make update_attribute behave as in Rails 2.3 and document the behavior intrin... | José Valim | 2010-08-12 | 1 | -20/+19 |
* | Merge remote branch 'docrails/master' into 3-0-stable | Xavier Noria | 2010-08-03 | 1 | -1/+2 |
|\ |
|
| * | ensuring that description does not exceed 100 columns | Neeraj Singh | 2010-08-02 | 1 | -1/+2 |
* | | Add an internal (private API) after_touch callback. [#5271 state:resolved] | José Valim | 2010-08-02 | 1 | -13/+0 |
|/ |
|
* | moving time zone related documentation to timestamp.rb from base.rb | Neeraj Singh | 2010-07-29 | 1 | -0/+12 |
* | Timestamp columns of HABTM join table should record timestamps | Neeraj Singh | 2010-07-21 | 1 | -3/+16 |
* | Tidying up a bit, so update_attribute is not called twice on touch. | José Valim | 2010-07-13 | 1 | -15/+9 |
* | with this fix touch method - does not call validations - doest not call callb... | Neeraj Singh | 2010-07-13 | 1 | -9/+7 |
* | Improve a bit the code in latest commits. | José Valim | 2010-07-08 | 1 | -13/+7 |
* | This patch changes update_attribute implementatino so: | Neeraj Singh | 2010-07-08 | 1 | -2/+10 |
* | consolidating updated_at and updated_on | Neeraj Singh | 2010-07-08 | 1 | -9/+16 |
* | Adds title and proper formatting to docs. | Rizwan Reza | 2010-06-16 | 1 | -6/+12 |
* | eliminate alias_method_chain from ActiveRecord | wycats | 2010-05-09 | 1 | -26/+22 |
* | Break up DependencyModule's dual function of providing a "depend_on" DSL and ... | Joshua Peek | 2009-05-28 | 1 | -1/+1 |
* | Use DependencyModule for included hooks in ActiveRecord | Bryan Helmkamp | 2009-05-11 | 1 | -5/+7 |
* | Added :touch option to belongs_to associations that will touch the parent rec... | David Heinemeier Hansson | 2009-04-16 | 1 | -3/+13 |
* | Added ActiveRecord::Base#touch to update the updated_at/on attributes with th... | David Heinemeier Hansson | 2009-04-16 | 1 | -9/+29 |
* | Ensure of Model#create support custom updated_at and updated_on attributes [#... | Luis Hurtado | 2008-12-22 | 1 | -2/+2 |
* | Partial updates play nice with updated_at/on timestamps | Jeremy Kemper | 2008-03-31 | 1 | -1/+1 |
* | Partial updates include only unsaved attributes. Off by default; set YourClas... | Jeremy Kemper | 2008-03-31 | 1 | -2/+2 |
* | Improve documentation. | Pratik Naik | 2008-03-26 | 1 | -1/+1 |
* | Make the record_timestamps class-inheritable so it can be set per model. Refe... | Jeremy Kemper | 2007-11-26 | 1 | -1/+1 |
* | Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva] | Marcel Molina | 2007-11-08 | 1 | -2/+2 |
* | Revert [4706] which added incorrect docs. References #5684. | Jeremy Kemper | 2007-05-19 | 1 | -9/+0 |
* | Consistent public/protected/private visibility for chained methods. Closes #7... | Jeremy Kemper | 2007-03-13 | 1 | -18/+17 |
* | Don't create instance writer methods for class attributes. Closes #7401 [Rick] | Rick Olson | 2007-01-28 | 1 | -1/+1 |
* | Add documentation for how to disable timestamps on a per model basis. Closes ... | Marcel Molina | 2006-08-07 | 1 | -0/+9 |
* | r4724@asus: jeremy | 2006-06-28 19:22:46 -0700 | Jeremy Kemper | 2006-06-29 | 1 | -33/+17 |
* | Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ... | Marcel Molina | 2006-04-29 | 1 | -5/+3 |
* | Replace Ruby's deprecated append_features in favor of included. [Marcel Molin... | Marcel Molina | 2006-04-29 | 1 | -3/+1 |
* | Closes #3784. | Jeremy Kemper | 2006-02-09 | 1 | -5/+5 |
* | Update AR default timezone docs. | Jeremy Kemper | 2006-02-09 | 1 | -1/+1 |
* | Speed up timestamping a tad #1227 [skaen] | David Heinemeier Hansson | 2005-05-19 | 1 | -8/+10 |
* | Changed the auto-timestamping feature to use ActiveRecord::Base.default_timez... | David Heinemeier Hansson | 2005-02-24 | 1 | -3/+13 |
* | Finished polishing API docs | David Heinemeier Hansson | 2005-02-23 | 1 | -2/+2 |
* | Added ActiveRecord::Base.timestamps_gmt that can be set to true to make the a... | David Heinemeier Hansson | 2005-01-24 | 1 | -7/+12 |
* | Fixed the automated timestamping feature when running under Rails' developmen... | David Heinemeier Hansson | 2004-12-18 | 1 | -5/+17 |
* | Updated and added more documentation | David Heinemeier Hansson | 2004-12-16 | 1 | -0/+2 |
* | Added option for turning off the automated timestamps | David Heinemeier Hansson | 2004-12-16 | 1 | -5/+14 |
* | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@177 5ecf4fe2-1ee6-0... | David Heinemeier Hansson | 2004-12-16 | 1 | -0/+22 |