The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Plack::Middleware::GoogleAnalytics - Middleware to apply Google Anlytics javascript code.

SYNOPSIS

    use Plack::Builder;

    builder {
        enable "Plack::Middleware::GoogleAnalytics", ga_id => 'UA-214112-11';
        $app;
    };

DESCRIPTION

Plack::Middleware::GoogleAnalytics will insert the standard google analytics Javascript at the end of a text/html document. It places this boilerplate code at the end of the document.

ARGUMENTS

This middleware accepts the following arguments.

ga_id

This is the id that is supplied by Google. This is a required argument.

SEE ALSO

Plack, Plack::Middleware, Moo

AUTHOR

Logan Bell, <logie@cpan.org>

COPYRIGHT & LICENSE

Copyright 2012, Logan Bell

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