Namespace
Methods
F
P
T
Instance Public methods
framework_version(framework)
# File railties/lib/rails/info.rb, line 29
def framework_version(framework)
  if Object.const_defined?(framework.classify)
    require "#{framework}/version"
    framework.classify.constantize.version.to_s
  end
end
frameworks()
# File railties/lib/rails/info.rb, line 25
def frameworks
  %w( active_record action_pack action_view action_mailer active_support )
end
property(name, value = nil)
# File railties/lib/rails/info.rb, line 19
def property(name, value = nil)
  value ||= yield
  properties << [name, value] if value
rescue Exception
end
to_html()
# File railties/lib/rails/info.rb, line 48
def to_html
  '<table>'.tap do |table|
    properties.each do |(name, value)|
      table << %Q(<tr><td class="name">#{CGI.escapeHTML(name.to_s)}</td>)
      formatted_value = if value.kind_of?(Array)
            "<ul>" + value.map { |v| "<li>#{CGI.escapeHTML(v.to_s)}</li>" }.join + "</ul>"
          else
            CGI.escapeHTML(value.to_s)
          end
      table << %Q(<td class="value">#{formatted_value}</td></tr>)
    end
    table << '</table>'
  end
end
to_s()
# File railties/lib/rails/info.rb, line 36
def to_s
  column_width = properties.names.map {|name| name.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