active_model_serializers 0.10.0 → 0.10.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +216 -2
  3. data/README.md +166 -28
  4. data/lib/action_controller/serialization.rb +23 -3
  5. data/lib/active_model/serializable_resource.rb +2 -0
  6. data/lib/active_model/serializer/adapter/attributes.rb +2 -0
  7. data/lib/active_model/serializer/adapter/base.rb +4 -0
  8. data/lib/active_model/serializer/adapter/json.rb +2 -0
  9. data/lib/active_model/serializer/adapter/json_api.rb +2 -0
  10. data/lib/active_model/serializer/adapter/null.rb +2 -0
  11. data/lib/active_model/serializer/adapter.rb +2 -0
  12. data/lib/active_model/serializer/array_serializer.rb +10 -5
  13. data/lib/active_model/serializer/association.rb +64 -10
  14. data/lib/active_model/serializer/attribute.rb +2 -0
  15. data/lib/active_model/serializer/belongs_to_reflection.rb +6 -3
  16. data/lib/active_model/serializer/collection_serializer.rb +39 -13
  17. data/lib/active_model/serializer/{caching.rb → concerns/caching.rb} +87 -116
  18. data/lib/active_model/serializer/error_serializer.rb +13 -7
  19. data/lib/active_model/serializer/errors_serializer.rb +27 -20
  20. data/lib/active_model/serializer/field.rb +2 -0
  21. data/lib/active_model/serializer/fieldset.rb +2 -0
  22. data/lib/active_model/serializer/has_many_reflection.rb +5 -3
  23. data/lib/active_model/serializer/has_one_reflection.rb +3 -4
  24. data/lib/active_model/serializer/lazy_association.rb +99 -0
  25. data/lib/active_model/serializer/link.rb +23 -0
  26. data/lib/active_model/serializer/lint.rb +136 -130
  27. data/lib/active_model/serializer/null.rb +2 -0
  28. data/lib/active_model/serializer/reflection.rb +132 -67
  29. data/lib/active_model/serializer/version.rb +3 -1
  30. data/lib/active_model/serializer.rb +318 -84
  31. data/lib/active_model_serializers/adapter/attributes.rb +17 -57
  32. data/lib/active_model_serializers/adapter/base.rb +41 -39
  33. data/lib/active_model_serializers/adapter/json.rb +2 -0
  34. data/lib/active_model_serializers/adapter/json_api/deserialization.rb +4 -2
  35. data/lib/active_model_serializers/adapter/json_api/error.rb +2 -0
  36. data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +2 -0
  37. data/lib/active_model_serializers/adapter/json_api/link.rb +3 -1
  38. data/lib/active_model_serializers/adapter/json_api/meta.rb +2 -0
  39. data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +49 -21
  40. data/lib/active_model_serializers/adapter/json_api/relationship.rb +77 -23
  41. data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +41 -10
  42. data/lib/active_model_serializers/adapter/json_api.rb +84 -65
  43. data/lib/active_model_serializers/adapter/null.rb +2 -0
  44. data/lib/active_model_serializers/adapter.rb +9 -1
  45. data/lib/active_model_serializers/callbacks.rb +2 -0
  46. data/lib/active_model_serializers/deprecate.rb +3 -2
  47. data/lib/active_model_serializers/deserialization.rb +4 -0
  48. data/lib/active_model_serializers/json_pointer.rb +2 -0
  49. data/lib/active_model_serializers/logging.rb +2 -0
  50. data/lib/active_model_serializers/lookup_chain.rb +82 -0
  51. data/lib/active_model_serializers/model.rb +111 -28
  52. data/lib/active_model_serializers/railtie.rb +7 -1
  53. data/lib/active_model_serializers/register_jsonapi_renderer.rb +46 -31
  54. data/lib/active_model_serializers/serializable_resource.rb +10 -7
  55. data/lib/active_model_serializers/serialization_context.rb +12 -3
  56. data/lib/active_model_serializers/test/schema.rb +4 -2
  57. data/lib/active_model_serializers/test/serializer.rb +2 -0
  58. data/lib/active_model_serializers/test.rb +2 -0
  59. data/lib/active_model_serializers.rb +35 -10
  60. data/lib/generators/rails/resource_override.rb +3 -1
  61. data/lib/generators/rails/serializer_generator.rb +6 -4
  62. data/lib/grape/active_model_serializers.rb +9 -5
  63. data/lib/grape/formatters/active_model_serializers.rb +21 -2
  64. data/lib/grape/helpers/active_model_serializers.rb +3 -0
  65. data/lib/tasks/rubocop.rake +55 -0
  66. metadata +99 -266
  67. data/.github/ISSUE_TEMPLATE.md +0 -29
  68. data/.github/PULL_REQUEST_TEMPLATE.md +0 -15
  69. data/.gitignore +0 -35
  70. data/.rubocop.yml +0 -104
  71. data/.rubocop_todo.yml +0 -167
  72. data/.simplecov +0 -110
  73. data/.travis.yml +0 -43
  74. data/CONTRIBUTING.md +0 -105
  75. data/Gemfile +0 -53
  76. data/Rakefile +0 -103
  77. data/active_model_serializers.gemspec +0 -66
  78. data/appveyor.yml +0 -24
  79. data/bin/bench +0 -171
  80. data/bin/bench_regression +0 -316
  81. data/bin/serve_benchmark +0 -39
  82. data/docs/ARCHITECTURE.md +0 -126
  83. data/docs/README.md +0 -40
  84. data/docs/STYLE.md +0 -58
  85. data/docs/general/adapters.md +0 -245
  86. data/docs/general/caching.md +0 -52
  87. data/docs/general/configuration_options.md +0 -100
  88. data/docs/general/deserialization.md +0 -100
  89. data/docs/general/getting_started.md +0 -133
  90. data/docs/general/instrumentation.md +0 -40
  91. data/docs/general/key_transforms.md +0 -40
  92. data/docs/general/logging.md +0 -14
  93. data/docs/general/rendering.md +0 -255
  94. data/docs/general/serializers.md +0 -372
  95. data/docs/how-open-source-maintained.jpg +0 -0
  96. data/docs/howto/add_pagination_links.md +0 -139
  97. data/docs/howto/add_root_key.md +0 -51
  98. data/docs/howto/outside_controller_use.md +0 -58
  99. data/docs/howto/passing_arbitrary_options.md +0 -27
  100. data/docs/howto/serialize_poro.md +0 -32
  101. data/docs/howto/test.md +0 -152
  102. data/docs/integrations/ember-and-json-api.md +0 -112
  103. data/docs/integrations/grape.md +0 -19
  104. data/docs/jsonapi/errors.md +0 -56
  105. data/docs/jsonapi/schema/schema.json +0 -366
  106. data/docs/jsonapi/schema.md +0 -151
  107. data/docs/rfcs/0000-namespace.md +0 -106
  108. data/docs/rfcs/template.md +0 -15
  109. data/lib/active_model/serializer/associations.rb +0 -100
  110. data/lib/active_model/serializer/attributes.rb +0 -82
  111. data/lib/active_model/serializer/collection_reflection.rb +0 -7
  112. data/lib/active_model/serializer/configuration.rb +0 -35
  113. data/lib/active_model/serializer/include_tree.rb +0 -111
  114. data/lib/active_model/serializer/links.rb +0 -35
  115. data/lib/active_model/serializer/meta.rb +0 -29
  116. data/lib/active_model/serializer/singular_reflection.rb +0 -7
  117. data/lib/active_model/serializer/type.rb +0 -25
  118. data/lib/active_model_serializers/key_transform.rb +0 -70
  119. data/test/action_controller/adapter_selector_test.rb +0 -53
  120. data/test/action_controller/explicit_serializer_test.rb +0 -134
  121. data/test/action_controller/json/include_test.rb +0 -167
  122. data/test/action_controller/json_api/deserialization_test.rb +0 -112
  123. data/test/action_controller/json_api/errors_test.rb +0 -41
  124. data/test/action_controller/json_api/linked_test.rb +0 -197
  125. data/test/action_controller/json_api/pagination_test.rb +0 -116
  126. data/test/action_controller/json_api/transform_test.rb +0 -181
  127. data/test/action_controller/serialization_scope_name_test.rb +0 -229
  128. data/test/action_controller/serialization_test.rb +0 -469
  129. data/test/active_model_serializers/adapter_for_test.rb +0 -208
  130. data/test/active_model_serializers/json_pointer_test.rb +0 -20
  131. data/test/active_model_serializers/key_transform_test.rb +0 -263
  132. data/test/active_model_serializers/logging_test.rb +0 -77
  133. data/test/active_model_serializers/model_test.rb +0 -9
  134. data/test/active_model_serializers/railtie_test_isolated.rb +0 -63
  135. data/test/active_model_serializers/serialization_context_test_isolated.rb +0 -58
  136. data/test/active_model_serializers/test/schema_test.rb +0 -130
  137. data/test/active_model_serializers/test/serializer_test.rb +0 -62
  138. data/test/active_record_test.rb +0 -9
  139. data/test/adapter/deprecation_test.rb +0 -100
  140. data/test/adapter/json/belongs_to_test.rb +0 -45
  141. data/test/adapter/json/collection_test.rb +0 -90
  142. data/test/adapter/json/has_many_test.rb +0 -45
  143. data/test/adapter/json/transform_test.rb +0 -93
  144. data/test/adapter/json_api/belongs_to_test.rb +0 -155
  145. data/test/adapter/json_api/collection_test.rb +0 -95
  146. data/test/adapter/json_api/errors_test.rb +0 -78
  147. data/test/adapter/json_api/fields_test.rb +0 -87
  148. data/test/adapter/json_api/has_many_embed_ids_test.rb +0 -43
  149. data/test/adapter/json_api/has_many_explicit_serializer_test.rb +0 -96
  150. data/test/adapter/json_api/has_many_test.rb +0 -144
  151. data/test/adapter/json_api/has_one_test.rb +0 -80
  152. data/test/adapter/json_api/json_api_test.rb +0 -35
  153. data/test/adapter/json_api/linked_test.rb +0 -392
  154. data/test/adapter/json_api/links_test.rb +0 -93
  155. data/test/adapter/json_api/pagination_links_test.rb +0 -166
  156. data/test/adapter/json_api/parse_test.rb +0 -137
  157. data/test/adapter/json_api/relationship_test.rb +0 -161
  158. data/test/adapter/json_api/relationships_test.rb +0 -199
  159. data/test/adapter/json_api/resource_identifier_test.rb +0 -85
  160. data/test/adapter/json_api/resource_meta_test.rb +0 -100
  161. data/test/adapter/json_api/toplevel_jsonapi_test.rb +0 -82
  162. data/test/adapter/json_api/transform_test.rb +0 -502
  163. data/test/adapter/json_api/type_test.rb +0 -61
  164. data/test/adapter/json_test.rb +0 -45
  165. data/test/adapter/null_test.rb +0 -23
  166. data/test/adapter/polymorphic_test.rb +0 -171
  167. data/test/adapter_test.rb +0 -67
  168. data/test/array_serializer_test.rb +0 -22
  169. data/test/benchmark/app.rb +0 -65
  170. data/test/benchmark/benchmarking_support.rb +0 -67
  171. data/test/benchmark/bm_caching.rb +0 -119
  172. data/test/benchmark/bm_transform.rb +0 -34
  173. data/test/benchmark/config.ru +0 -3
  174. data/test/benchmark/controllers.rb +0 -84
  175. data/test/benchmark/fixtures.rb +0 -219
  176. data/test/cache_test.rb +0 -485
  177. data/test/collection_serializer_test.rb +0 -110
  178. data/test/fixtures/active_record.rb +0 -78
  179. data/test/fixtures/poro.rb +0 -282
  180. data/test/generators/scaffold_controller_generator_test.rb +0 -24
  181. data/test/generators/serializer_generator_test.rb +0 -57
  182. data/test/grape_test.rb +0 -82
  183. data/test/include_tree/from_include_args_test.rb +0 -26
  184. data/test/include_tree/from_string_test.rb +0 -94
  185. data/test/include_tree/include_args_to_hash_test.rb +0 -64
  186. data/test/lint_test.rb +0 -49
  187. data/test/logger_test.rb +0 -18
  188. data/test/poro_test.rb +0 -9
  189. data/test/serializable_resource_test.rb +0 -83
  190. data/test/serializers/association_macros_test.rb +0 -36
  191. data/test/serializers/associations_test.rb +0 -295
  192. data/test/serializers/attribute_test.rb +0 -151
  193. data/test/serializers/attributes_test.rb +0 -52
  194. data/test/serializers/caching_configuration_test_isolated.rb +0 -170
  195. data/test/serializers/configuration_test.rb +0 -32
  196. data/test/serializers/fieldset_test.rb +0 -14
  197. data/test/serializers/meta_test.rb +0 -196
  198. data/test/serializers/options_test.rb +0 -21
  199. data/test/serializers/read_attribute_for_serialization_test.rb +0 -79
  200. data/test/serializers/root_test.rb +0 -21
  201. data/test/serializers/serialization_test.rb +0 -55
  202. data/test/serializers/serializer_for_test.rb +0 -134
  203. data/test/support/custom_schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
  204. data/test/support/isolated_unit.rb +0 -79
  205. data/test/support/rails5_shims.rb +0 -47
  206. data/test/support/rails_app.rb +0 -45
  207. data/test/support/schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
  208. data/test/support/schemas/active_model_serializers/test/schema_test/my/show.json +0 -6
  209. data/test/support/schemas/custom/show.json +0 -7
  210. data/test/support/schemas/hyper_schema.json +0 -93
  211. data/test/support/schemas/render_using_json_api.json +0 -43
  212. data/test/support/schemas/simple_json_pointers.json +0 -10
  213. data/test/support/serialization_testing.rb +0 -53
  214. data/test/test_helper.rb +0 -57
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: eb97c8740c2530c085ee9186ea27ddd220367fc3
4
- data.tar.gz: 0a768d3ab122abe2c3e7f5b6c00a8dada6872433
2
+ SHA256:
3
+ metadata.gz: 20ead782c7fc4fcfbfd9739a0fcb1957f65284c65c53b619b3b2ac5ed7339bc3
4
+ data.tar.gz: d65bf0ce1f442f19679c36f624fde661f6ce4d97db1f849ac948d104ac3d88d2
5
5
  SHA512:
6
- metadata.gz: 5589022dd6fa160c0a03981cedf46433fb1eb19e4bac5f3489908671e9e0969c48bb7a86cf03d12cf8ce825b2efe3ed6ad1b6594019635470319c899e7964617
7
- data.tar.gz: 989cf413780f12d47a553a7aae5cba33de1625bbc022366b7e4533810b87b151302ed6000116c03234bf2b2048a913048624728a54be87cead848076924cf6ce
6
+ metadata.gz: ff70ab49d8bc826f3247ffefe845a169411a2a0767a92fa5de560894f70914c99bdad75d17cf2403c7a1eeff68a1611dcfa35da175d2f2cc711c5f7961ac522f
7
+ data.tar.gz: d85f6549fb002b01220c0710f3928489d747792b4cd9bf65fef2b712dd3c70a6e628a6e33f306927886e85a0f50d32d195c988c8cb7d6045c30f235d5410f6c6
data/CHANGELOG.md CHANGED
@@ -1,8 +1,221 @@
1
1
  ## 0.10.x
2
2
 
3
- ### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.0...master)
3
+ ### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.10...0-10-stable)
4
4
 
5
- ### v0.10.0 (2016-05-17)
5
+ Breaking changes:
6
+
7
+ Features:
8
+
9
+ Fixes:
10
+
11
+ Misc:
12
+
13
+ ### [v0.10.10 (2019-07-13)](https://github.com/rails-api/active_model_serializers/compare/v0.10.9...v0.10.10)
14
+
15
+ Fixes:
16
+
17
+ - [#2319](https://github.com/rails-api/active_model_serializers/pull/2319) Fixes #2316. (@kylekeesling)
18
+ - Fix Rails 6.0 deprication warnings
19
+ - update test fixture schema to use `timestamps` instead of `timestamp`
20
+ - [#2223](https://github.com/rails-api/active_model_serializers/pull/2223) Support Fieldset in Attributes/JSON adapters documented in [docs/general/fields.md](https://github.com/rails-api/active_model_serializers/blob/0-10-stable/docs/general/fields.md) that worked partially before (@bf4)
21
+ - [#2337](https://github.com/rails-api/active_model_serializers/pull/2337) fix incorrect belongs_to serialization when foreign_key on object and belongs_to is blank (@InteNs)
22
+ - Fixes incorrect json-api generation when `jsonapi_use_foreign_key_on_belongs_to_relationship` is `true` and the relationship is blank
23
+ - [#2172](https://github.com/rails-api/active_model_serializers/pull/2172) Preserve the namespace when falling back to a superclass serializer
24
+
25
+ Misc:
26
+
27
+ - [#2327](https://github.com/rails-api/active_model_serializers/pull/2327) Add support for Ruby 2.6 on Travis CI (@wasifhossain)
28
+ - [#2304](https://github.com/rails-api/active_model_serializers/pull/2304) Slim down bundled gem by excluding test files and docs (@greysteil)
29
+
30
+ ### [v0.10.9 (2019-02-08)](https://github.com/rails-api/active_model_serializers/compare/v0.10.8...v0.10.9)
31
+
32
+ Fixes:
33
+
34
+ - [#2288](https://github.com/rails-api/active_model_serializers/pull/2288)
35
+ Change the fetch method to deal with recyclable key cache strategy.
36
+ Fixes #2287. (@cintamani, @wasifhossain)
37
+ - [#2307](https://github.com/rails-api/active_model_serializers/pull/2307) Falsey attribute values should not be reevaluated.
38
+
39
+ Misc:
40
+
41
+ - [#2309](https://github.com/rails-api/active_model_serializers/pull/2309) Performance and memory usage fixes
42
+
43
+ ### [v0.10.8 (2018-11-01)](https://github.com/rails-api/active_model_serializers/compare/v0.10.7...v0.10.8)
44
+
45
+ Features:
46
+ - [#2279](https://github.com/rails-api/active_model_serializers/pull/2279) Support condition options in serializer link statements
47
+
48
+ Fixes:
49
+
50
+ - [#2296](https://github.com/rails-api/active_model_serializers/pull/2296) Fixes #2295 (@Hirurg103)
51
+ - Fix finding of namespaced serializer and non-namespaced model.
52
+ - [#2289](https://github.com/rails-api/active_model_serializers/pull/2289) Fixes #2255 (@f-mer)
53
+ - Fix autoloading race condition, especially in Rails 5.
54
+ - [#2299](https://github.com/rails-api/active_model_serializers/pull/2299) Fixes #2270 (@chau-bao-long via #2276)
55
+ - Fix reflection thread-safety bug
56
+
57
+ ### [v0.10.7 (2017-11-14)](https://github.com/rails-api/active_model_serializers/compare/v0.10.6...v0.10.7)
58
+
59
+ Regressions Fixed From v0.10.6:
60
+
61
+ - [#2211](https://github.com/rails-api/active_model_serializers/pull/2211). Fixes #2125, #2160. (@bf4)
62
+ - Fix polymorphic belongs_to tests; passes on v0.10.5, fails on v0.10.6
63
+ - Fix JSON:API polymorphic type regression from v0.10.5
64
+ - Fix JSON:API: for_type_and_id should always inflect_type
65
+ ```
66
+ Should Serializer._type ever be inflected?
67
+ Right now, it won't be, but association.serializer._type will be inflected.
68
+
69
+ That's the current behavior.
70
+ ```
71
+ - [#2216](https://github.com/rails-api/active_model_serializers/pull/2216). Fixes #2132, #2180. (@bf4)
72
+ - Fix JSON:API: Serialize resource type for unpersisted records (blank id)
73
+ - [#2218](https://github.com/rails-api/active_model_serializers/pull/2218). Fixes #2178. (@bf4)
74
+ - Fix JSON:API: Make using foreign key on belongs_to opt-in. No effect on polymorphic relationships.
75
+ ```
76
+ # set to true to opt-in
77
+ ActiveModelSerializer.config.jsonapi_use_foreign_key_on_belongs_to_relationship = true
78
+ ```
79
+
80
+ Features:
81
+
82
+ - [#2136](https://github.com/rails-api/active_model_serializers/pull/2136) Enable inclusion of sideloaded relationship objects by `key`. (@caomania)
83
+ - [#2021](https://github.com/rails-api/active_model_serializers/pull/2021) ActiveModelSerializers::Model#attributes. Originally in [#1982](https://github.com/rails-api/active_model_serializers/pull/1982). (@bf4)
84
+ - [#2130](https://github.com/rails-api/active_model_serializers/pull/2130) Allow serialized ID to be overwritten for belongs-to relationships. (@greysteil)
85
+ - [#2189](https://github.com/rails-api/active_model_serializers/pull/2189)
86
+ Update version constraint for jsonapi-renderer to `['>= 0.1.1.beta1', '< 0.3']`
87
+ (@tagliala)
88
+
89
+ Fixes:
90
+
91
+ - [#2022](https://github.com/rails-api/active_model_serializers/pull/2022) Mutation of ActiveModelSerializers::Model now changes the attributes. Originally in [#1984](https://github.com/rails-api/active_model_serializers/pull/1984). (@bf4)
92
+ - [#2200](https://github.com/rails-api/active_model_serializers/pull/2200) Fix deserialization of polymorphic relationships. (@dennis95stumm)
93
+ - [#2214](https://github.com/rails-api/active_model_serializers/pull/2214) Fail if unable to infer collection type with json adapter. (@jmeredith16)
94
+ - [#2149](https://github.com/rails-api/active_model_serializers/pull/2149) Always include self, first, last pagination link. (@mecampbellsoup)
95
+ - [#2179](https://github.com/rails-api/active_model_serializers/pull/2179) Fixes #2173, Pass block to Enumerator.new. (@drn)
96
+
97
+ Misc:
98
+
99
+ - [#2176](https://github.com/rails-api/active_model_serializers/pull/2176) Documentation for global adapter config. (@mrpinsky)
100
+ - [#2215](https://github.com/rails-api/active_model_serializers/pull/2215) Update `serializers.md` documentation to denote alternate use cases for `scope`. (@stratigos)
101
+ - [#2212](https://github.com/rails-api/active_model_serializers/pull/2212) Remove legacy has_many_embed_ids test. (@bf4)
102
+
103
+ ### [v0.10.6 (2017-05-01)](https://github.com/rails-api/active_model_serializers/compare/v0.10.5...v0.10.6)
104
+
105
+ Fixes:
106
+
107
+ - [#1857](https://github.com/rails-api/active_model_serializers/pull/1857) JSON:API does not load belongs_to relation to get identifier id. (@bf4)
108
+ - [#2119](https://github.com/rails-api/active_model_serializers/pull/2119) JSON:API returns null resource object identifier when 'id' is null. (@bf4)
109
+ - [#2093](https://github.com/rails-api/active_model_serializers/pull/2093) undef problematic Serializer methods: display, select. (@bf4)
110
+
111
+ Misc:
112
+
113
+ - [#2104](https://github.com/rails-api/active_model_serializers/pull/2104) Documentation for serializers and rendering. (@cassidycodes)
114
+ - [#2081](https://github.com/rails-api/active_model_serializers/pull/2081) Documentation for `include` option in adapters. (@charlie-wasp)
115
+ - [#2120](https://github.com/rails-api/active_model_serializers/pull/2120) Documentation for association options: foreign_key, type, class_name, namespace. (@bf4)
116
+
117
+ ### [v0.10.5 (2017-03-07)](https://github.com/rails-api/active_model_serializers/compare/v0.10.4...v0.10.5)
118
+
119
+ Breaking changes:
120
+
121
+ Features:
122
+
123
+ - [#2021](https://github.com/rails-api/active_model_serializers/pull/2021) ActiveModelSerializers::Model#attributes. Originally in [#1982](https://github.com/rails-api/active_model_serializers/pull/1982). (@bf4)
124
+ - [#2057](https://github.com/rails-api/active_model_serializers/pull/2057)
125
+ Update version constraint for jsonapi-renderer to `['>= 0.1.1.beta1', '< 0.2']`
126
+ (@jaredbeck)
127
+
128
+ Fixes:
129
+
130
+ - [#2022](https://github.com/rails-api/active_model_serializers/pull/2022) Mutation of ActiveModelSerializers::Model now changes the attributes. Originally in [#1984](https://github.com/rails-api/active_model_serializers/pull/1984). (@bf4)
131
+
132
+ Misc:
133
+
134
+ - [#2055](https://github.com/rails-api/active_model_serializers/pull/2055)
135
+ Replace deprecated dependency jsonapi with jsonapi-renderer. (@jaredbeck)
136
+ - [#2021](https://github.com/rails-api/active_model_serializers/pull/2021) Make test attributes explicit. Tests have Model#associations. (@bf4)
137
+ - [#1981](https://github.com/rails-api/active_model_serializers/pull/1981) Fix relationship link documentation. (@groyoh)
138
+ - [#2035](https://github.com/rails-api/active_model_serializers/pull/2035) Document how to disable the logger. (@MSathieu)
139
+ - [#2039](https://github.com/rails-api/active_model_serializers/pull/2039) Documentation fixes. (@biow0lf)
140
+
141
+ ### [v0.10.4 (2017-01-06)](https://github.com/rails-api/active_model_serializers/compare/v0.10.3...v0.10.4)
142
+
143
+ Misc:
144
+
145
+ - [#2005](https://github.com/rails-api/active_model_serializers/pull/2005) Update jsonapi runtime dependency to 0.1.1.beta6, support Ruby 2.4. (@kofronpi)
146
+ - [#1993](https://github.com/rails-api/active_model_serializers/pull/1993) Swap out KeyTransform for CaseTransform gem for the possibility of native extension use. (@NullVoxPopuli)
147
+
148
+ ### [v0.10.3 (2016-11-21)](https://github.com/rails-api/active_model_serializers/compare/v0.10.2...v0.10.3)
149
+
150
+ Fixes:
151
+
152
+ - [#1973](https://github.com/rails-api/active_model_serializers/pull/1973) Fix namespace lookup for collections and has_many relationships (@groyoh)
153
+ - [#1887](https://github.com/rails-api/active_model_serializers/pull/1887) Make the comment reflect what the function does (@johnnymo87)
154
+ - [#1890](https://github.com/rails-api/active_model_serializers/issues/1890) Ensure generator inherits from ApplicationSerializer when available (@richmolj)
155
+ - [#1922](https://github.com/rails-api/active_model_serializers/pull/1922) Make railtie an optional dependency in runtime (@ggpasqualino)
156
+ - [#1930](https://github.com/rails-api/active_model_serializers/pull/1930) Ensure valid jsonapi when relationship has no links or data (@richmolj)
157
+
158
+ Features:
159
+
160
+ - [#1757](https://github.com/rails-api/active_model_serializers/pull/1757) Make serializer lookup chain configurable. (@NullVoxPopuli)
161
+ - [#1968](https://github.com/rails-api/active_model_serializers/pull/1968) (@NullVoxPopuli)
162
+ - Add controller namespace to default controller lookup
163
+ - Provide a `namespace` render option
164
+ - document how set the namespace in the controller for implicit lookup.
165
+ - [#1791](https://github.com/rails-api/active_model_serializers/pull/1791) (@bf4, @youroff, @NullVoxPopuli)
166
+ - Added `jsonapi_namespace_separator` config option.
167
+ - [#1889](https://github.com/rails-api/active_model_serializers/pull/1889) Support key transformation for Attributes adapter (@iancanderson, @danbee)
168
+ - [#1917](https://github.com/rails-api/active_model_serializers/pull/1917) Add `jsonapi_pagination_links_enabled` configuration option (@richmolj)
169
+ - [#1797](https://github.com/rails-api/active_model_serializers/pull/1797) Only include 'relationships' when sideloading (@richmolj)
170
+
171
+ Fixes:
172
+
173
+ - [#1833](https://github.com/rails-api/active_model_serializers/pull/1833) Remove relationship links if they are null (@groyoh)
174
+ - [#1881](https://github.com/rails-api/active_model_serializers/pull/1881) ActiveModelSerializers::Model correctly works with string keys (@yevhene)
175
+
176
+ Misc:
177
+ - [#1767](https://github.com/rails-api/active_model_serializers/pull/1767) Replace raising/rescuing `CollectionSerializer::NoSerializerError`,
178
+ throw/catch `:no_serializer`. (@bf4)
179
+ - [#1839](https://github.com/rails-api/active_model_serializers/pull/1839) `fields` tests demonstrating usage for both attributes and relationships. (@NullVoxPopuli)
180
+ - [#1812](https://github.com/rails-api/active_model_serializers/pull/1812) add a code of conduct (@corainchicago)
181
+
182
+ - [#1878](https://github.com/rails-api/active_model_serializers/pull/1878) Cache key generation for serializers now uses `ActiveSupport::Cache.expand_cache_key` instead of `Array#join` by default and is also overridable. This change should be backward-compatible. (@markiz)
183
+
184
+ - [#1799](https://github.com/rails-api/active_model_serializers/pull/1799) Add documentation for setting the adapter. (@cassidycodes)
185
+ - [#1909](https://github.com/rails-api/active_model_serializers/pull/1909) Add documentation for relationship links. (@vasilakisfil, @NullVoxPopuli)
186
+ - [#1959](https://github.com/rails-api/active_model_serializers/pull/1959) Add documentation for root. (@shunsuke227ono)
187
+ - [#1967](https://github.com/rails-api/active_model_serializers/pull/1967) Improve type method documentation. (@yukideluxe)
188
+
189
+ ### [v0.10.2 (2016-07-05)](https://github.com/rails-api/active_model_serializers/compare/v0.10.1...v0.10.2)
190
+
191
+ Fixes:
192
+ - [#1814](https://github.com/rails-api/active_model_serializers/pull/1814) Ensuring read_multi works with fragment cache
193
+ - [#1848](https://github.com/rails-api/active_model_serializers/pull/1848) Redefine associations on inherited serializers. (@EhsanYousefi)
194
+
195
+ Misc:
196
+ - [#1808](https://github.com/rails-api/active_model_serializers/pull/1808) Adds documentation for `fields` option. (@luizkowalski)
197
+
198
+ ### [v0.10.1 (2016-06-16)](https://github.com/rails-api/active_model_serializers/compare/v0.10.0...v0.10.1)
199
+
200
+ Features:
201
+ - [#1668](https://github.com/rails-api/active_model_serializers/pull/1668) Exclude nil and empty links. (@sigmike)
202
+ - [#1426](https://github.com/rails-api/active_model_serializers/pull/1426) Add ActiveModelSerializers.config.default_includes (@empact)
203
+
204
+ Fixes:
205
+ - [#1754](https://github.com/rails-api/active_model_serializers/pull/1754) Fixes #1759, Grape integration, improves serialization_context
206
+ missing error message on pagination. Document overriding CollectionSerializer#paginated?. (@bf4)
207
+ Moved serialization_context creation to Grape formatter, so resource serialization works without explicit calls to the `render` helper method.
208
+ Added Grape collection tests. (@onomated)
209
+ - [#1287](https://github.com/rails-api/active_model_serializers/pull/1287) Pass `fields` options from adapter to serializer. (@vasilakisfil)
210
+ - [#1710](https://github.com/rails-api/active_model_serializers/pull/1710) Prevent association loading when `include_data` option
211
+ is set to `false`. (@groyoh)
212
+ - [#1747](https://github.com/rails-api/active_model_serializers/pull/1747) Improve jsonapi mime type registration for Rails 5 (@remear)
213
+
214
+ Misc:
215
+ - [#1734](https://github.com/rails-api/active_model_serializers/pull/1734) Adds documentation for conditional attribute (@lambda2)
216
+ - [#1685](https://github.com/rails-api/active_model_serializers/pull/1685) Replace `IncludeTree` with `IncludeDirective` from the jsonapi gem.
217
+
218
+ ### [v0.10.0 (2016-05-17)](https://github.com/rails-api/active_model_serializers/compare/4a2d9853ba7...v0.10.0)
6
219
 
7
220
  Breaking changes:
8
221
  - [#1662](https://github.com/rails-api/active_model_serializers/pull/1662) Drop support for Rails 4.0 and Ruby 2.0.0. (@remear)
@@ -22,6 +235,7 @@ Fixes:
22
235
 
23
236
  Misc:
24
237
  - [#1673](https://github.com/rails-api/active_model_serializers/pull/1673) Adds "How to" guide on using AMS with POROs (@DrSayre)
238
+ - [#1730](https://github.com/rails-api/active_model_serializers/pull/1730) Adds documentation for overriding default serializer based on conditions (@groyoh/@cgmckeever)
25
239
 
26
240
  ### [v0.10.0.rc5 (2016-04-04)](https://github.com/rails-api/active_model_serializers/compare/v0.10.0.rc4...v0.10.0.rc5)
27
241
 
data/README.md CHANGED
@@ -24,17 +24,6 @@
24
24
  </tr>
25
25
  </table>
26
26
 
27
-
28
- ## Documentation
29
-
30
- - [0.10 (master) Documentation](https://github.com/rails-api/active_model_serializers/tree/master)
31
- - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/v0.10.0)
32
- - [Guides](docs)
33
- - [0.9 (0-9-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-9-stable)
34
- - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/0-9-stable)
35
- - [0.8 (0-8-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-8-stable)
36
- - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/0-8-stable)
37
-
38
27
  ## About
39
28
 
40
29
  ActiveModelSerializers brings convention over configuration to your JSON generation.
@@ -50,33 +39,22 @@ resource serialization. The serialization has the `#as_json`, `#to_json` and `#s
50
39
  methods used by the Rails JSON Renderer. (SerializableResource actually delegates
51
40
  these methods to the adapter.)
52
41
 
53
- By default ActiveModelSerializers will use the **Attributes Adapter**.
42
+ By default ActiveModelSerializers will use the **Attributes Adapter** (no JSON root).
54
43
  But we strongly advise you to use **JsonApi Adapter**, which
55
44
  follows 1.0 of the format specified in [jsonapi.org/format](http://jsonapi.org/format).
56
45
  Check how to change the adapter in the sections below.
57
46
 
58
- ## RELEASE CANDIDATE, PLEASE READ
59
-
60
- This is the **master** branch of ActiveModelSerializers.
61
-
62
- It will become the `0.10.0` release when it's ready. Currently this is a release candidate.
63
-
64
47
  `0.10.x` is **not** backward compatible with `0.9.x` nor `0.8.x`.
65
48
 
66
- `0.10.x` will be based on the `0.8.0` code, but with a more flexible
49
+ `0.10.x` is based on the `0.8.0` code, but with a more flexible
67
50
  architecture. We'd love your help. [Learn how you can help here.](CONTRIBUTING.md)
68
51
 
69
- It is generally safe and recommended to use the master branch.
70
-
71
- For more information, see the post '[The future of
72
- AMS](https://medium.com/@joaomdmoura/the-future-of-ams-e5f9047ca7e9)'.
73
-
74
52
  ## Installation
75
53
 
76
54
  Add this line to your application's Gemfile:
77
55
 
78
56
  ```
79
- gem 'active_model_serializers'
57
+ gem 'active_model_serializers', '~> 0.10.0'
80
58
  ```
81
59
 
82
60
  And then execute:
@@ -103,8 +81,30 @@ If you'd like to chat, we have a [community slack](http://amserializers.herokuap
103
81
 
104
82
  Thanks!
105
83
 
84
+ ## Documentation
85
+
86
+ If you're reading this at https://github.com/rails-api/active_model_serializers you are
87
+ reading documentation for our `master`, which may include features that have not
88
+ been released yet. Please see below for the documentation relevant to you.
89
+
90
+ - [0.10 (master) Documentation](https://github.com/rails-api/active_model_serializers/tree/master)
91
+ - [0.10.6 (latest release) Documentation](https://github.com/rails-api/active_model_serializers/tree/v0.10.6)
92
+ - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/gems/active_model_serializers/0.10.6)
93
+ - [Guides](docs)
94
+ - [0.9 (0-9-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-9-stable)
95
+ - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/0-9-stable)
96
+ - [0.8 (0-8-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-8-stable)
97
+ - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/0-8-stable)
98
+
99
+
106
100
  ## High-level behavior
107
101
 
102
+ Choose an adapter from [adapters](lib/active_model_serializers/adapter):
103
+
104
+ ``` ruby
105
+ ActiveModelSerializers.config.adapter = :json_api # Default: `:attributes`
106
+ ```
107
+
108
108
  Given a [serializable model](lib/active_model/serializer/lint.rb):
109
109
 
110
110
  ```ruby
@@ -114,7 +114,7 @@ class SomeResource < ActiveRecord::Base
114
114
  end
115
115
  # or
116
116
  class SomeResource < ActiveModelSerializers::Model
117
- attr_accessor :title, :body
117
+ attributes :title, :body
118
118
  end
119
119
  ```
120
120
 
@@ -160,8 +160,146 @@ serializer = SomeSerializer.new(resource, serializer_options)
160
160
  serializer.attributes
161
161
  serializer.associations
162
162
  ```
163
- See [ARCHITECTURE.md](docs/ARCHITECTURE.md) for more information.
164
163
 
165
- # Contributing
164
+ ## Architecture
165
+
166
+ This section focuses on architecture the 0.10.x version of ActiveModelSerializers. If you are interested in the architecture of the 0.8 or 0.9 versions,
167
+ please refer to the [0.8 README](https://github.com/rails-api/active_model_serializers/blob/0-8-stable/README.md) or
168
+ [0.9 README](https://github.com/rails-api/active_model_serializers/blob/0-9-stable/README.md).
169
+
170
+ The original design is also available [here](https://github.com/rails-api/active_model_serializers/blob/d72b66d4c5355b0ff0a75a04895fcc4ea5b0c65e/README.textile).
171
+
172
+ ### ActiveModel::Serializer
173
+
174
+ An **`ActiveModel::Serializer`** wraps a [serializable resource](https://github.com/rails/rails/blob/4-2-stable/activemodel/lib/active_model/serialization.rb)
175
+ and exposes an `attributes` method, among a few others.
176
+ It allows you to specify which attributes and associations should be represented in the serializatation of the resource.
177
+ It requires an adapter to transform its attributes into a JSON document; it cannot be serialized itself.
178
+ It may be useful to think of it as a
179
+ [presenter](http://blog.steveklabnik.com/posts/2011-09-09-better-ruby-presenters).
180
+
181
+ #### ActiveModel::CollectionSerializer
182
+
183
+ The **`ActiveModel::CollectionSerializer`** represents a collection of resources as serializers
184
+ and, if there is no serializer, primitives.
185
+
186
+ ### ActiveModelSerializers::Adapter::Base
187
+
188
+ The **`ActiveModelSerializers::Adapter::Base`** describes the structure of the JSON document generated from a
189
+ serializer. For example, the `Attributes` example represents each serializer as its
190
+ unmodified attributes. The `JsonApi` adapter represents the serializer as a [JSON
191
+ API](http://jsonapi.org/) document.
192
+
193
+ ### ActiveModelSerializers::SerializableResource
194
+
195
+ The **`ActiveModelSerializers::SerializableResource`** acts to coordinate the serializer(s) and adapter
196
+ to an object that responds to `to_json`, and `as_json`. It is used in the controller to
197
+ encapsulate the serialization resource when rendered. However, it can also be used on its own
198
+ to serialize a resource outside of a controller, as well.
199
+
200
+ ### Primitive handling
201
+
202
+ Definitions: A primitive is usually a String or Array. There is no serializer
203
+ defined for them; they will be serialized when the resource is converted to JSON (`as_json` or
204
+ `to_json`). (The below also applies for any object with no serializer.)
205
+
206
+ - ActiveModelSerializers doesn't handle primitives passed to `render json:` at all.
207
+
208
+ Internally, if no serializer can be found in the controller, the resource is not decorated by
209
+ ActiveModelSerializers.
210
+
211
+ - However, when a primitive value is an attribute or in a collection, it is not modified.
212
+
213
+ When serializing a collection and the collection serializer (CollectionSerializer) cannot
214
+ identify a serializer for a resource in its collection, it throws [`:no_serializer`](https://github.com/rails-api/active_model_serializers/issues/1191#issuecomment-142327128).
215
+ For example, when caught by `Reflection#build_association`, and the association value is set directly:
216
+
217
+ ```ruby
218
+ reflection_options[:virtual_value] = association_value.try(:as_json) || association_value
219
+ ```
220
+
221
+ (which is called by the adapter as `serializer.associations(*)`.)
222
+
223
+ ### How options are parsed
224
+
225
+ High-level overview:
226
+
227
+ - For a **collection**
228
+ - `:serializer` specifies the collection serializer and
229
+ - `:each_serializer` specifies the serializer for each resource in the collection.
230
+ - For a **single resource**, the `:serializer` option is the resource serializer.
231
+ - Options are partitioned in serializer options and adapter options. Keys for adapter options are specified by
232
+ [`ADAPTER_OPTION_KEYS`](https://github.com/rails-api/active_model_serializers/blob/master/lib/active_model_serializers/serializable_resource.rb#L5).
233
+ The remaining options are serializer options.
234
+
235
+ Details:
236
+
237
+ 1. **ActionController::Serialization**
238
+ 1. `serializable_resource = ActiveModelSerializers::SerializableResource.new(resource, options)`
239
+ 1. `options` are partitioned into `adapter_opts` and everything else (`serializer_opts`).
240
+ The `adapter_opts` keys are defined in [`ActiveModelSerializers::SerializableResource::ADAPTER_OPTION_KEYS`](lib/active_model_serializers/serializable_resource.rb#L5).
241
+ 1. **ActiveModelSerializers::SerializableResource**
242
+ 1. `if serializable_resource.serializer?` (there is a serializer for the resource, and an adapter is used.)
243
+ - Where `serializer?` is `use_adapter? && !!(serializer)`
244
+ - Where `use_adapter?`: 'True when no explicit adapter given, or explicit value is truthy (non-nil);
245
+ False when explicit adapter is falsy (nil or false)'
246
+ - Where `serializer`:
247
+ 1. from explicit `:serializer` option, else
248
+ 2. implicitly from resource `ActiveModel::Serializer.serializer_for(resource)`
249
+ 1. A side-effect of checking `serializer` is:
250
+ - The `:serializer` option is removed from the serializer_opts hash
251
+ - If the `:each_serializer` option is present, it is removed from the serializer_opts hash and set as the `:serializer` option
252
+ 1. The serializer and adapter are created as
253
+ 1. `serializer_instance = serializer.new(resource, serializer_opts)`
254
+ 2. `adapter_instance = ActiveModel::Serializer::Adapter.create(serializer_instance, adapter_opts)`
255
+ 1. **ActiveModel::Serializer::CollectionSerializer#new**
256
+ 1. If the `serializer_instance` was a `CollectionSerializer` and the `:serializer` serializer_opts
257
+ is present, then [that serializer is passed into each resource](https://github.com/rails-api/active_model_serializers/blob/a54d237e2828fe6bab1ea5dfe6360d4ecc8214cd/lib/active_model/serializer/array_serializer.rb#L14-L16).
258
+ 1. **ActiveModel::Serializer#attributes** is used by the adapter to get the attributes for
259
+ resource as defined by the serializer.
260
+
261
+ (In Rails, the `options` are also passed to the `as_json(options)` or `to_json(options)`
262
+ methods on the resource serialization by the Rails JSON renderer. They are, therefore, important
263
+ to know about, but not part of ActiveModelSerializers.)
264
+
265
+ ### What does a 'serializable resource' look like?
266
+
267
+ - An `ActiveRecord::Base` object.
268
+ - Any Ruby object that passes the
269
+ [Lint](https://www.rubydoc.info/gems/active_model_serializers/ActiveModel/Serializer/Lint/Tests)
270
+ [(code)](lib/active_model/serializer/lint.rb).
271
+
272
+ ActiveModelSerializers provides a
273
+ [`ActiveModelSerializers::Model`](https://github.com/rails-api/active_model_serializers/blob/master/lib/active_model_serializers/model.rb),
274
+ which is a simple serializable PORO (Plain-Old Ruby Object).
275
+
276
+ `ActiveModelSerializers::Model` may be used either as a reference implementation, or in production code.
277
+
278
+ ```ruby
279
+ class MyModel < ActiveModelSerializers::Model
280
+ attributes :id, :name, :level
281
+ end
282
+ ```
283
+
284
+ The default serializer for `MyModel` would be `MyModelSerializer` whether MyModel is an
285
+ ActiveRecord::Base object or not.
286
+
287
+ Outside of the controller the rules are **exactly** the same as for records. For example:
288
+
289
+ ```ruby
290
+ render json: MyModel.new(level: 'awesome'), adapter: :json
291
+ ```
292
+
293
+ would be serialized the same as
294
+
295
+ ```ruby
296
+ ActiveModelSerializers::SerializableResource.new(MyModel.new(level: 'awesome'), adapter: :json).as_json
297
+ ```
298
+
299
+ ## Semantic Versioning
300
+
301
+ This project adheres to [semver](http://semver.org/)
302
+
303
+ ## Contributing
166
304
 
167
305
  See [CONTRIBUTING.md](CONTRIBUTING.md)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_support/core_ext/class/attribute'
2
4
  require 'active_model_serializers/serialization_context'
3
5
 
@@ -16,19 +18,37 @@ module ActionController
16
18
  included do
17
19
  class_attribute :_serialization_scope
18
20
  self._serialization_scope = :current_user
21
+
22
+ attr_writer :namespace_for_serializer
23
+ end
24
+
25
+ def namespace_for_serializer
26
+ @namespace_for_serializer ||= namespace_for_class(self.class) unless namespace_for_class(self.class) == Object
27
+ end
28
+
29
+ def namespace_for_class(klass)
30
+ if Module.method_defined?(:module_parent)
31
+ klass.module_parent
32
+ else
33
+ klass.parent
34
+ end
19
35
  end
20
36
 
21
37
  def serialization_scope
22
- send(_serialization_scope) if _serialization_scope &&
23
- respond_to?(_serialization_scope, true)
38
+ return unless _serialization_scope && respond_to?(_serialization_scope, true)
39
+
40
+ send(_serialization_scope)
24
41
  end
25
42
 
26
43
  def get_serializer(resource, options = {})
27
- if !use_adapter?
44
+ unless use_adapter?
28
45
  warn 'ActionController::Serialization#use_adapter? has been removed. '\
29
46
  "Please pass 'adapter: false' or see ActiveSupport::SerializableResource.new"
30
47
  options[:adapter] = false
31
48
  end
49
+
50
+ options.fetch(:namespace) { options[:namespace] = namespace_for_serializer }
51
+
32
52
  serializable_resource = ActiveModelSerializers::SerializableResource.new(resource, options)
33
53
  serializable_resource.serialization_scope ||= options.fetch(:scope) { serialization_scope }
34
54
  serializable_resource.serialization_scope_name = options.fetch(:scope_name) { _serialization_scope }
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'set'
2
4
 
3
5
  module ActiveModel
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveModel
2
4
  class Serializer
3
5
  module Adapter
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveModel
2
4
  class Serializer
3
5
  module Adapter
@@ -7,9 +9,11 @@ module ActiveModel
7
9
  deprecate :inherited, 'ActiveModelSerializers::Adapter::Base.'
8
10
  end
9
11
 
12
+ # :nocov:
10
13
  def initialize(serializer, options = {})
11
14
  super(ActiveModelSerializers::Adapter::Base.new(serializer, options))
12
15
  end
16
+ # :nocov:
13
17
  end
14
18
  end
15
19
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveModel
2
4
  class Serializer
3
5
  module Adapter
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveModel
2
4
  class Serializer
3
5
  module Adapter
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveModel
2
4
  class Serializer
3
5
  module Adapter
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_model_serializers/adapter'
2
4
  require 'active_model_serializers/deprecate'
3
5
 
@@ -1,9 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_model/serializer/collection_serializer'
2
- class ActiveModel::Serializer
3
- class ArraySerializer < CollectionSerializer
4
- class << self
5
- extend ActiveModelSerializers::Deprecate
6
- deprecate :new, 'ActiveModel::Serializer::CollectionSerializer.'
4
+
5
+ module ActiveModel
6
+ class Serializer
7
+ class ArraySerializer < CollectionSerializer
8
+ class << self
9
+ extend ActiveModelSerializers::Deprecate
10
+ deprecate :new, 'ActiveModel::Serializer::CollectionSerializer.'
11
+ end
7
12
  end
8
13
  end
9
14
  end