module Grape::Formatter::Base

Constants

FORMATTERS

Public Class Methods

formatter_for(api_format, options = {}) click to toggle source
# File lib/grape/formatter/base.rb, line 18
def formatter_for(api_format, options = {})
  spec = formatters(options)[api_format]
  case spec
  when nil
    lambda { |obj, env| obj }
  when Symbol
    method(spec)
  else
    spec
  end
end
formatters(options) click to toggle source
# File lib/grape/formatter/base.rb, line 14
def formatters(options)
  FORMATTERS.merge(options[:formatters] || {})
end