Sha256: 7917afe22aedaacc76c7d1af18ae62932fdbfb569bd734c9662bd455abd1f91c
Contents?: true
Size: 382 Bytes
Versions: 60
Compression:
Stored size: 382 Bytes
Contents
module Lono::Help class << self # namespaced_command: cfn/create or cfn:create both work. 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 # Generates a markdown file for site docuemtation def markdown end end end
Version data entries
60 entries across 60 versions & 1 rubygems