Class: Facter::ResolvedFact

Inherits:
Object
  • Object
show all
Defined in:
lib/models/resolved_fact.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, value = '', type = :core) ⇒ ResolvedFact

Returns a new instance of ResolvedFact.



8
9
10
11
12
13
14
15
16
# File 'lib/models/resolved_fact.rb', line 8

def initialize(name, value = '', type = :core)
  unless type =~ /core|legacy|custom/
    raise ArgumentError, 'The type provided for fact is not legacy, core or custom!'
  end

  @name = name
  @value = Utils.deep_stringify_keys(value)
  @type = type
end

Instance Attribute Details

#filter_tokensObject

Returns the value of attribute filter_tokens.



6
7
8
# File 'lib/models/resolved_fact.rb', line 6

def filter_tokens
  @filter_tokens
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/models/resolved_fact.rb', line 5

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



5
6
7
# File 'lib/models/resolved_fact.rb', line 5

def type
  @type
end

#user_queryObject

Returns the value of attribute user_query.



6
7
8
# File 'lib/models/resolved_fact.rb', line 6

def user_query
  @user_query
end

#valueObject

Returns the value of attribute value.



6
7
8
# File 'lib/models/resolved_fact.rb', line 6

def value
  @value
end

Instance Method Details

#core?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/models/resolved_fact.rb', line 22

def core?
  type == :core
end

#legacy?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/models/resolved_fact.rb', line 18

def legacy?
  type == :legacy
end

#to_sObject



26
27
28
# File 'lib/models/resolved_fact.rb', line 26

def to_s
  @value.to_s
end