#! /usr/bin/perl
# PODNAME: benchmark-perlformance-analyzer-tapper
# ABSTRACT: process benchmark results

use 5.010;
use strict;
use warnings;
use Benchmark::Perl::Formance::Analyzer::Tapper;

my $analyzer = Benchmark::Perl::Formance::Analyzer::Tapper->new_with_options;

$analyzer->run;

__END__

=pod

=encoding utf-8

=head1 NAME

benchmark-perlformance-analyzer-tapper - process benchmark results

=head1 SYNOPSIS

Usage:

  $ benchmark-perlformance-process-tapper --subdir=path/to/results

It finds all files below the given subdirectory which match one of the
supported formats C<json> or C<yaml>, and processes their data.

Please see C<benchmark-perlformance-analyze-tapper --help> for documentation.

=head1 ABOUT

This is a commandline tool to process Benchmark::Perl::Formance
results which follow the L<Tapper|http://tapper-testing.org> benchmark
schema I<BenchmarkAnythingData> as produced with
C<benchmark-perlformance --tapper>.

=head1 AUTHOR

Steffen Schwigon <ss5@renormalist.net>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Steffen Schwigon.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
