Method: Configgy::ConfigMap#inspect
- Defined in:
- lib/configgy/config_map.rb
#inspect ⇒ Object
137 138 139 |
# File 'lib/configgy/config_map.rb', line 137 def inspect "{#{@name}" + (@inherit_from ? " (inherit=#{@inherit_from.name})" : "") + ": " + @cells.keys.sort.map { |k| "#{k}=#{@cells[k].inspect}" }.join(" ") + "}" end |