Method: Lono::Help.text

Defined in:
lib/lono/help.rb

.text(namespaced_command) ⇒ Object

namespaced_command: cfn/create or cfn:create both work.



4
5
6
7
8
# File 'lib/lono/help.rb', line 4

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