This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ActiveModelSerializerPlus - enhanced deserialization for ActiveModel/ActiveRecord classes | |
# SUPERSEDED by gem active_model_serializer_plus https://github.com/tknarr/active_model_serializer_plus | |
# Usage: require 'active_model_serializer_plus' in the files your ActiveModel or ActiveRecord classes are | |
# defined in, and then include ActiveModelSerializerPlus::Assignment in the classes. This will add a | |
# default :assignment= method to those classes that's suitable for automatically deserializing classes | |
# serialized with the standard JSON and Xml serializers. | |
# The MIT License (MIT) | |
# |