module HaveAPI::Fs::Help::ClassMethods

Public Instance Methods

help_file(name = nil) click to toggle source

Specify a name of a help file for this component. By default, the class name is used. @param [Symbol, nil] name @return [Symbol] if name is nil

# File lib/haveapi/fs/help.rb, line 21
def help_file(name = nil)
  if name
    @help_file = name

  else
    @help_file
  end
end