Class: ApiMaker::ApplicationService

Inherits:
ServicePattern::Service
  • Object
show all
Defined in:
app/services/api_maker/application_service.rb

Instance Method Summary collapse

Instance Method Details

#api_maker_json(object) ⇒ Object



2
3
4
5
6
# File 'app/services/api_maker/application_service.rb', line 2

def api_maker_json(object)
  json = object.to_json
  json.gsub!(/"\{\{(.+?)\}\}"/, "\\1")
  json
end