lib/grape/formatter/base.rb in grape-0.6.0 vs lib/grape/formatter/base.rb in grape-0.6.1
- old
+ new
@@ -3,13 +3,14 @@
module Base
class << self
FORMATTERS = {
- :json => Grape::Formatter::Json,
- :serializable_hash => Grape::Formatter::SerializableHash,
- :txt => Grape::Formatter::Txt,
- :xml => Grape::Formatter::Xml
+ json: Grape::Formatter::Json,
+ jsonapi: Grape::Formatter::Json,
+ serializable_hash: Grape::Formatter::SerializableHash,
+ txt: Grape::Formatter::Txt,
+ xml: Grape::Formatter::Xml
}
def formatters(options)
FORMATTERS.merge(options[:formatters] || {})
end