method

to_s

v1.0.0 - Show latest stable - Class: Rails::Info
to_s()
public

No documentation available.

# 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