Class: RDoc::Fact
- Defined in:
- lib/puppet/util/rdoc/code_objects.rb
Overview
Fact holds a custom fact It is mapped to a HTMLPuppetPlugin for display
Instance Attribute Summary collapse
-
#confine ⇒ Object
Returns the value of attribute confine.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #full_name ⇒ Object
-
#initialize(name, confine) ⇒ Fact
constructor
A new instance of Fact.
- #is_fact? ⇒ Boolean
- #to_s ⇒ Object
Constructor Details
#initialize(name, confine) ⇒ Fact
Returns a new instance of Fact.
235 236 237 238 239 240 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 235 def initialize(name, confine) super() @name = name @confine = confine @comment = "" end |
Instance Attribute Details
#confine ⇒ Object
Returns the value of attribute confine.
233 234 235 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 233 def confine @confine end |
#name ⇒ Object
Returns the value of attribute name.
233 234 235 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 233 def name @name end |
Instance Method Details
#<=>(other) ⇒ Object
242 243 244 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 242 def <=>(other) @name <=> other.name end |
#full_name ⇒ Object
250 251 252 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 250 def full_name @name end |
#is_fact? ⇒ Boolean
246 247 248 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 246 def is_fact? true end |
#to_s ⇒ Object
254 255 256 257 258 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 254 def to_s res = self.class.name + ": #{@name}\n" res << @comment.to_s res end |