Method: Useless::Doc::Core::Header#description

Defined in:
lib/useless/doc/core/header.rb,
lib/useless/doc/core/header.rb

#descriptionString



14
15
16
17
18
19
20
21
22
23
# File 'lib/useless/doc/core/header.rb', line 14

class Header
  attr_accessor :key, :description

  # @param [Hash] attrs corresponds to the class's instance attributes.
  #
  def initialize(attrs = {})
    @key          = attrs[:key]
    @description  = attrs[:description]
  end
end