Sha256: 9bb096f6574694cd1ff01f5ce46173f4d37fb7a455197c08bcc57b9027a6f7f4
Contents?: true
Size: 398 Bytes
Versions: 16
Compression:
Stored size: 398 Bytes
Contents
# frozen_string_literal: true # ProxyRb module ProxyRb # Api module Api # Formatters for output module Formatters # Convert Hash to simple table # # @param [Hash] hash # the hash which should be converted # # @return [String] # The generated table def simple_table(hash) SimpleTable.new(hash).to_s end end end end
Version data entries
16 entries across 16 versions & 1 rubygems