Sha256: c53313f24596ff7ec20ece1675735181b6adfd43330f5d8b0eb74a25bc8d1daa
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
module Support module Formats def json_response response = respond_to?(:last_response) ? last_response : self.response ActiveSupport::JSON.decode(response.body) end def xml_response response = respond_to?(:last_response) ? last_response : self.response ActiveSupport::XmlMini.parse(response.body) end def json_for_http(object, options = {}) normalize_json(Travis::Renderer.json(object, options)) end def json_for_pusher(event, object) normalize_json(Travis::Notifications::Pusher::Payload.new(event, object).to_hash) end def json_for_webhook(object) normalize_json(Travis::Notifications::Webhook::Payload.new(object).to_hash) end def json_for_worker(object, extra = {}) normalize_json(Travis::Notifications::Worker::Payload.new(object, extra).to_hash) end # normalizes datetime objects to strings etc. more similar to what the client would see. def normalize_json(json) json = json.to_json unless json.is_a?(String) JSON.parse(json) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
travis-core-0.0.1 | spec/support/formats.rb |