DEBSOURCES
Skip Quicknav
sources / ruby-postmark / 1.25.1-1 / lib / postmark / response_parsers / json.rb
12345678910
require 'json' module Postmark module ResponseParsers module Json def self.decode(data) JSON.parse(data) end end end end