Sha256: 695d5b74be28a996310067c043e885930764a8b698d36da7c4341c897ab2973a

Contents?: true

Size: 854 Bytes

Versions: 3

Compression:

Stored size: 854 Bytes

Contents

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

3 entries across 3 versions & 2 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.2.5/lib/grape/error_formatter.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/grape-1.2.5/lib/grape/error_formatter.rb
grape-1.2.5 lib/grape/error_formatter.rb