| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fixed migration creation to work with namespaced models, so script/generate m... | David Heinemeier Hansson | 2006-10-09 | 2 | -0/+5 |
* | Fixed rename_table on SQLite tables with indexes defined (closes #5942) [bran... | David Heinemeier Hansson | 2006-10-09 | 2 | -6/+39 |
* | Docfix (closes #6040) | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+24 |
* | Added timeout option to SQLite3 configurations to deal more gracefully with S... | David Heinemeier Hansson | 2006-10-09 | 5 | -1/+11 |
* | Docfix (closes #5143) | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+1 |
* | Added update_attributes! which uses save! to raise an exception if a validati... | David Heinemeier Hansson | 2006-10-09 | 3 | -1/+46 |
* | Deprecated add_on_boundary_breaking (use validates_length_of instead) (closes... | David Heinemeier Hansson | 2006-10-09 | 4 | -18/+16 |
* | Doc fixes (closes #6325) | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+4 |
* | render_text may optionally append to the response body. render_javascript app... | Jeremy Kemper | 2006-10-09 | 3 | -4/+34 |
* | Rename test assertion to prevent shadowing. Closes #6306. | Nicholas Seckar | 2006-10-09 | 2 | -1/+3 |
* | one render per test | Jeremy Kemper | 2006-10-09 | 1 | -16/+36 |
* | Fixed that NumberHelper#number_to_delimiter should respect precision of highe... | David Heinemeier Hansson | 2006-10-09 | 3 | -3/+20 |
* | Fixed that caches_action breaks with file extensions (closes #6257) [Catfish] | David Heinemeier Hansson | 2006-10-09 | 2 | -1/+8 |
* | Fixed that FormHelper#radio_button didn't respect an :id being passed in (clo... | David Heinemeier Hansson | 2006-10-09 | 3 | -2/+10 |
* | Added an html_options hash parameter to javascript_tag() and update_page_tag(... | David Heinemeier Hansson | 2006-10-09 | 4 | -4/+26 |
* | Also update escaping for prototype rescues [DHH] | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+1 |
* | Fixed that rescue template path shouldn't be hardcoded, then it's easier to h... | David Heinemeier Hansson | 2006-10-09 | 2 | -1/+3 |
* | Fixed escaping of backslashes in JavaScriptHelper#escape_javascript (closes #... | David Heinemeier Hansson | 2006-10-09 | 3 | -1/+4 |
* | Fixed that some 500 rescues would cause 500's themselves because the response... | David Heinemeier Hansson | 2006-10-09 | 2 | -1/+3 |
* | Fixed that assert_select selects the wrong tag by its contents (closes #6332)... | David Heinemeier Hansson | 2006-10-09 | 2 | -66/+81 |
* | Deprecation cleanup for rescues (closes #6339) [adam] | David Heinemeier Hansson | 2006-10-09 | 1 | -4/+4 |
* | Docfix (closes #6356) | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+9 |
* | Include field:type option for models | David Heinemeier Hansson | 2006-10-09 | 2 | -1/+4 |
* | Added script/generate resource which works just like scaffold_resource, but c... | David Heinemeier Hansson | 2006-10-09 | 17 | -60/+252 |
* | Added proper USAGE to the scaffold_resource generator [DHH] | David Heinemeier Hansson | 2006-10-08 | 1 | -4/+10 |
* | Added proper USAGE to the scaffold_resource generator [DHH] | David Heinemeier Hansson | 2006-10-08 | 1 | -5/+20 |
* | r5515@ks: jeremy | 2006-10-08 13:24:42 -0700 | Jeremy Kemper | 2006-10-08 | 3 | -2/+22 |
* | cleanup of local_assigns handling and documentation update (closes #6358) [sk... | David Heinemeier Hansson | 2006-10-08 | 1 | -6/+16 |
* | The has_many create method works with polymorphic associations. Closes #6361. | Jeremy Kemper | 2006-10-08 | 3 | -4/+14 |
* | Add Base.delete for deleting resources without having to instantiate them first | Jamis Buck | 2006-10-06 | 3 | -0/+10 |
* | Update RUNNING_UNIT_TESTS for current Rake tasks. Closes #6349. | Jeremy Kemper | 2006-10-05 | 1 | -3/+4 |
* | callbacks that return false should cause save to return false | Jamis Buck | 2006-10-04 | 1 | -2/+2 |
* | add a failing test so we can make it happy again | Jamis Buck | 2006-10-04 | 1 | -0/+13 |
* | Pull in latest multibyte patch. Closes #6346 [Manfred Stienstra] | Michael Koziarski | 2006-10-04 | 8 | -27/+36 |
* | Add ActiveSupport::Multibyte. Provides String#chars which lets you deal with... | Michael Koziarski | 2006-10-03 | 15 | -0/+1390 |
* | add response to list of deprecated instance variables | Jeremy Kemper | 2006-10-02 | 1 | -1/+1 |
* | Make #save behavior mimic AR::Base#save (true on success, false on failure) | Jamis Buck | 2006-10-02 | 5 | -12/+13 |
* | MySQL: introduce Mysql::Result#all_hashes to support further optimization. Cl... | Jeremy Kemper | 2006-10-02 | 2 | -10/+43 |
* | Fix issue with #class_inheritable_accessor saving updates to the parent class... | Rick Olson | 2006-10-02 | 3 | -1/+38 |
* | use instance vars in rescue templates since controller may not be instantiate... | Jeremy Kemper | 2006-10-02 | 2 | -5/+5 |
* | assume the passed headers to the ActiveResource HttpMock Request/Response are... | Rick Olson | 2006-10-02 | 1 | -2/+2 |
* | save! shouldn't validate twice. Closes #6324. | Jeremy Kemper | 2006-10-02 | 3 | -2/+10 |
* | Association collections have an _ids reader method to match the existing writ... | Jeremy Kemper | 2006-10-01 | 3 | -1/+47 |
* | Removed deprecated @request and @response usages. | Kent Sibilev | 2006-10-01 | 3 | -5/+7 |
* | Fixed some deprecation warnings in ActionPack [Rick Olson] | Rick Olson | 2006-09-30 | 3 | -4/+5 |
* | Add an attribute reader method for ActiveRecord::Base.observers [Rick Olson] | Rick Olson | 2006-09-30 | 2 | -0/+10 |
* | Use class name as XML_TYPE_NAMES key. | Jeremy Kemper | 2006-09-29 | 2 | -4/+4 |
* | Hash#to_xml supports Bignum and BigDecimal. Closes #6313. | Jeremy Kemper | 2006-09-29 | 4 | -16/+30 |
* | Add Basic HTTP Authentication to ActiveResource (closes #6305). [jonathan] | Rick Olson | 2006-09-29 | 7 | -39/+190 |
* | Deprecate @response | Jeremy Kemper | 2006-09-29 | 10 | -24/+27 |