Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enable `Layout/EmptyLinesAroundAccessModifier` cop | Ryuta Kamizono | 2019-06-13 | 1 | -1/+0 |
| | | | | | | | | | | | We sometimes say "✂️ newline after `private`" in a code review (e.g. https://github.com/rails/rails/pull/18546#discussion_r23188776, https://github.com/rails/rails/pull/34832#discussion_r244847195). Now `Layout/EmptyLinesAroundAccessModifier` cop have new enforced style `EnforcedStyle: only_before` (https://github.com/rubocop-hq/rubocop/pull/7059). That cop and enforced style will reduce the our code review cost. | ||||
* | Simplify the implementation of custom argument serializers | Rafael Mendonça França | 2018-02-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | We can speed up things for the supported types by keeping the code in the way it was. We can also avoid to loop trough all serializers in the deserialization by trying to access the class already in the Hash. We could also speed up the custom serialization if we define the class that is going to be serialized when registering the serializers, but that will remove the possibility of defining a serialzer for a superclass and have the subclass serialized using it. | ||||
* | Add serializers for Time, Date and DateTime | Rafael Mendonça França | 2018-02-14 | 1 | -0/+2 |
| | |||||
* | Allow serializers to be used either as classes or objects | Rafael Mendonça França | 2018-02-14 | 1 | -12/+10 |
| | |||||
* | Add symbol and duration serializers | Rafael Mendonça França | 2018-02-14 | 1 | -0/+24 |
| | |||||
* | Remove non-default serializers | Evgenii Pecherkin | 2018-02-14 | 1 | -42/+0 |
| | |||||
* | Introduce serializers to ActiveJob | Evgenii Pecherkin | 2018-02-14 | 1 | -0/+42 |