| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Make the sqlite adapter preserve not-null constraints and index names when al... | Jamis Buck | 2005-09-24 | 1 | -3/+12 |
* | Allow the postgresql adapter to work with the SchemaDumper. | Jamis Buck | 2005-09-23 | 2 | -4/+50 |
* | Post the postgresql adapter (and hopefully other adapters) pass all tests | Jamis Buck | 2005-09-23 | 2 | -4/+10 |
* | Make sqlite adapter pass all tests | Jamis Buck | 2005-09-23 | 2 | -3/+11 |
* | Add db_schema_dump and db_schema_import rake tasks to work with the new Activ... | Jamis Buck | 2005-09-23 | 2 | -1/+17 |
* | Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, m... | Jamis Buck | 2005-09-23 | 11 | -25/+292 |
* | Only configure settings for loaded frameworks | David Heinemeier Hansson | 2005-09-22 | 1 | -4/+6 |
* | Fixed that auto_discovery_link_tag couldn't take a string as the URL | David Heinemeier Hansson | 2005-09-22 | 3 | -4/+7 |
* | Fixed clean logger to work with Ruby 1.8.3 Logger class #2245 | David Heinemeier Hansson | 2005-09-21 | 2 | -3/+3 |
* | Fixed migrations for Windows when using more than 10 [David Naseby] | David Heinemeier Hansson | 2005-09-21 | 2 | -2/+6 |
* | Asserts now need html/document so it should require it | David Heinemeier Hansson | 2005-09-21 | 2 | -9/+1 |
* | Fixed that the create_x method from belongs_to wouldn't save the association ... | David Heinemeier Hansson | 2005-09-20 | 3 | -2/+7 |
* | Fixed saving a record with two unsaved belongs_to associations pointing to th... | Jamis Buck | 2005-09-20 | 4 | -5/+59 |
* | Require 'pp' early to prevent the pretty-print methods being mixed in too lat... | Jamis Buck | 2005-09-20 | 1 | -0/+1 |
* | Fixed memory leak with Active Record classes when Dependencies.mechanism = :l... | David Heinemeier Hansson | 2005-09-20 | 4 | -55/+3 |
* | Added small note about how longtext might be needed for large session data | David Heinemeier Hansson | 2005-09-20 | 2 | -2/+5 |
* | Fixed problem with send_file and WEBrick using stdout #1812 | David Heinemeier Hansson | 2005-09-20 | 3 | -15/+10 |
* | Fixed memory leak with Active Record classes when Dependencies.mechanism = :l... | David Heinemeier Hansson | 2005-09-20 | 1 | -0/+4 |
* | Include suggestion for using different socket #1951 [NVRS] | David Heinemeier Hansson | 2005-09-20 | 1 | -2/+4 |
* | Optimized tag_options to not sort keys, which is no longer necessary when ass... | David Heinemeier Hansson | 2005-09-20 | 17 | -200/+248 |
* | Fixed that Request#domain caused an exception if the domain header wasn't set... | David Heinemeier Hansson | 2005-09-20 | 3 | -1/+10 |
* | Improved migrations' behavior when the schema_info table is empty. | Nicholas Seckar | 2005-09-20 | 2 | -1/+3 |
* | Make the truncate() helper multi-byte safe (assuming $KCODE has been set to s... | Jamis Buck | 2005-09-19 | 4 | -1/+60 |
* | Make the reaper slightly more robust in the nudging department | David Heinemeier Hansson | 2005-09-19 | 1 | -1/+7 |
* | Fixed that Observers didn't observe sub-classes #627 [Florian Weber] | David Heinemeier Hansson | 2005-09-19 | 3 | -1/+13 |
* | Include ActionView as a configurable framework | David Heinemeier Hansson | 2005-09-19 | 1 | -1/+1 |
* | Include libs/ in rake stats #2223 [Marcel Molina] | David Heinemeier Hansson | 2005-09-19 | 1 | -1/+2 |
* | Fix eager loading error messages, allow :include to specify tables using stri... | Nicholas Seckar | 2005-09-18 | 3 | -2/+15 |
* | Add routing tests from #1945 | Nicholas Seckar | 2005-09-18 | 2 | -2/+57 |
* | Add a routing test case covering #2101 | Nicholas Seckar | 2005-09-18 | 2 | -1/+14 |
* | Doc fix #2197 | David Heinemeier Hansson | 2005-09-17 | 1 | -0/+1 |
* | Add "#:nodoc:" for ActionController::Routing::PathComponent::Result #2209 [l.... | David Heinemeier Hansson | 2005-09-17 | 1 | -1/+1 |
* | Fixed that generate scaffold claims all words are reserved #2200, #2211 [alan... | David Heinemeier Hansson | 2005-09-17 | 1 | -2/+3 |
* | Make upload progress not throw JavaScript errors when there is no progress ba... | David Heinemeier Hansson | 2005-09-16 | 2 | -141/+5 |
* | Don't set the :MimeTypes option if it is nil (causes routing errors on styles... | Jamis Buck | 2005-09-15 | 1 | -5/+6 |
* | Cant use silence_warnings before active support is loaded | David Heinemeier Hansson | 2005-09-15 | 2 | -3/+2 |
* | Added check for RAILS_CONNECTION_ADAPTERS on startup and only load the connec... | David Heinemeier Hansson | 2005-09-15 | 2 | -7/+3 |
* | Added check for RAILS_CONNECTION_ADAPTERS on startup and only load the connec... | David Heinemeier Hansson | 2005-09-15 | 4 | -7/+24 |
* | Only attempt to require Active Support if it hasnt been already #1959 | David Heinemeier Hansson | 2005-09-15 | 2 | -15/+20 |
* | Cache relative_url_root for all webservers, not just Apache #2193 [skae] | David Heinemeier Hansson | 2005-09-15 | 3 | -2/+5 |
* | Speed up cookie use by decreasing string copying #2194 [skae] | David Heinemeier Hansson | 2005-09-15 | 2 | -7/+9 |
* | Included UrlRewriter tests in rake run and made them not depend on Hash order | David Heinemeier Hansson | 2005-09-15 | 1 | -5/+14 |
* | Made base_tests.rb run as part of rake | David Heinemeier Hansson | 2005-09-15 | 1 | -2/+2 |
* | Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clien... | David Heinemeier Hansson | 2005-09-14 | 2 | -1/+3 |
* | More auto-link fixes (to include query strings in autolinked text) | Jamis Buck | 2005-09-14 | 2 | -1/+5 |
* | Moved session and fragment options out | David Heinemeier Hansson | 2005-09-13 | 1 | -6/+1 |
* | Fix autolinking to not include trailing tags as part of the URL | Jamis Buck | 2005-09-13 | 2 | -1/+26 |
* | Only include dirs that exists in the stats | David Heinemeier Hansson | 2005-09-13 | 1 | -1/+1 |
* | Reformed all the config/environments/* files to conform to the new Rails::Con... | David Heinemeier Hansson | 2005-09-13 | 1 | -0/+2 |
* | Make it easy to go UTC | David Heinemeier Hansson | 2005-09-13 | 1 | -0/+3 |