Skip to content

Instantly share code, notes, and snippets.

View shanaver's full-sized avatar

Bryan Shanaver shanaver

View GitHub Profile
require "json"
module ApiMacros
def json(content)
JSON.pretty_generate content
end
def decode_json(content)
JSON.parse content, symbolize_names: true