Method: Gloo::Objs::Pg#add_default_children
- Defined in:
- lib/gloo/objs/data/pg.rb
#add_default_children ⇒ Object
Add children to this object. This is used by containers to add children needed for default configurations.
55 56 57 58 59 60 61 |
# File 'lib/gloo/objs/data/pg.rb', line 55 def add_default_children fac = @engine.factory fac.create_string HOST, nil, self fac.create_string DB, nil, self fac.create_string USER, nil, self fac.create_string PASSWD, nil, self end |