method

build_separator

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

build_separator(widths)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 164
        def build_separator(widths)
          padding = 1
          '+' + widths.map {|w| '-' * (w + (padding*2))}.join('+') + '+'
        end