do not index these secondary packages - they cannot be loaded independently
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile.pm
index 5085298..b2e95da 100644 (file)
@@ -1,28 +1,31 @@
 package Devel::REPL::Profile;
+# ABSTRACT: Code to execute when re.pl starts
 
-use Moose::Role;
-use namespace::clean -except => [ 'meta' ];
+our $VERSION = '1.003027';
 
+use Moose::Role;
 requires 'apply_profile';
+use namespace::autoclean;
 
-=head1 NAME
+1;
+__END__
 
-Devel::REPL::Profile
+=pod
 
 =head1 SYNOPSIS
 
  package Devel::REPL::Profile::MyProject;
+
  use Moose;
- use namespace::clean -except => [ 'meta' ];
+ use namespace::autoclean;
+
  with 'Devel::REPL::Profile';
+
  sub apply_profile {
      my ($self, $repl) = @_;
      # do something here
  }
+
  1;
 
 =head1 DESCRIPTION
@@ -80,10 +83,4 @@ as-is.
 
 Matt S Trout - mst (at) shadowcatsystems.co.uk (L<http://www.shadowcatsystems.co.uk/>)
 
-=head1 LICENSE
-
-This library is free software under the same terms as perl itself
-
 =cut
-
-1;