Class: NucleusCore::JsonResponse

Inherits:
ResponseAdapter show all
Defined in:
lib/nucleus_core/response_adapters/json_response.rb

Instance Attribute Summary

Attributes inherited from SimpleObject

#__attributes__

Instance Method Summary collapse

Methods inherited from SimpleObject

#to_h

Constructor Details

#initialize(attrs = {}) ⇒ JsonResponse

Returns a new instance of JsonResponse.



4
5
6
7
8
# File 'lib/nucleus_core/response_adapters/json_response.rb', line 4

def initialize(attrs={})
  attrs = attrs.merge(type: "application/json")

  super(attrs)
end