#!/usr/bin/env perl

# PODNAME: charmkit
# ABSTRACT: script for running the linter and other charm utilities.


use strict;
use warnings;
use App::CharmKit;

App::CharmKit->run;

__END__

=pod

=head1 NAME

charmkit - script for running the linter and other charm utilities.

=head1 SYNOPSIS

  Available commands:

    commands: list the application's commands
        help: display a command's help screen

        lint: Charm Linter

=head1 DESCRIPTION

A perl way to charm authoring. CharmKit allows the creation of charm
projects for publishing to the Charm Store. In addition, there is built in
charm linter, packaging of all hooks and their dependencies, testing framework,
and helper routines to aide in the development of charms.

This script provides additional tools such as charm linting.

=head1 AUTHOR

Adam Stokes <adamjs@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Adam Stokes.

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
