Sha256: 61e7d44f125d32ca11b8110020ed965873bb8a392bc2dab3d2038c9062b1ee97
Contents?: true
Size: 240 Bytes
Versions: 11
Compression:
Stored size: 240 Bytes
Contents
module Sonic::Help class << self def text(namespaced_command) path = namespaced_command.to_s.gsub(':','/') path = File.expand_path("../help/#{path}.md", __FILE__) IO.read(path) if File.exist?(path) end end end
Version data entries
11 entries across 11 versions & 1 rubygems