Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | normalizes indentation and whitespace across the project | Xavier Noria | 2016-08-06 | 1 | -1/+1 |
| | |||||
* | Fix test failures caused by #21000 | Sean Griffin | 2015-11-23 | 1 | -0/+1 |
| | |||||
* | Update and fix forbidden attributes tests | Thomas Walpole | 2015-11-03 | 1 | -3/+22 |
| | | | | Add AC::Parameters tests for WhereChain#not | ||||
* | AMo typos | Akira Matsuda | 2015-09-22 | 1 | -1/+1 |
| | |||||
* | Stop skipping a test that now works on Rubinius | claudiob | 2015-05-10 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test was skipped because of an issue that, in the meantime, has been fixed: https://github.com/rubinius/rubinius/issues/3328. Using the latest Rubinius (the one currently on Travis CI), this is the result: ```sh $ ruby --version rubinius 2.5.3 (2.1.0 2482b093 2015-05-10 3.5.1 JI) [x86_64-darwin14.3.0] ``` **Before this PR** ```sh $ ruby -Itest test/cases/attribute_assignment_test.rb Run options: --seed 58569 .....S... Finished in 0.048278s, 186.4203 runs/s, 269.2738 assertions/s. 9 runs, 13 assertions, 0 failures, 0 errors, 1 skips You have skipped tests. Run with --verbose for details. ``` **After this PR** $ ruby -Itest test/cases/attribute_assignment_test.rb Run options: --seed 35720 ......... Finished in 0.029441s, 305.6961 runs/s, 475.5273 assertions/s. 9 runs, 14 assertions, 0 failures, 0 errors, 0 skips ``` | ||||
* | Merge pull request #19173 from robin850/rbx-build | Rafael Mendonça França | 2015-03-02 | 1 | -0/+2 |
|\ | | | | | Improve the Rubinius build | ||||
| * | Skip the failing tests on Rubinius for now | Robin Dupret | 2015-03-02 | 1 | -0/+2 |
| | | |||||
* | | Follow-up to #10776 | Robin Dupret | 2015-02-26 | 1 | -2/+2 |
|/ | | | | | | | | | | The name `ActiveModel::AttributeAssignment::UnknownAttributeError` is too implementation specific so let's move the constant directly under the ActiveModel namespace. Also since this constant used to be under the ActiveRecord namespace, to make the upgrade path easier, let's avoid raising the former constant when we deal with this error on the Active Record side. | ||||
* | ✂️ and 💅 for #10776 | Sean Griffin | 2015-01-23 | 1 | -29/+30 |
| | | | | | Minor style changes across the board. Changed an alias to an explicit method declaration, since the alias will not be documented otherwise. | ||||
* | Extracted `ActiveRecord::AttributeAssignment` to ↵ | Bogdan Gusiev | 2015-01-23 | 1 | -0/+106 |
`ActiveModel::AttributesAssignment` Allows to use it for any object as an includable module. |