Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ensures that the test repairs the validation setup | Francesco Rodriguez | 2012-08-27 | 1 | -7/+9 |
| | |||||
* | fix order dependent test in AggregationsTest | Francesco Rodriguez | 2012-08-26 | 1 | -0/+2 |
| | | | | | | | | | | | | | | Ensure class variable is set to nil. It prevents the following test to fail: def test_do_not_run_the_converter_when_nil_was_set customers(:david).non_blank_gps_location = nil assert_nil Customer.gps_conversion_was_run end Check https://github.com/rails/rails/blob/master/activerecord/test/models/customer.rb#L7 for more information. | ||||
* | Add test to ensure that save will raise SerializationTypeMismatch if the | Rafael Mendonça França | 2012-08-26 | 1 | -0/+6 |
| | | | | serialized attribute value is not from the same class | ||||
* | We don't need this reload | Rafael Mendonça França | 2012-08-26 | 1 | -1/+1 |
| | |||||
* | Use the Topic class in the attribute serialized tests | Rafael Mendonça França | 2012-08-26 | 1 | -8/+4 |
| | |||||
* | Use teardown hook to return the initial state of the object | Rafael Mendonça França | 2012-08-26 | 1 | -16/+5 |
| | |||||
* | Move the serialized attribute tests to their own file | Rafael Mendonça França | 2012-08-26 | 3 | -207/+214 |
| | |||||
* | Move test to the correct file | Rafael Mendonça França | 2012-08-26 | 3 | -12/+12 |
| | |||||
* | Remove CHANGELOG entry for the update_attribute removal. | Rafael Mendonça França | 2012-08-26 | 1 | -6/+0 |
| | | | | We reverted the removal because the new deprecation policy | ||||
* | Use verify_readonly_attribute in the update_columns method | Rafael Mendonça França | 2012-08-25 | 1 | -1/+1 |
| | |||||
* | Revert "Remove private verify readonly attr method" | Rafael Mendonça França | 2012-08-25 | 1 | -1/+5 |
| | | | | This reverts commit 7a8aee08b610f6edbfe5be076dc14e5cdcf1355e. | ||||
* | Revert "Remove update_attribute." | Rafael Mendonça França | 2012-08-25 | 4 | -7/+71 |
| | | | | | | | | | | | This reverts commit a7f4b0a1231bf3c65db2ad4066da78c3da5ffb01. Conflicts: activerecord/lib/active_record/associations/has_one_association.rb activerecord/lib/active_record/persistence.rb activerecord/test/cases/base_test.rb activerecord/test/cases/dirty_test.rb activerecord/test/cases/timestamp_test.rb | ||||
* | changelog #7449 | Mikhail Dieterle | 2012-08-26 | 1 | -0/+4 |
| | |||||
* | allow to pass Symbol or Proc into :limit option of ↵ | Mikhail Dieterle | 2012-08-26 | 3 | -11/+45 |
| | | | | #accepts_nested_attributes_for | ||||
* | use Hash#fetch to eliminate conditional | Aaron Patterson | 2012-08-24 | 1 | -8/+3 |
| | |||||
* | call methods on AR::Model after ClassMethods module is defined | Aaron Patterson | 2012-08-24 | 1 | -1/+2 |
| | |||||
* | Extract ActiveRecord::SessionStore from Rails | Prem Sichanugrist | 2012-08-24 | 8 | -583/+3 |
| | | | | | This functionality will be available from gem `active_record-session_store` instead. | ||||
* | ivar will always be defined, so stop checking | Aaron Patterson | 2012-08-23 | 1 | -3/+1 |
| | |||||
* | Model.select takes a variable list of arguments. | Isaac Sanders | 2012-08-23 | 2 | -11/+20 |
| | | | | | | This is a cleaner version of #6916. Closes #3165. | ||||
* | Update the documentation for the :autosave option | David Celis | 2012-08-23 | 1 | -1/+3 |
| | | | | | | | | | | | I've noticed a caveat with the :autosave option biting people before. Questions arise about why they must explicitly save an associated object in their own before_save callbacks. I've updated the documentation as such to note to users that the :autosave callback occurs before any user defined callbacks. They must save the associated record themselves if altering it in their own callbacks. Signed-off-by: David Celis <david@davidcelis.com> | ||||
* | Merge pull request #6606 from amatsuda/ar_relation_model_method | Rafael Mendonça França | 2012-08-21 | 2 | -0/+6 |
|\ | | | | | AR::Relation#model would be a better API than AR::Relation#klass | ||||
| * | AR::Relation#model would be a better API than AR::Relation#klass | Akira Matsuda | 2012-06-03 | 2 | -0/+6 |
| | | |||||
* | | Merge pull request #7225 from rails/eager_load | José Valim | 2012-08-21 | 2 | -0/+12 |
|\ \ | | | | | | | Improve eager load on Rails | ||||
| * | | Get rid of config.preload_frameworks in favor of config.eager_load_namespaces | José Valim | 2012-08-21 | 2 | -0/+12 |
| | | | | | | | | | | | | | | | | | | | | | The new option allows any Ruby namespace to be registered and set up for eager load. We are effectively exposing the structure existing in Rails since v3.0 for all developers in order to make their applications thread-safe and CoW friendly. | ||||
* | | | Use a model without counter cache to test read-only attributes | Rafael Mendonça França | 2012-08-21 | 1 | -9/+10 |
|/ / | |||||
* | | reset_counters() was crashing when there were multiple belongs_to ↵ | Dave Desrochers | 2012-08-21 | 8 | -2/+36 |
| | | | | | | | | | | | | associations with the same foreign key. This closes #5200. | ||||
* | | Refactor AR::Result or inherits. Because we have redundant codes about | kennyj | 2012-08-22 | 3 | -18/+4 |
| | | |||||
* | | Rename to test_mysql_strict_mode_disabled_dont_override_global_sql_mode | Yasuo Honda | 2012-08-22 | 2 | -6/+8 |
| | | | | | | | | | | | | | | | | | | Reason since MySQL 5.6.6-m9 the `sql_mode` default value is `NO_ENGINE_SUBSTITUTION`. This default parameter change is out of control from Rails. This test verifies Rails not overriding the default `@@GLOBAL.sql_mode` value by checking if `@@GLOBAL.sql_mode` is the same as `@@SESSION.sql_mode`. | ||||
* | | Use instance_accessor: false instead of instance_writer. | kennyj | 2012-08-21 | 7 | -11/+29 |
| | | |||||
* | | Add CHANGELOG entry for #6986 | Rafael Mendonça França | 2012-08-21 | 1 | -0/+5 |
| | | |||||
* | | Round usec when writing timestamp attribute. | kennyj | 2012-08-21 | 2 | -5/+29 |
| | | |||||
* | | Minor refactoring in Active Record model schema methods | Carlos Antonio da Silva | 2012-08-21 | 1 | -5/+3 |
| | | | | | | | | | | | | * Use each_key instead of generating intermediate keys array. * Use each_with_object instead of inject to build hash. * Use ternary to return instead of if + assignment. | ||||
* | | removing dead code | Aaron Patterson | 2012-08-20 | 1 | -19/+7 |
| | | |||||
* | | define singleton methods rather than adding and removing methods | Aaron Patterson | 2012-08-20 | 1 | -45/+32 |
| | | |||||
* | | remove dead code | Aaron Patterson | 2012-08-20 | 1 | -78/+36 |
| | | |||||
* | | initialize instance variables for transactions to remove conditionals | Aaron Patterson | 2012-08-20 | 2 | -8/+7 |
| | | |||||
* | | This method is useless without a block, so remove test | Aaron Patterson | 2012-08-20 | 1 | -11/+9 |
| | | |||||
* | | remove unused variable | Aaron Patterson | 2012-08-20 | 1 | -1/+1 |
| | | |||||
* | | initialize instance variables to avoid conditionals | Aaron Patterson | 2012-08-20 | 1 | -2/+7 |
| | | |||||
* | | fix whitespace errors | Aaron Patterson | 2012-08-20 | 1 | -2/+2 |
| | | |||||
* | | Remove private verify readonly attr method | Carlos Antonio da Silva | 2012-08-19 | 1 | -5/+1 |
| | | | | | | | | | | | | | | | | | | | | This method was added to be shared between update_attribute and update_column in 50725cec397d4fa0ecf1dda4e6ae845a993f1ba7, but since update_attribute was removed, and update_column has changed to delegate to update_columns, the method is not used anywhere anymore. Also remove "key.to_s" conversion when raising readonly error, since the key is being interpolated. | ||||
* | | Fix "last equality wins" logic in relation merge | Ernie Miller | 2012-08-19 | 2 | -14/+12 |
| | | | | | | | | | | | | This is a real fix (as compared to the band-aid in b127d86c), which uses the recently-added equality methods for ARel nodes. It has the side benefit of simplifying the merge code a bit. | ||||
* | | Merge pull request #7377 from ↵ | Carlos Antonio da Silva | 2012-08-18 | 3 | -1/+11 |
|\ \ | | | | | | | | | | | | | brainopia/use_inversed_parent_for_first_and_last_child Use inversed parent for first and last child of has_many association | ||||
| * | | Use inversed parent for first and last child of has_many association | brainopia | 2012-08-18 | 3 | -1/+11 |
| | | | |||||
* | | | Get rid of some arguments by using the accessors | Carlos Antonio da Silva | 2012-08-18 | 1 | -30/+31 |
| | | | | | | | | | | | | | | | Cleans up a lot of noise from arguments being passed from one method to another. | ||||
* | | | Move multiparameter attribute logic to a class | Carlos Antonio da Silva | 2012-08-18 | 1 | -72/+84 |
| | | | | | | | | | | | | | | | This should make it easier to refactor and improve this code, and remove complexity with params going around here and there. | ||||
* | | | Some more cleanup to use Hash#values_at, and some method docs | Carlos Antonio da Silva | 2012-08-18 | 1 | -3/+7 |
| | | | |||||
* | | | Use cached column information to instantiate time object | Carlos Antonio da Silva | 2012-08-18 | 1 | -6/+6 |
| | | | |||||
* | | | Refactor blank date parameter validation | Carlos Antonio da Silva | 2012-08-18 | 1 | -2/+6 |
| | | | |||||
* | | | Refactor missing parameter validation based on position | Carlos Antonio da Silva | 2012-08-18 | 2 | -8/+12 |
| | | |