| | 2 | |
|---|
| | 3 | * Change the implementation of ActiveRecord's attribute reader and writer methods [nzkoz] |
|---|
| | 4 | - Generate Reader and Writer methods which cache attribute values in hashes. This is to avoid repeatedly parsing the same date or integer columns. |
|---|
| | 5 | - Change exception raised when users use find with :select then try to access a skipped column. Plugins could override missing_attribute() to lazily load the columns. |
|---|
| | 6 | - Move method definition to the class, instead of the instance |
|---|
| | 7 | - Always generate the readers, writers and predicate methods. |
|---|
| | 8 | |
|---|