--- Makefile.PL +++ Makefile.PL @@ -19,6 +19,7 @@ my %WriteMakefileArgs = ( "PREREQ_PM" => { "Carp" => 0, "List::Util" => 0, + "Object::HashBase" => "0.008", "Scalar::Util" => 0 }, "TEST_REQUIRES" => { @@ -34,6 +35,7 @@ my %WriteMakefileArgs = ( my %FallbackPrereqs = ( "Carp" => 0, "List::Util" => 0, + "Object::HashBase" => "0.008", "Scalar::Util" => 0, "utf8" => 0 ); --- lib/Term/Table.pm +++ lib/Term/Table.pm @@ -11,7 +11,7 @@ use Scalar::Util qw/blessed/; use List::Util qw/max sum/; use Carp qw/croak carp/; -use Term::Table::HashBase qw/rows _columns collapse max_width mark_tail sanitize show_header auto_columns no_collapse header allow_overflow pad/; +use Object::HashBase 0.008 qw/rows _columns collapse max_width mark_tail sanitize show_header auto_columns no_collapse header allow_overflow pad/; sub BORDER_SIZE() { 4 } # '| ' and ' |' borders sub DIV_SIZE() { 3 } # ' | ' column delimiter --- lib/Term/Table/Cell.pm +++ lib/Term/Table/Cell.pm @@ -9,7 +9,7 @@ use Term::Table::Util qw/uni_length/; use List::Util qw/sum/; -use Term::Table::HashBase qw/value border_left border_right _break _widths border_color value_color reset_color/; +use Object::HashBase 0.008 qw/value border_left border_right _break _widths border_color value_color reset_color/; my %CHAR_MAP = ( # Special case, \n should render as \n, but also actually do the newline thing --- lib/Term/Table/CellStack.pm +++ lib/Term/Table/CellStack.pm @@ -4,7 +4,7 @@ use warnings; our $VERSION = '0.024'; -use Term::Table::HashBase qw/-cells -idx/; +use Object::HashBase 0.008 qw/-cells -idx/; use List::Util qw/max/; --- lib/Term/Table/LineBreak.pm +++ lib/Term/Table/LineBreak.pm @@ -8,7 +8,7 @@ use Carp qw/croak/; use Scalar::Util qw/blessed/; use Term::Table::Util qw/uni_length/; -use Term::Table::HashBase qw/string gcstring _len _parts idx/; +use Object::HashBase 0.008 qw/string gcstring _len _parts idx/; sub init { my $self = shift;