#!perl
use 5.006;
use strict;
use warnings;

package # Hideme
  App::Isa::Splain::_Script;

our $VERSION = '0.002900'; # TRIAL

our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY

# PODNAME: isa-splain

# ABSTRACT: Visualize Module Hierarchies on the command line

use App::Isa::Splain;

App::Isa::Splain->new_from_ARGV->run;

__END__

=pod

=encoding UTF-8

=for stopwords isa splain Preload

=head1 NAME

isa-splain - Visualize Module Hierarchies on the command line

=head1 VERSION

version 0.002900

=head1 USAGE

  isa-splain [OPTS] Module::Name::To::Inspect

=head1 OPTIONS

=head2 -MC<Module::Name>

Preload C<Module::Name> instead of C<Module::Name::To::Inspect>

This is useful in cases where loading C<Module::Name::To::Inspect> directly
is either impossible ( due to not existing as a .pm file ), or problematic ( due to
some load time complication )

=head1 EXAMPLES

  isa-splain -MB B::CV

This shows the graph of C<B::CV> after loading C<B.pm>

  isa-splain -Moose Class::MOP::Class

This shows the graph of C<Class::MOP::Class> after loading C<oose.pm>

=head1 SEE ALSO

L<App::Isa::Splain>, L<Devel::Isa::Explainer>

=head1 AUTHOR

Kent Fredric <kentnl@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Kent Fredric <kentfredric@gmail.com>.

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
