Module: Puppet::Interface::FullDocs
- Extended by:
- DocGen
- Includes:
- TinyDocs
- Included in:
- Puppet::Interface, Action
- Defined in:
- lib/puppet/interface/documentation.rb
Overview
This module can be mixed in to provide a full set of documentation attributes. It is intended to be used for Puppet::Interface.
Instance Attribute Summary collapse
-
#copyright_owner ⇒ String
private
Sets the copyright owner.
-
#copyright_years ⇒ String
private
Sets the copyright year.
Instance Method Summary collapse
- #author(value = nil) ⇒ Object
- #author=(value) ⇒ Object (also: #authors=) private
-
#authors ⇒ String
private
Returns a list of authors.
-
#copyright(owner = nil, years = nil) ⇒ String
Sets the copyright owner and year.
- #examples ⇒ Object
- #license(text) ⇒ Object
- #munge_copyright_year(input) ⇒ Object private
- #notes(text) ⇒ Object
- #short_description(value = nil) ⇒ Object
Methods included from DocGen
Methods included from TinyDocs
#build_synopsis, #description, #summary
Instance Attribute Details
#copyright_owner ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Sets the copyright owner
273 274 275 |
# File 'lib/puppet/interface/documentation.rb', line 273 def copyright_owner @copyright_owner end |
#copyright_years ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Sets the copyright year
290 291 292 |
# File 'lib/puppet/interface/documentation.rb', line 290 def copyright_years @copyright_years end |
Instance Method Details
#author(value) ⇒ Object #author ⇒ String?
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/puppet/interface/documentation.rb', line 203 def (value = nil) unless value.nil? then unless value.is_a? String # TRANSLATORS 'author' is an attribute name and should not be translated raise ArgumentError, _('author must be a string; use multiple statements for multiple authors') end if value =~ /\n/ then # TRANSLATORS 'author' is an attribute name and should not be translated raise ArgumentError, _('author should be a single line; use multiple statements for multiple authors') end @authors.push(Puppet::Interface::DocGen.strip_whitespace(value)) end @authors.empty? ? nil : @authors.join("\n") end |
#author=(value) ⇒ Object Also known as:
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
228 229 230 231 232 233 234 235 236 237 |
# File 'lib/puppet/interface/documentation.rb', line 228 def (value) # I think it's a bug that this ends up being the exposed # version of `author` on ActionBuilder if Array(value).any? { |x| x =~ /\n/ } then # TRANSLATORS 'author' is an attribute name and should not be translated raise ArgumentError, _('author should be a single line; use multiple statements') end @authors = Array(value).map { |x| Puppet::Interface::DocGen.strip_whitespace(x) } end |
#authors ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a list of authors. See #author.
223 224 225 |
# File 'lib/puppet/interface/documentation.rb', line 223 def @authors end |
#copyright(owner = nil, years = nil) ⇒ String
Sets the copyright owner and year. This returns the copyright string, so it can be called with no arguments retrieve that string without side effects.
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'lib/puppet/interface/documentation.rb', line 252 def copyright(owner = nil, years = nil) if years.nil? and !owner.nil? then # TRANSLATORS 'copyright' is an attribute name and should not be translated raise ArgumentError, _('copyright takes the owners names, then the years covered') end self.copyright_owner = owner unless owner.nil? self.copyright_years = years unless years.nil? if copyright_years or copyright_owner then "Copyright #{copyright_years} by #{copyright_owner}" else "Unknown copyright owner and years." end end |
#examples(text) ⇒ void #examples ⇒ String
134 |
# File 'lib/puppet/interface/documentation.rb', line 134 attr_doc :examples |
#license(text) ⇒ void #license ⇒ String
160 |
# File 'lib/puppet/interface/documentation.rb', line 160 attr_doc :license |
#munge_copyright_year(input) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/puppet/interface/documentation.rb', line 307 def munge_copyright_year(input) case input when Range then input when Integer then if input < 1970 then fault = "before 1970" elsif input > (future = Time.now.year + 2) then fault = "after #{future}" end if fault then # TRANSLATORS 'copyright' is an attribute name and should not be translated raise ArgumentError, _("copyright with a year %{value} is very strange; did you accidentally add or subtract two years?") % { value: fault } end input when String then input.strip.split(/,/).map do |part| part = part.strip if part =~ /^\d+$/ part.to_i else found = part.split(/-/) if found unless found.length == 2 and found.all? { |x| x.strip =~ /^\d+$/ } # TRANSLATORS 'copyright' is an attribute name and should not be translated raise ArgumentError, _("%{value} is not a good copyright year or range") % { value: part.inspect } end Range.new(found[0].to_i, found[1].to_i) else # TRANSLATORS 'copyright' is an attribute name and should not be translated raise ArgumentError, _("%{value} is not a good copyright year or range") % { value: part.inspect } end end end when Array then result = [] input.each do |item| item = munge_copyright_year item if item.is_a? Array result.concat item else result << item end end result else # TRANSLATORS 'copyright' is an attribute name and should not be translated raise ArgumentError, _("%{value} is not a good copyright year, set, or range") % { value: input.inspect } end end |
#notes(text) ⇒ void #notes ⇒ String
147 |
# File 'lib/puppet/interface/documentation.rb', line 147 attr_doc :notes |
#short_description(value) ⇒ void #short_description ⇒ String?
178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/puppet/interface/documentation.rb', line 178 def short_description(value = nil) self.short_description = value unless value.nil? if @short_description.nil? then return nil if @description.nil? lines = @description.split("\n") first_paragraph_break = lines.index('') || 5 grab = [5, first_paragraph_break].min @short_description = lines[0, grab].join("\n") @short_description += ' [...]' if grab < lines.length and first_paragraph_break >= 5 end @short_description end |