我正在尝试在我的控制台中设置 Hirb。
当我输入:
require 'hirb'
Hirb.enable
我的(相当大的)表打印得很好(缩短了列名)。但是,我想在加载时自动加载这个(和其他宝石)rails c
,所以我编辑了我的.irbc
if Rails.env
require 'rubygems'
require 'hirb'
Hirb.enable
require 'wirble'
Wirble.init
Wirble.colorize
require 'awesome_print'
end
从控制台(Account.all)运行相同的命令时,我得到错误:
Too many fields for the current width. Configure your width and/or fields to avoid this error. Defaulting to a vertical table
任何想法为什么?我真的很喜欢 Hirb,但是每次加载控制台时都懒得手动包含它