Method: Gloo::Objs::Bar#name_value

Defined in:
lib/gloo/objs/cli/bar.rb

#name_valueObject

Get the bar’s name from the child object.



34
35
36
37
38
39
# File 'lib/gloo/objs/cli/bar.rb', line 34

def name_value
  o = find_child NAME
  return '' unless o

  return o.value
end