App-tldr
view release on metacpan or search on metacpan
"develop" : {
"requires" : {
"Capture::Tiny" : "0"
}
},
"runtime" : {
"requires" : {
"File::Which" : "0",
"Getopt::Long" : "2.39",
"HTTP::Tiny" : "0.082",
"IO::Socket::SSL" : "0",
"Term::ReadKey" : "0",
"Text::Fold" : "0",
"perl" : "v5.16.0"
}
}
},
"provides" : {
"App::tldr" : {
"file" : "lib/App/tldr.pm",
"version" : "0.21"
lib/App/tldr.pm view on Meta::CPAN
package App::tldr 0.21;
use v5.16;
use warnings;
use Encode ();
use File::Spec;
use File::Which ();
use Getopt::Long ();
use HTTP::Tiny;
use IO::Socket::SSL;
use Pod::Usage ();
use Term::ReadKey ();
use Text::Fold ();
use constant DEBUG => !!$ENV{TLDR_DEBUG};
use constant REPOSITORY => $ENV{TLDR_REPOSITORY} // '';
my $URL = "https://raw.githubusercontent.com/tldr-pages/tldr/main/pages%s/%s/%s.md";
sub new {
( run in 0.491 second using v1.01-cache-2.11-cpan-4d50c553e7e )