Sha256: a712b30617c03353865be08c6ab933578ae73cad9e9dba6d5d8bc7b526786a4c
Contents?: true
Size: 594 Bytes
Versions: 1
Compression:
Stored size: 594 Bytes
Contents
module ActiveModel class Serializer module Type extend ActiveSupport::Concern included do with_options instance_writer: false, instance_reader: true do |serializer| serializer.class_attribute :_type # @api private end extend ActiveSupport::Autoload end module ClassMethods # Set the JSON API type of a serializer. # @example # class AdminAuthorSerializer < ActiveModel::Serializer # type 'authors' def type(type) self._type = type end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_model_serializers-0.10.0.rc4 | lib/active_model/serializer/type.rb |