| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert "Raise error on unknown primary key." | Jon Leighton | 2011-10-05 | 1 | -0/+4 |
* | Raise error on unknown primary key. | Jon Leighton | 2011-10-05 | 1 | -4/+0 |
* | Rename first_or_new to first_or_initialize. | Jon Leighton | 2011-09-13 | 1 | -10/+2 |
* | Add missing require in base_test.rb, fixes isolated test | Guillermo Iguaran | 2011-09-09 | 1 | -0/+1 |
* | Merge pull request #2757 from andmej/first_or_create_pull_request | Jon Leighton | 2011-09-08 | 1 | -0/+31 |
|\ |
|
| * | Adding first_or_create, first_or_create!, first_or_new and first_or_build to ... | Andrés Mejía | 2011-08-30 | 1 | -0/+31 |
* | | Disable active record marshalling tests on Ruby 1.8.7 on Travis CI, as they h... | Jon Leighton | 2011-09-06 | 1 | -0/+15 |
* | | Need to add here to pass the test | Arun Agrawal | 2011-09-03 | 1 | -0/+1 |
|/ |
|
* | Merge pull request #2750 from rsim/fix_test_column_names_are_escaped_for_oracle | Jon Leighton | 2011-08-30 | 1 | -1/+7 |
* | do not compute table names for abstract classes | Akira Matsuda | 2011-08-24 | 1 | -0/+4 |
* | prevent sql injection attacks by escaping quotes in column names | Aaron Patterson | 2011-08-16 | 1 | -0/+17 |
* | Work around for lolruby bug. (Read on for explanation.) | Jon Leighton | 2011-08-13 | 1 | -3/+8 |
* | Fully marshal AR::Base objects. Fixes #2431. | Jon Leighton | 2011-08-08 | 1 | -0/+13 |
* | Make it the responsibility of the connection to hold onto an ARel visitor for... | Jon Leighton | 2011-08-08 | 1 | -19/+0 |
* | remove deprication warning: ambiguous first argument; put parentheses or even... | Vishnu Atrai | 2011-07-26 | 1 | -1/+1 |
* | Revert "allow select to have multiple arguments" | Piotr Sarnacki | 2011-07-26 | 1 | -5/+0 |
* | allow select to have multiple arguments | Sławosz Sławiński | 2011-07-26 | 1 | -0/+5 |
* | use existing model for testing Base.create with #after_initialize | Gabriel Horner | 2011-07-24 | 1 | -9/+7 |
* | simplify and be more explicit about create and after_initialize tests | Gabriel Horner | 2011-07-24 | 1 | -18/+10 |
* | fix after_initialize edge case (close #2074 and close #2175) | Les Fletcher | 2011-07-24 | 1 | -0/+23 |
* | Merge pull request #2086 from amatsuda/date_multiparameter_nil | Xavier Noria | 2011-07-23 | 1 | -24/+9 |
|\ |
|
| * | convert multiple Date parameters into a nil if any of its bits were blank | Akira Matsuda | 2011-07-15 | 1 | -24/+9 |
* | | bigdecimal should be typecast to a float on sqlite3. fixes #2162 | Aaron Patterson | 2011-07-20 | 1 | -0/+11 |
|/ |
|
* | Fix and unit test for https://github.com/rails/rails/issues/2059 | Evan Light | 2011-07-14 | 1 | -2/+27 |
* | ActiveRecord::Base should pass ActiveModel::Lint. | Grant Hutchins & Peter Jaros | 2011-07-08 | 1 | -0/+10 |
* | comparing different classes returns nil | Damien Mathieu | 2011-06-26 | 1 | -0/+6 |
* | allow comparison on model objects - Closes #1858 | Damien Mathieu | 2011-06-26 | 1 | -0/+7 |
* | please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT | Aaron Patterson | 2011-06-06 | 1 | -1/+1 |
* | Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES... | Jon Leighton | 2011-06-04 | 1 | -1/+1 |
* | Raise NameError instead of ArgumentError in ActiveSupport::Dependencies | Andrew White | 2011-06-01 | 1 | -0/+7 |
* | removed deprecated methods, and related tests, from ActiveRecord | Josh Kalderimis | 2011-05-25 | 1 | -7/+0 |
* | Allow pluralize_table_names for individual model | Guillermo Iguaran | 2011-05-20 | 1 | -0/+9 |
* | Add ActiveRecord::attribute_names to retrieve a list of attribute names. This... | Prem Sichanugrist | 2011-05-15 | 1 | -0/+13 |
* | Fix assigning protected attributes by attributes= | knapo | 2011-05-11 | 1 | -2/+7 |
* | minor cleaning | Vishnu Atrai | 2011-05-10 | 1 | -1/+1 |
* | Multiparameter POLA, time_select fixes. See LH4346 | Aditya Sanghi | 2011-05-05 | 1 | -0/+135 |
* | deprecated the use of the guard_protected_attributes argument with attributes... | Josh Kalderimis | 2011-04-25 | 1 | -0/+6 |
* | Added assign_attributes to Active Record which accepts a mass-assignment secu... | Josh Kalderimis | 2011-04-24 | 1 | -1/+1 |
* | Bypass IdentityMap in PostgreSQL geometric tests. | Jason Weathered | 2011-04-17 | 1 | -2/+2 |
* | Evaluate default scopes at the last possible moment in order to avoid problem... | Jon Leighton | 2011-04-12 | 1 | -10/+2 |
* | Deprecated support for passing hashes and relations to default_scope, in favo... | Jon Leighton | 2011-04-12 | 1 | -4/+8 |
* | Use IM when trying to load records using ID. | Emilio Tagua | 2011-04-04 | 1 | -5/+5 |
* | Added new #update_column method. | Sebastian Martinez | 2011-03-27 | 1 | -1/+1 |
* | Revert "Removed #update_attribute method. New #update_column method." | Sebastian Martinez | 2011-03-27 | 1 | -1/+1 |
* | Removed #update_attribute method. New #update_column method. | Sebastian Martinez | 2011-03-26 | 1 | -1/+1 |
* | Allow to read and write AR attributes with non valid identifiers | Santiago Pastorino | 2011-03-22 | 1 | -0/+12 |
* | Active Record typos. | R.T. Lechow | 2011-03-05 | 1 | -2/+2 |
* | use an attribute rather than a SQL literal | Aaron Patterson | 2011-02-26 | 1 | -0/+1 |
* | Add interpolation of association conditions back in, in the form of proc { ..... | Jon Leighton | 2011-02-14 | 1 | -6/+0 |
* | rawr, mysql, mysql2, why do you hate me. :'( | Aaron Patterson | 2011-02-09 | 1 | -2/+4 |