Sha256: 0beff8876be952db03e24fc3cdcbf535229ea94b52d3b2ae53a80373d80e410c
Contents?: true
Size: 237 Bytes
Versions: 22
Compression:
Stored size: 237 Bytes
Contents
# frozen_string_literal: true 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
22 entries across 22 versions & 2 rubygems