Module: PuppetStrings::Markdown::DataTypes

Defined in:
lib/puppet-strings/markdown/data_types.rb

Class Method Summary collapse

Class Method Details

.contains_private?Boolean

Returns:

  • (Boolean)


15
16
17
18
19
20
# File 'lib/puppet-strings/markdown/data_types.rb', line 15

def self.contains_private?
  result = false
  unless in_dtypes.nil?
    in_dtypes.find { |type| type.private? }.nil? ? false : true
  end
end

.in_dtypesArray

Returns list of data types.

Returns:

  • (Array)

    list of data types



7
8
9
10
11
12
13
# File 'lib/puppet-strings/markdown/data_types.rb', line 7

def self.in_dtypes
  arr = YARD::Registry.all(:puppet_data_type).map!(&:to_hash)
  arr.concat(YARD::Registry.all(:puppet_data_type_alias).map!(&:to_hash))

  arr.sort! { |a,b| a[:name] <=> b[:name] }
  arr.map! { |a| PuppetStrings::Markdown::DataType.new(a) }
end

.renderObject



22
23
24
25
26
27
28
# File 'lib/puppet-strings/markdown/data_types.rb', line 22

def self.render
  final = in_dtypes.length > 0 ? "## Data types\n\n" : ""
  in_dtypes.each do |type|
    final << type.render unless type.private?
  end
  final
end

.toc_infoObject



31
32
33
34
35
36
37
38
39
# File 'lib/puppet-strings/markdown/data_types.rb', line 31

def self.toc_info
  final = ["Data types"]

  in_dtypes.each do |type|
    final.push(type.toc_info)
  end

  final
end