Class: EacConfig::Entry

Inherits:
Object
  • Object
show all
Defined in:
lib/eac_config/entry.rb

Instance Method Summary collapse

Instance Method Details

#found?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/eac_config/entry.rb', line 13

def found?
  node_entry.if_present(false, &:found?)
end

#found_nodeObject



17
18
19
# File 'lib/eac_config/entry.rb', line 17

def found_node
  node_entry.if_present(&:node)
end

#secret_valueObject



21
22
23
# File 'lib/eac_config/entry.rb', line 21

def secret_value
  node_entry.if_present(&:secret_value)
end

#to_sObject



25
26
27
# File 'lib/eac_config/entry.rb', line 25

def to_s
  "#{self.class}[RootNode: #{root_node}, Path: #{path}]"
end

#valueObject



29
30
31
# File 'lib/eac_config/entry.rb', line 29

def value
  node_entry.if_present(&:value)
end

#value=(a_value) ⇒ Object



33
34
35
# File 'lib/eac_config/entry.rb', line 33

def value=(a_value)
  write_node.self_entry(path).value = a_value
end

#write_nodeObject



37
38
39
# File 'lib/eac_config/entry.rb', line 37

def write_node
  root_node.write_node || root_node
end