module Ecic::Help

Public Class Methods

long(namespaced_command) click to toggle source
# File lib/ecic/help.rb, line 8
    def long(namespaced_command)
      p namespaced_command
      hlp = YAML.load(File.read(File.expand_path("../../../config/locales/help.en.yaml", __FILE__)))['help'][namespaced_command]
#      hlp['long']
    end
text(namespaced_command) click to toggle source
# File lib/ecic/help.rb, line 4
    def text(namespaced_command)
      hlp = YAML.load(File.read(File.expand_path("../../../config/locales/help.en.yaml", __FILE__)))['help'][namespaced_command]
#      hlp['short']
    end