Sha256: abd34728d1475cb3e4ca23ea8ba86e6c2fb6ba7d375dc3025986123bd347c1eb
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
module ActiveModel class Serializer class ArraySerializer NoSerializerError = Class.new(StandardError) include Enumerable delegate :each, to: :@serializers attr_reader :object, :root, :meta, :meta_key def initialize(resources, options = {}) @root = options[:root] @object = resources @serializers = resources.map do |resource| serializer_class = options.fetch(:serializer) { ActiveModel::Serializer.serializer_for(resource) } if serializer_class.nil? fail NoSerializerError, "No serializer found for resource: #{resource.inspect}" else serializer_class.new(resource, options.except(:serializer)) end end @meta = options[:meta] @meta_key = options[:meta_key] end def json_key key = root || @serializers.first.try(:json_key) || object.try(:name).try(:underscore) key.try(:pluralize) end def paginated? object.respond_to?(:current_page) && object.respond_to?(:total_pages) && object.respond_to?(:size) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_model_serializers-0.10.0.rc3 | lib/active_model/serializer/array_serializer.rb |