method
to_s
to_s()
public
Hide source
# File railties/lib/rails_info.rb, line 36 def to_s column_width = properties.names.map {|name| name.length}.max ["About your application's environment", *properties.map do |property| "%-#{column_width}s %s" % property end] * "\n" end