Skip to content

Instantly share code, notes, and snippets.

@fridgerator
Created June 11, 2017 01:03
Show Gist options
  • Save fridgerator/0ff004b9bd65edc88f085d5f27be9ccb to your computer and use it in GitHub Desktop.
Save fridgerator/0ff004b9bd65edc88f085d5f27be9ccb to your computer and use it in GitHub Desktop.
def present_json(json)
{% for f in ["id", "name", "other_attribute"] %}
json.field f, self.{{f.id}}
{% end %}
end
def present
JSON.object do |json|
present_json(json)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment