App-cpanthanks

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "runtime" : {
         "requires" : {
            "Compiler::Lexer" : "0",
            "Getopt::Long" : "0",
            "List::Util" : "0",
            "MetaCPAN::Client" : "0",
            "Path::Class::Rule" : "0",
            "Pod::Usage" : "0",
            "Term::ANSIColor" : "3",
            "Term::Encoding" : "0",
            "Try::Tiny" : "0",
            "perl" : "5.010001"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=App-cpanthanks"
      },
      "license" : [

META.yml  view on Meta::CPAN

    - inc
requires:
  Compiler::Lexer: '0'
  Getopt::Long: '0'
  List::Util: '0'
  MetaCPAN::Client: '0'
  Path::Class::Rule: '0'
  Pod::Usage: '0'
  Term::ANSIColor: '3'
  Term::Encoding: '0'
  Try::Tiny: '0'
  perl: '5.010001'
resources:
  bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=App-cpanthanks
  license: http://dev.perl.org/licenses/
  repository: http://github.com/garu/cpanthanks
version: '0.03'

Makefile.PL  view on Meta::CPAN

    ($ExtUtils::MakeMaker::VERSION >= 6.48
      ? ('MIN_PERL_VERSION' => 5.010001)
      : ()),
    PREREQ_PM => {
        'Compiler::Lexer'      => 0,
        'Path::Class::Rule'    => 0,
        'MetaCPAN::Client'     => 0,
        'Term::Encoding'       => 0,
        'Term::ANSIColor'      => 3.0,  # introduces 'bright_*' colors
        'List::Util'           => 0,
        'Try::Tiny'            => 0,
        'Getopt::Long'         => 0,
        'Pod::Usage'           => 0,
        ($^O =~ /Win32/
            ? ( 'Win32::Console::ANSI' => 1.0 )
            : ()
        ),
    },
    META_MERGE      => {
        resources => {
            license     =>      'http://dev.perl.org/licenses/',

README.md  view on Meta::CPAN

*  Thank you **Mickey Nasriachi** and **Sawyer** for MetaCPAN::Client!

*  Thank you **Tatsuhiko Miyagawa** and **Audrey Tang** for Term::Encoding!

*  Thank you **Russ Allbery** for Term::ANSIColor!

*  Thank you **Jean-Louis Morel** for Win32::Console::ANSI!

*  Thank you **Graham Barr** and **Paul Evans** for List::Util!

*  Thank you **Yuval Kogman** and **Jesse Luehrs** for Try::Tiny!

*  Thank you **Johan Vromans** for Getopt::Long!

*  Thank you **Marek Rouchal** and **Brad Appleton** for Pod::Usage!

### License and Copyright ###

Copyright (c) 2014, Breno G. de Oliveira. All rights reserved.

This module is free software; you can redistribute it and/or

cpanthanks  view on Meta::CPAN

use 5.10.0;
use strict;
use warnings;

use Compiler::Lexer;
use Path::Class::Rule;
use MetaCPAN::Client;
use Term::Encoding  ();
use Term::ANSIColor 'colored';
use List::Util 'any';
use Try::Tiny;

use Getopt::Long;
use Pod::Usage;

my $order_by     = 'popularity'; # or 'diversity';
my $limit        = 5;
my @skip_modules = qw( lib strict warnings );
my @skip_authors = qw( );

GetOptions(

cpanthanks  view on Meta::CPAN

=item Thank you B<Mickey Nasriachi> and B<Sawyer> for L<MetaCPAN::Client>!

=item Thank you B<Tatsuhiko Miyagawa> and B<Audrey Tang> for L<Term::Encoding>!

=item Thank you B<Russ Allbery> for L<Term::ANSIColor>!

=item Thank you B<Jean-Louis Morel> for L<Win32::Console::ANSI>!

=item Thank you B<Graham Barr> and B<Paul Evans> for L<List::Util>!

=item Thank you B<Yuval Kogman> and B<Jesse Luehrs> for L<Try::Tiny>!

=item Thank you B<Johan Vromans> for L<Getopt::Long>!

=item Thank you B<Marek Rouchal> and B<Brad Appleton> for L<Pod::Usage>!

=back

=head1 LICENSE AND COPYRIGHT

Copyright (c) 2014, Breno G. de Oliveira C<< <garu@cpan.org> >>. All rights reserved.



( run in 0.911 second using v1.01-cache-2.11-cpan-05444aca049 )