Sha256: d9830cd5142f92a557d61639067d9ad15bf66a9b6c871450c2bfc2c2dd4010be

Contents?: true

Size: 776 Bytes

Versions: 1

Compression:

Stored size: 776 Bytes

Contents

module Grape
  module ErrorFormatter
    class << self
      def builtin_formatters
        {
          serializable_hash: Grape::ErrorFormatter::Json,
          json: Grape::ErrorFormatter::Json,
          jsonapi: Grape::ErrorFormatter::Json,
          txt: Grape::ErrorFormatter::Txt,
          xml: Grape::ErrorFormatter::Xml
        }
      end

      def formatters(options)
        builtin_formatters.merge(options[:error_formatters] || {})
      end

      def formatter_for(api_format, options = {})
        spec = formatters(options)[api_format]
        case spec
        when nil
          options[:default_error_formatter] || Grape::ErrorFormatter::Txt
        when Symbol
          method(spec)
        else
          spec
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grape-0.15.0 lib/grape/error_formatter.rb