Sha256: 01b695e34dbada29be4b1774f044c8c4e0b77369fc91d01eacdb36c2cc88dbbc
Contents?: true
Size: 207 Bytes
Versions: 12
Compression:
Stored size: 207 Bytes
Contents
module Grape module Formatter module Txt class << self def call(object, env) object.respond_to?(:to_txt) ? object.to_txt : object.to_s end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems