Sha256: 664cb1fc0579944c45e6705c3c17bd0737ec6e67deaceb28d1c1e9e1578530b0

Contents?: true

Size: 853 Bytes

Versions: 14

Compression:

Stored size: 853 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

14 entries across 14 versions & 1 rubygems

Version Path
grape-1.2.4 lib/grape/error_formatter.rb
grape-1.2.3 lib/grape/error_formatter.rb
grape-1.2.2 lib/grape/error_formatter.rb
grape-1.2.1 lib/grape/error_formatter.rb
grape-1.2.0 lib/grape/error_formatter.rb
grape-1.1.0 lib/grape/error_formatter.rb
grape-1.0.3 lib/grape/error_formatter.rb
grape-1.0.2 lib/grape/error_formatter.rb
grape-1.0.1 lib/grape/error_formatter.rb
grape-1.0.0 lib/grape/error_formatter.rb
grape-0.19.2 lib/grape/error_formatter.rb
grape-0.19.1 lib/grape/error_formatter.rb
grape-0.19.0 lib/grape/error_formatter.rb
grape-0.18.0 lib/grape/error_formatter.rb