~ubuntu-branches/ubuntu/wily/libdevel-repl-perl/wily

« back to all changes in this revision

Viewing changes to lib/Devel/REPL/Plugin/PPI.pm

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-07-16 17:29:07 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20140716172907-5k2q0365p0nvvi7z
Tags: 1.003026-1
* New upstream release.
* Strip trailing slash from metacpan URLs.
* Install new CONTRIBUTING file.
* Drop patch add-whatis, merged upstream.
* Update build dependencies. And lower debhelper compat level, since
  Module::Build::Tiny is gone.
* debian/rules: drop override which removed empty manpages which were
  created by Module::Build::Tiny.
* Update years of packaging copyright.
* Declare compliance with Debian Policy 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
BEGIN {
5
5
  $Devel::REPL::Plugin::PPI::AUTHORITY = 'cpan:PHAYLON';
6
6
}
7
 
{
8
 
  $Devel::REPL::Plugin::PPI::VERSION = '1.003025';
9
 
}
 
7
$Devel::REPL::Plugin::PPI::VERSION = '1.003026';
10
8
use Devel::REPL::Plugin;
11
 
 
12
9
use PPI;
13
10
use PPI::Dumper;
14
 
 
15
11
use namespace::autoclean;
16
12
 
17
13
sub BEFORE_PLUGIN {
37
33
 
38
34
Devel::REPL::Plugin::PPI - PPI dumping of Perl code
39
35
 
 
36
=head1 VERSION
 
37
 
 
38
version 1.003026
 
39
 
40
40
=head1 SYNOPSIS
41
41
 
42
42
  repl> #ppi Devel::REPL
71
71
Shawn M Moore E<lt>sartak@gmail.comE<gt>
72
72
 
73
73
=cut
74
 
 
75