Sha256: bf4a1520a22e9d22eef660684f995f48315ecf5ec5ed09dd7190a5cb8e0896d3

Contents?: true

Size: 887 Bytes

Versions: 21

Compression:

Stored size: 887 Bytes

Contents

# frozen_string_literal: true

module Grape
  module ErrorFormatter
    extend Util::Registrable

    class << self
      def builtin_formatters
        @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(default_elements).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

21 entries across 21 versions & 2 rubygems

Version Path
grape-2.1.3 lib/grape/error_formatter.rb
grape-2.1.2 lib/grape/error_formatter.rb
grape-2.1.1 lib/grape/error_formatter.rb
grape-2.1.0 lib/grape/error_formatter.rb
grape-2.0.0 lib/grape/error_formatter.rb
grape-1.8.0 lib/grape/error_formatter.rb
grape-1.7.1 lib/grape/error_formatter.rb
grape-1.7.0 lib/grape/error_formatter.rb
grape-1.6.2 lib/grape/error_formatter.rb
grape-1.6.1 lib/grape/error_formatter.rb
grape-1.6.0 lib/grape/error_formatter.rb
grape-1.5.3 lib/grape/error_formatter.rb
grape-1.5.2 lib/grape/error_formatter.rb
grape-1.5.1 lib/grape/error_formatter.rb
grape-1.5.0 lib/grape/error_formatter.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.4.0/lib/grape/error_formatter.rb
grape-1.4.0 lib/grape/error_formatter.rb
grape-1.3.3 lib/grape/error_formatter.rb
grape-1.3.2 lib/grape/error_formatter.rb
grape-1.3.1 lib/grape/error_formatter.rb