AnyEvent-Impl-Prima
    
    
  
  
  
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
        pop @section
            while $section[-1] =~ /^\s*$/;
        shift @section
            while $section[0] =~ /^\s*$/;
    };
    
    @section = map { $_ =~ s!^=\w+\s+!!; $_ } @section;
    return join "", @section;
}
sub update_file {
    my( $filename, $new_content ) = @_;
    my $content;
    if( -f $filename ) {
        open my $fh, '<', $filename
            or die "Couldn't read '$filename': $!";
        binmode $fh;
        local $/;
        $content = <$fh>;
    };
    
  
  
  
( run in 0.446 second using v1.01-cache-2.11-cpan-0a6323c29d9 )