Comment formatting tweaks
[gitmo/moose-presentations.git] / moose-class / exercises / install-moose
CommitLineData
afaa1345 1#!/usr/bin/perl
2
3use Cwd qw( abs_path );
4use CPAN;
5use File::Spec;
6
7CPAN::Config->load;
8
9$CPAN::Config->{urllist} =
10 [ 'file://' . File::Spec->catdir( abs_path(q{.}), 'moosepan' ),
11 @{ $CPAN::Config->{urllist} } ];
12
13CPAN::Shell->install('Moose');
14