Sha256: 792d325357d23e8b5e6742dba1a57e003fbb99cda4c56f6e54b6568fc8a92003
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
require 'msgpack' require 'grape' require 'grape/msgpack/version' module Grape # Message pack formatter for Grape module Msgpack module Formatter class << self def call(obj, env) return obj.to_msgpack if obj.respond_to?(:to_msgpack) MessagePack.pack(obj) end end end module ErrorFormatter class << self def call(message, backtrace, options = {}, env = nil) result = message.is_a?(Hash) ? message : { error: message } if (options[:rescue_options] || {})[:backtrace] && backtrace && !backtrace.empty? result = result.merge(backtrace: backtrace) end MessagePack.pack(result) end end end module Parser class << self def call(object, env) MessagePack.unpack(object) end end end end end Grape::Formatter.register(:msgpack, Grape::Msgpack::Formatter) Grape::ErrorFormatter.register(:msgpack, Grape::Msgpack::ErrorFormatter) Grape::Parser.register(:msgpack, Grape::Msgpack::Parser) Grape::ContentTypes::CONTENT_TYPES[:msgpack] = 'application/x-msgpack' if defined?(Grape::Entity) class Grape::Entity def to_msgpack(pack = nil) if pack pack.write(serializable_hash) else MessagePack.pack(serializable_hash) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grape-msgpack-0.2.0 | lib/grape/msgpack.rb |