Method: Atlas::Configuration#to_s
- Defined in:
- lib/atlas/configuration.rb
#to_s ⇒ Object
String representation of the configuration.
29 30 31 32 |
# File 'lib/atlas/configuration.rb', line 29 def to_s objects = to_h.collect { |k, v| "#{k}=#{v}" }.join(' ') "#<#{self.class.name}:#{object_id} #{objects}" end |