| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Prefix primary key with table name so it works as part of a joined fetch | David Heinemeier Hansson | 2005-04-04 | 1 | -2/+2 |
* | More eager fixes | David Heinemeier Hansson | 2005-04-03 | 2 | -4/+2 |
* | Made eager loading work even more | David Heinemeier Hansson | 2005-04-03 | 11 | -50/+76 |
* | Allow order, conditions, and joins in finds that include associations | David Heinemeier Hansson | 2005-04-03 | 3 | -5/+17 |
* | Only include associations when the relevant rows have content | David Heinemeier Hansson | 2005-04-03 | 1 | -1/+1 |
* | Added tests | David Heinemeier Hansson | 2005-04-03 | 1 | -0/+278 |
* | Added new Base.find API and deprecated find_all, find_first. Added preliminar... | David Heinemeier Hansson | 2005-04-03 | 16 | -227/+243 |
* | Fixed that benchmarking times for rendering included db runtimes #987 [skaes@... | David Heinemeier Hansson | 2005-04-02 | 1 | -0/+2 |
* | Removed broken attempt to DRY module ClassMethod #970 | David Heinemeier Hansson | 2005-04-02 | 5 | -0/+25 |
* | Automatically extend the class which gets a module included with the ClassMet... | David Heinemeier Hansson | 2005-04-02 | 5 | -25/+0 |
* | Fixed boolean queries for t/f fields in PostgreSQL #995 [dave@cherryville.org] | David Heinemeier Hansson | 2005-04-02 | 2 | -1/+3 |
* | Added that model.items.delete(child) will delete the child, not just set the ... | David Heinemeier Hansson | 2005-04-02 | 4 | -10/+31 |
* | Fixed auto-stamping of dates (created_on/updated_on) for PostgreSQL #985 [dav... | David Heinemeier Hansson | 2005-04-02 | 2 | -6/+8 |
* | decrease reliance on instantiated fixtures #980 [Jeremy Kemper] | David Heinemeier Hansson | 2005-04-02 | 1 | -21/+15 |
* | Fixed Base.silence/benchmark to only log if a logger has been configured #986... | David Heinemeier Hansson | 2005-04-02 | 2 | -3/+5 |
* | Added a join parameter as the third argument to Base.find_first and as the se... | David Heinemeier Hansson | 2005-04-02 | 2 | -3/+5 |
* | Made sure all MySQL tables are created as InnoDB | David Heinemeier Hansson | 2005-04-02 | 2 | -14/+14 |
* | Added install.rbs for all frameworks and made all of them generic enough not ... | David Heinemeier Hansson | 2005-04-02 | 1 | -42/+7 |
* | Added a join parameter as the third argument to Base.find_first #426 [skaes@w... | David Heinemeier Hansson | 2005-03-31 | 2 | -2/+4 |
* | Fixed bug in Base#hash method that would treat records with the same string-b... | David Heinemeier Hansson | 2005-03-30 | 2 | -1/+3 |
* | Renamed DateHelper#distance_of_time_in_words_to_now to DateHelper#time_ago_in... | David Heinemeier Hansson | 2005-03-30 | 1 | -0/+5 |
* | Dont load the target before the proxy has had a chance to answer the respond_... | David Heinemeier Hansson | 2005-03-29 | 1 | -2/+1 |
* | Fixed the Rakefile #959 | David Heinemeier Hansson | 2005-03-27 | 1 | -1/+1 |
* | Made ready for the release of 0.11.1 | David Heinemeier Hansson | 2005-03-27 | 2 | -43/+13 |
* | Fixed that Active Record objects with float attribute could not be cloned #808 | David Heinemeier Hansson | 2005-03-27 | 1 | -1/+1 |
* | Made ready for better release automation | David Heinemeier Hansson | 2005-03-27 | 1 | -29/+130 |
* | Added documentation about named bind variables | David Heinemeier Hansson | 2005-03-27 | 1 | -0/+10 |
* | Fixed that MissingSourceFile's wasn't properly detected in production mode #9... | David Heinemeier Hansson | 2005-03-25 | 1 | -0/+2 |
* | Fixed that :counter_cache option would look for a line_items_count column for... | David Heinemeier Hansson | 2005-03-23 | 2 | -2/+4 |
* | Fixed that AR exists?() would explode on postgresql if the passed id did not ... | David Heinemeier Hansson | 2005-03-23 | 2 | -1/+3 |
* | Fixed the MS SQL adapter to work with the new limit/offset approach and with ... | David Heinemeier Hansson | 2005-03-23 | 7 | -183/+184 |
* | Fixed documentation and prepared for 0.11.0 release | David Heinemeier Hansson | 2005-03-22 | 2 | -5/+5 |
* | Updated more documentation | David Heinemeier Hansson | 2005-03-22 | 1 | -1/+1 |
* | Added adapter independent limit clause as a two-element array with the first ... | David Heinemeier Hansson | 2005-03-20 | 8 | -24/+69 |
* | Added alias_method :to_param, :id to Base, such that Active Record objects to... | David Heinemeier Hansson | 2005-03-20 | 2 | -0/+5 |
* | Improved the performance of the OCI8 adapter for Oracle #723 [pilx/gjenkins] | David Heinemeier Hansson | 2005-03-20 | 2 | -11/+16 |
* | Added type conversion before saving a record, so string-based values like "10... | David Heinemeier Hansson | 2005-03-20 | 3 | -2/+4 |
* | changes the CREATE TABLE script for the "binaries" table to use the "image" d... | David Heinemeier Hansson | 2005-03-20 | 1 | -1/+1 |
* | Added with additional settings for working with transactional fixtures and pr... | David Heinemeier Hansson | 2005-03-20 | 3 | -16/+79 |
* | Fixed acts_as_list to trigger remove_from_list on destroy after the fact, not... | David Heinemeier Hansson | 2005-03-20 | 2 | -1/+3 |
* | Added warning about specifying callbacks before associations to trigger inher... | David Heinemeier Hansson | 2005-03-19 | 1 | -0/+4 |
* | Added the possibility of specifying fixtures in multiple calls #816 [kim@tink... | David Heinemeier Hansson | 2005-03-17 | 3 | -1/+23 |
* | Added Base.exists?(id) that'll return true if an object of the class with the... | David Heinemeier Hansson | 2005-03-17 | 3 | -0/+16 |
* | Added optionally allow for nil or empty strings with validates_numericality_o... | David Heinemeier Hansson | 2005-03-14 | 3 | -72/+66 |
* | Fixed that SQLite3 exceptions are caught and reported properly #823 [yerejm] | David Heinemeier Hansson | 2005-03-14 | 5 | -4/+10 |
* | Doc fix #805 | David Heinemeier Hansson | 2005-03-14 | 1 | -1/+1 |
* | Added that all types of after_find/after_initialized callbacks are triggered ... | David Heinemeier Hansson | 2005-03-14 | 3 | -24/+79 |
* | Fixed example in docs | David Heinemeier Hansson | 2005-03-13 | 1 | -1/+1 |
* | Fixed that symbols can be used on attribute assignment, like page.emails.crea... | David Heinemeier Hansson | 2005-03-10 | 2 | -0/+6 |
* | More incremental work on active schema for MySQL | David Heinemeier Hansson | 2005-03-10 | 2 | -2/+2 |