Rails::Info (original) (raw)
This module helps build the runtime properties that are displayed in Rails::InfoController responses. These include the active Rails version, Ruby version, Rack version, and so on.
Methods
I
P
T
Class Public methods
property(name, value = nil)Link
def property(name, value = nil) value ||= yield properties << [name, value] if value rescue Exception end
to_html()Link
def to_html (+"
#{CGI.escapeHTML(name.to_s)} | ) formatted_value = if value.kind_of?(Array) "#{formatted_value} |
to_s()Link
def to_s column_width = properties.names.map(&:length).max info = properties.map do |name, value| value = value.join(", ") if value.is_a?(Array) "%-#{column_width}s %s" % [name, value] end info.unshift "About your application's environment" info * "\n" end