App-Validation-Automation

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

        'Test::More' => 0,
    },
    requires => {
        'perl'                   => '5.8.8',
        'Moose'                  => '2.0205',
        'Net::SSH::Perl'         => '1.34',
        'WWW::Mechanize'         => '1.70',
        'Config::Simple'         => '4.58',
        'Error::TryCatch'        => '0.07',
        'Crypt::Lite'            => '0.82.11',
        'namespace::autoclean'   => '0.13',
        'HTML::Form::ForceValue' => '0.007',
        'Mail::Sendmail'         => '0.79',
        'Data::Dumper'           => '2.121_08',
        'Carp'                   => 0,
        'English'                => 0,
        'Getopt::Long'           => 0,
        'File::Basename'         => 0,
        'File::Path'             => 0,
        'Switch'                 => 0,
    },

META.json  view on Meta::CPAN

            "Error::TryCatch" : "0.07",
            "File::Basename" : "0",
            "File::Path" : "0",
            "Getopt::Long" : "0",
            "HTML::Form::ForceValue" : "0.007",
            "Mail::Sendmail" : "0.79",
            "Moose" : "2.0205",
            "Net::SSH::Perl" : "1.34",
            "Switch" : "0",
            "WWW::Mechanize" : "1.70",
            "namespace::autoclean" : "0.13",
            "perl" : "v5.8.8"
         }
      }
   },
   "provides" : {
      "App::Validation::Automation" : {
         "file" : "lib/App/Validation/Automation.pm",
         "version" : "0.01"
      },
      "App::Validation::Automation::Alarming" : {

META.yml  view on Meta::CPAN

  Error::TryCatch: 0.07
  File::Basename: 0
  File::Path: 0
  Getopt::Long: 0
  HTML::Form::ForceValue: 0.007
  Mail::Sendmail: 0.79
  Moose: 2.0205
  Net::SSH::Perl: 1.34
  Switch: 0
  WWW::Mechanize: 1.70
  namespace::autoclean: 0.13
  perl: v5.8.8
resources:
  license: http://dev.perl.org/licenses/
version: 0.01

Makefile.PL  view on Meta::CPAN

                   'File::Basename' => 0,
                   'File::Path' => 0,
                   'Getopt::Long' => 0,
                   'HTML::Form::ForceValue' => '0.007',
                   'Mail::Sendmail' => '0.79',
                   'Moose' => '2.0205',
                   'Net::SSH::Perl' => '1.34',
                   'Switch' => 0,
                   'Test::More' => 0,
                   'WWW::Mechanize' => '1.70',
                   'namespace::autoclean' => '0.13'
                 },
  'INSTALLDIRS' => 'site',
  'EXE_FILES' => [],
  'PL_FILES' => {}
)
;

lib/App/Validation/Automation.pm  view on Meta::CPAN

package App::Validation::Automation;

use Carp;
use Switch;
use Moose;
use Net::SSH::Perl;
use namespace::autoclean;
use English qw(-no_match_vars);

=head1 NAME

App::Validation::Automation 

=head1 VERSION

Version 0.01

lib/App/Validation/Automation/Unix.pm  view on Meta::CPAN

package App::Validation::Automation::Unix;

use Moose;
use namespace::autoclean;
use English qw( -no_match_vars );

=head1 NAME

App::Validation::Automation::Unix - Base Classs App::Validation::Automation

Stores utilities that perform Unix based validation

=head1 SYNOPSIS

lib/App/Validation/Automation/Web.pm  view on Meta::CPAN

package App::Validation::Automation::Web;

use Moose;
use Carp;
use WWW::Mechanize;
use HTML::Form::ForceValue;
use English qw( -no_match_vars );
use namespace::autoclean;

=head1 NAME

App::Validation::Automation::Web - Base Class App::Validation::Automation

Stores utilities that perform web based validation

=head1 SYNOPSIS

App::Validation::Automation::Web browses the web urls stored in config or passed as arguments using WWW::Mechanize Logs into the web urls using the credentials stored in attributes.Handles password expiry and authentication failure along with DNS rou...



( run in 0.277 second using v1.01-cache-2.11-cpan-4d50c553e7e )