#!/usr/bin/env perl
#
# This file is part of Movies-Organizer
#
# This software is copyright (c) 2011 by celogeek <me@celogeek.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.
#

# PODNAME: movies_organizer
# ABSTRACT: organize your movie specialy for boxee

use strict;
use warnings;

our $VERSION = '0.4'; # VERSION

use Movies::Organizer;
my $organizer = Movies::Organizer->new_with_options;
$organizer->run();


__END__
=pod

=head1 NAME

movies_organizer - organize your movie specialy for boxee

=head1 VERSION

version 0.4

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website
https://github.com/celogeek/MoviesOrganizer/issues

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

celogeek <me@celogeek.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by celogeek <me@celogeek.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

