http://www.perlmonks.org?node_id=1004554


in reply to Re^3: Moose and File::Temp
in thread Moose and File::Temp

So it is impossible to use while(<$self->{IamAfileHandleAttribute}>) { ... } > to read a file
no, it's not really impossible. you can just use readline instead of the diamond operator.
while (readline $self->{IamAfileHandleAttribute}) {