summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-12-19 11:36:24 -0600
committerJesse Luehrs <doy@tozt.net>2009-12-19 11:36:24 -0600
commitc34ffdfa73ddf5d1982f368b1e30364b17960f07 (patch)
tree1923930cf4cddda33da4a690dbe594ee8d01bfa4
downloadmoosex-module-refresh-c34ffdfa73ddf5d1982f368b1e30364b17960f07.tar.gz
moosex-module-refresh-c34ffdfa73ddf5d1982f368b1e30364b17960f07.zip
initial commit
-rw-r--r--.gitignore8
-rw-r--r--Changes4
-rw-r--r--dist.ini10
-rw-r--r--lib/MooseX/Module/Refresh.pm71
-rw-r--r--t/000-load.t8
5 files changed, 101 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bfd20cf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+cover_db
+META.yml
+Makefile
+blib
+inc
+pm_to_blib
+MANIFEST
+Makefile.old
diff --git a/Changes b/Changes
new file mode 100644
index 0000000..14d70ca
--- /dev/null
+++ b/Changes
@@ -0,0 +1,4 @@
+Revision history for MooseX::Module::Refresh
+
+0.01
+ Initial release
diff --git a/dist.ini b/dist.ini
new file mode 100644
index 0000000..b236caf
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,10 @@
+name = MooseX-Module-Refresh
+version = 0.01
+author = Jesse Luehrs <doy at tozt dot net>
+license = Perl_5
+copyright_holder = Jesse Luehrs
+abstract =
+
+[@Classic]
+
+[Prereq]
diff --git a/lib/MooseX/Module/Refresh.pm b/lib/MooseX/Module/Refresh.pm
new file mode 100644
index 0000000..ce42ead
--- /dev/null
+++ b/lib/MooseX/Module/Refresh.pm
@@ -0,0 +1,71 @@
+package MooseX::Module::Refresh;
+use Moose;
+
+=head1 NAME
+
+MooseX::Module::Refresh -
+
+=head1 SYNOPSIS
+
+
+=head1 DESCRIPTION
+
+
+=cut
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+=head1 BUGS
+
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-moosex-module-refresh at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-Module-Refresh>.
+
+=head1 SEE ALSO
+
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc MooseX::Module::Refresh
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/MooseX-Module-Refresh>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/MooseX-Module-Refresh>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-Module-Refresh>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/MooseX-Module-Refresh>
+
+=back
+
+=head1 AUTHOR
+
+ Jesse Luehrs <doy at tozt dot net>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2009 by Jesse Luehrs.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as perl itself.
+
+=cut
+
+1;
diff --git a/t/000-load.t b/t/000-load.t
new file mode 100644
index 0000000..04bfd9b
--- /dev/null
+++ b/t/000-load.t
@@ -0,0 +1,8 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+package Foo;
+::use_ok('MooseX::Module::Refresh')
+ or ::BAIL_OUT("couldn't load MooseX::Module::Refresh");