``` attribute :foo do memo_method end def memo_method @memo ||= 'adsf' end ``` Will raise error `RuntimeError: can't modify frozen ...`, due to [this #freeze call](https://github.com/jsonapi-rb/jsonapi-serializable/blob/2f6cc4290474072ce0633481a57a3eb8f59ee10a/lib/jsonapi/serializable/resource.rb#L39). Is there a downside to removing the freeze?