From 2211ef2c0d0704c70f56c931868e987bcf161b24 Mon Sep 17 00:00:00 2001 From: Timofey Potapov Date: Thu, 16 May 2024 13:48:55 +0200 Subject: [PATCH] 1.08 - Added pod. --- Build.PL | 5 +++-- Changes | 7 +++++++ lib/e.pm | 14 +++++++++++++- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/Build.PL b/Build.PL index 07c7e6f..ed48639 100755 --- a/Build.PL +++ b/Build.PL @@ -17,6 +17,7 @@ my $class = Module::Build->subclass( my ($s) = @_; $s->SUPER::ACTION_install; + # Display logo/image. local @ARGV = ( "e", "-q", @@ -45,8 +46,8 @@ my $builder = $class->new( requires => { 'perl' => '5.016', 'Sub::Util' => '0', - 'Runtime::Debugger' => '1.01', - 'Data::Trace' => '1.01', + 'Runtime::Debugger' => '1.02', + 'Data::Trace' => '1.02', 'Tiny::Prof' => '0', 'Mojolicious' => '0', 'YAML::XS' => '0', diff --git a/Changes b/Changes index 1502bc9..6b95dd8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for e +================= +1.08 - 2024-05-16 +================= + +Increased repl, trace versions. +Added key: pod. + ================= 1.07 - 2024-05-15 ================= diff --git a/lib/e.pm b/lib/e.pm index 5bc4499..7bc1259 100644 --- a/lib/e.pm +++ b/lib/e.pm @@ -36,7 +36,7 @@ e - beastmode unleashed =cut -our $VERSION = '1.07'; +our $VERSION = '1.08'; =head1 SYNOPSIS @@ -297,6 +297,18 @@ sub import { Mojo::URL->new( @_ ); }, + ###################################### + # Pod + ###################################### + + pod => sub { + require App::Pod; + App::Pod->import; + + local @ARGV = @_; + App::Pod->run; + }, + ###################################### # Package Building ######################################