The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Plack::Middleware::Debug::ModuleVersions;
use 5.008;
use strict;
use warnings;
use Module::Versions;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.14';

sub run {
    my ($self, $env, $panel) = @_;
    my $modules = Module::Versions->HASH;
    $_ = $_->{VERSION} for values %$modules;
    $panel->content($self->render_hash($modules));
}

1;
__END__

=head1 NAME

Plack::Middleware::Debug::ModuleVersions - Debug panel to inspect the environment

=head1 SYNOPSIS

    Plack::Middleware::Debug::ModuleVersions->new;

=head1 DESCRIPTION

=head1 METHODS

=over 4

=back

=head1 BUGS AND LIMITATIONS

No bugs have been reported.

Please report any bugs or feature requests through the web interface at
L<http://rt.cpan.org>.

=head1 INSTALLATION

See perlmodinstall for information and options on installing Perl modules.

=head1 AVAILABILITY

The latest version of this module is available from the Comprehensive Perl
Archive Network (CPAN). Visit L<http://www.perl.com/CPAN/> to find a CPAN
site near you. Or see L<http://search.cpan.org/dist/Plack-Middleware-Debug/>.

The development version lives at L<http://github.com/miyagawa/plack-middleware-debug/>.
Instead of sending patches, please fork this project using the standard git
and github infrastructure.

=head1 AUTHORS

Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >>

Tatsuhiko Miyagawa, C<< <miyagawa@bulknews.net> >>

=head1 COPYRIGHT AND LICENSE

Copyright 2009 by Marcel GrE<uuml>nauer

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

=cut