summaryrefslogtreecommitdiff
path: root/script/carton
diff options
context:
space:
mode:
Diffstat (limited to 'script/carton')
-rwxr-xr-xscript/carton27
1 files changed, 27 insertions, 0 deletions
diff --git a/script/carton b/script/carton
new file mode 100755
index 0000000..86b9ad3
--- /dev/null
+++ b/script/carton
@@ -0,0 +1,27 @@
+#!perl
+use strict;
+use 5.008001;
+use Carton::CLI;
+
+exit Carton::CLI->new->run(@ARGV);
+
+__END__
+
+=head1 NAME
+
+carton - Perl module dependency manager
+
+=head1 SYNOPSIS
+
+ > carton install
+ > carton exec ./myscript
+
+=head1 DESCRIPTION
+
+For more documentation, refer to L<Carton> by running C<perldoc Carton> or C<carton --help>.
+
+=head1 SEE ALSO
+
+L<Carton>
+
+=cut