Sha256: ad2a96bf9d5102bc381b0f2b256d87bfbe4104d764ad443a9e6f5a69c2accde9
Contents?: true
Size: 274 Bytes
Versions: 8
Compression:
Stored size: 274 Bytes
Contents
# frozen_string_literal: true module Emasser::Help class << self def text(namespaced_command) path = namespaced_command.to_s.tr(':', '/') path = File.expand_path("../help/#{path}.md", __FILE__) File.read(path) if File.exist?(path) end end end
Version data entries
8 entries across 8 versions & 1 rubygems