Couple of mistakes in the manifest which was last committed, fixed
oliver [Thu, 8 Jan 2009 22:16:45 +0000 (22:16 +0000)]
git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5293 bd8105ee-0ff8-0310-8827-fb3f25b6796d

Changes
INSTALL [deleted file]
MANIFEST [deleted file]
MANIFEST.SKIP [new file with mode: 0644]
Makefile.PL
lib/Devel/REPL.pm

diff --git a/Changes b/Changes
index 67ca703..c44e05a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+1.3.1
+  - Fix brokenness in the distribution manifest
 1.3.0
   - OutputCache: If sub _ is already defined, then warn about it (once) and refuse to overwrite it
   - Turn MultiLine::PPI's needs_continuation into a method line_needs_continuation
diff --git a/INSTALL b/INSTALL
deleted file mode 100644 (file)
index a1dc193..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,14 +0,0 @@
-WHAT IS THIS?
-
-This is Devel::REPL, an interactive Perl shell.
-Please see the README that comes with this distribution.
-
-HOW DO I INSTALL IT?
-
-To install this module, cd to the directory that contains this README
-file and type the following:
-
-   perl Makefile.PL
-   make
-   make test
-   make install
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index 4e48635..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,56 +0,0 @@
-Changes
-examples/dbic_project_profile.pl
-inc/Module/AutoInstall.pm
-inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-INSTALL
-lib/Devel/REPL.pm
-lib/Devel/REPL/Error.pm
-lib/Devel/REPL/Meta/Plugin.pm
-lib/Devel/REPL/Plugin.pm
-lib/Devel/REPL/Plugin/B/Concise.pm
-lib/Devel/REPL/Plugin/Colors.pm
-lib/Devel/REPL/Plugin/Commands.pm
-lib/Devel/REPL/Plugin/Completion.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
-lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
-lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
-lib/Devel/REPL/Plugin/DDS.pm
-lib/Devel/REPL/Plugin/DumpHistory.pm
-lib/Devel/REPL/Plugin/FancyPrompt.pm
-lib/Devel/REPL/Plugin/FindVariable.pm
-lib/Devel/REPL/Plugin/History.pm
-lib/Devel/REPL/Plugin/Interrupt.pm
-lib/Devel/REPL/Plugin/LexEnv.pm
-lib/Devel/REPL/Plugin/MultiLine/PPI.pm
-lib/Devel/REPL/Plugin/NewlineHack.pm
-lib/Devel/REPL/Plugin/Nopaste.pm
-lib/Devel/REPL/Plugin/OutputCache.pm
-lib/Devel/REPL/Plugin/Packages.pm
-lib/Devel/REPL/Plugin/Peek.pm
-lib/Devel/REPL/Plugin/PPI.pm
-lib/Devel/REPL/Plugin/ReadLineHistory.pm
-lib/Devel/REPL/Plugin/Refresh.pm
-lib/Devel/REPL/Plugin/ShowClass.pm
-lib/Devel/REPL/Plugin/Timing.pm
-lib/Devel/REPL/Plugin/Turtles.pm
-lib/Devel/REPL/Profile.pm
-lib/Devel/REPL/Profile/Default.pm
-lib/Devel/REPL/Script.pm
-Makefile.PL
-MANIFEST                       This list of files
-META.yml
-README
-script/re.pl
-t/load_core.t
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..3e3f5be
--- /dev/null
@@ -0,0 +1 @@
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
index 84de0c0..0c7f38b 100644 (file)
@@ -20,6 +20,11 @@ requires 'B::Keywords';
 requires 'Task::Weaken';
 requires 'App::Nopaste';
 
+# core
+requires 'File::Spec';
+requires 'Term::ReadLine';
+requires 'Term::ANSIColor';
+
 test_requires 'Test::More';
 
 auto_install;
index c7640a4..6d71798 100644 (file)
@@ -5,7 +5,7 @@ use Moose;
 use namespace::clean -except => [ 'meta' ];
 use 5.008001; # backwards compat, doesn't warn like 5.8.1
 
-our $VERSION = '1.003000'; # 1.3.0
+our $VERSION = '1.003001'; # 1.3.1
 
 with 'MooseX::Object::Pluggable';