From: oliver Date: Thu, 8 Jan 2009 22:16:45 +0000 (+0000) Subject: Couple of mistakes in the manifest which was last committed, fixed X-Git-Tag: v1.003015~74 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=1f2b8d5046237f79692365f4f3e8119f479c5a78 Couple of mistakes in the manifest which was last committed, fixed git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5293 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index 67ca703..c44e05a 100644 --- 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 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 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 index 0000000..3e3f5be --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1 @@ +^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) diff --git a/Makefile.PL b/Makefile.PL index 84de0c0..0c7f38b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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; diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index c7640a4..6d71798 100644 --- a/lib/Devel/REPL.pm +++ b/lib/Devel/REPL.pm @@ -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';