tongueroo/thor_template

View on GitHub
lib/thor_template/help.rb

Summary

Maintainability
A
15 mins
Test Coverage
module ThorTemplate::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