X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=Makefile.PL;h=05ebea3c36c34b92efeff53b794b54b159556866;hp=3713ac459426b8c8cc0dab36088f6ab0c78f943b;hb=d00ba9dd3e542b533dd86f7d28f9d9e55414366c;hpb=09be07bab31ac62b358e3c12145fe44a5a9b55e6 diff --git a/Makefile.PL b/Makefile.PL index 3713ac4..05ebea3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -29,6 +29,8 @@ requires 'B::Concise'; requires 'Term::ANSIColor'; requires 'Devel::Peek'; +recommends 'PPI::XS' => '0.902'; + feature 'Completion plugin - extensible tab completion', -default => 1, 'PPI' => 0; @@ -42,7 +44,7 @@ feature 'DDC plugin - even better format results with Data::Dumper::Concise', 'Data::Dumper::Concise' => 0; feature 'INC completion driver - tab complete module names in use and require', - -default => 0, + -default => 1, 'File::Next' => 0; feature 'Interrupt plugin - traps SIGINT to kill long-running lines', @@ -50,7 +52,7 @@ feature 'Interrupt plugin - traps SIGINT to kill long-running lines', 'Sys::SigAction' => 0; feature 'Keywords completion driver - tab complete Perl keywords and operators', - -default => 0, + -default => 1, 'B::Keywords' => 0; feature 'LexEnv plugin - variables declared with "my" persist between statements', @@ -73,7 +75,8 @@ feature 'Refresh plugin - automatically reload libraries with Module::Refresh', -default => 0, 'Module::Refresh' => 0; -test_requires 'Test::More'; +test_requires 'Test::More' => '0.88'; +test_requires 'Test::Warnings'; auto_install; WriteAll;