mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-25 07:16:49 +00:00
Implement a NullAdapter.
This adapter basically doesn't do anything, and just serializes the attributes into plain old JSON.
This commit is contained in:
@@ -10,6 +10,13 @@ module ActiveModel
|
||||
|
||||
def self.attributes(*attrs)
|
||||
@_attributes.concat attrs
|
||||
|
||||
|
||||
attrs.each do |attr|
|
||||
define_method attr do
|
||||
object.read_attribute_for_serialization(attr)
|
||||
end unless method_defined?(attr)
|
||||
end
|
||||
end
|
||||
|
||||
attr_accessor :object
|
||||
@@ -17,5 +24,11 @@ module ActiveModel
|
||||
def initialize(object)
|
||||
@object = object
|
||||
end
|
||||
|
||||
def attributes
|
||||
self.class._attributes.dup.each_with_object({}) do |name, hash|
|
||||
hash[name] = send(name)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user