module CIDE::ConfigFile::NiceInspect

Public Instance Methods

inspect() click to toggle source
# File lib/cide/config_file.rb, line 14
def inspect
  out = []
  attributes.each_pair do |key, value|
    out << "#{key}=#{value.inspect}"
  end
  "<#{out.join(' ')}>"
end