mirror of
https://github.com/samsonjs/grape-active_model_serializers.git
synced 2026-04-14 12:05:47 +00:00
10 lines
212 B
Ruby
10 lines
212 B
Ruby
class BlogPost
|
|
include ActiveModel::SerializerSupport
|
|
attr_accessor :title, :body
|
|
|
|
def initialize(params={})
|
|
params.each do |k,v|
|
|
instance_variable_set("@#{k}", v) unless v.nil?
|
|
end
|
|
end
|
|
end
|