App-Standby

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Pingdom::Client" : "0",
            "Plack::Builder" : "0",
            "Plack::Loader" : "0",
            "Plack::Request" : "0",
            "Template" : "0",
            "Try::Tiny" : "0",
            "URI::Escape" : "0",
            "feature" : "0",
            "lib" : "0",
            "mro" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.010_000",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Temp" : "0",
            "HTTP::Request::Common" : "0",
            "Plack::Test" : "0",

META.yml  view on Meta::CPAN

  Pingdom::Client: 0
  Plack::Builder: 0
  Plack::Loader: 0
  Plack::Request: 0
  Template: 0
  Try::Tiny: 0
  URI::Escape: 0
  feature: 0
  lib: 0
  mro: 0
  namespace::autoclean: 0
  perl: 5.010_000
  strict: 0
  warnings: 0
version: 0.04
x_authority: cpan:TEX

Makefile.PL  view on Meta::CPAN

    "Pingdom::Client" => 0,
    "Plack::Builder" => 0,
    "Plack::Loader" => 0,
    "Plack::Request" => 0,
    "Template" => 0,
    "Try::Tiny" => 0,
    "URI::Escape" => 0,
    "feature" => 0,
    "lib" => 0,
    "mro" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "File::Temp" => 0,
    "HTTP::Request::Common" => 0,
    "Plack::Test" => 0,
    "Test::MockObject::Universal" => 0,
    "Test::More" => 0
  },

examples/complex/lib/App/Standby/Service/Complex.pm  view on Meta::CPAN

package App::Standby::Service::Complex;

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'App::Standby::Service::HTTP';

examples/simple/lib/App/Standby/Service/Simple.pm  view on Meta::CPAN

package App::Standby::Service::Simple;

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'App::Standby::Service::HTTP';

lib/App/Standby.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Managing on-call rotation and notification queues

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

use Log::Tree;

lib/App/Standby/Cmd.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Cmd::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Command base class

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'MooseX::App::Cmd';

lib/App/Standby/Cmd/Command.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Cmd::Command::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Base class for any command

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;
use DBI;
use Config::Yak;
use Log::Tree;

lib/App/Standby/Cmd/Command/bootstrap.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Cmd::Command::bootstrap::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Command to intialize the database

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
use Try::Tiny;
use Data::Pwgen;

# extends ...

lib/App/Standby/DB.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::DB::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Database abstraction/helper for App::Standby

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;
use DBI;

# extends ...

lib/App/Standby/Frontend.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Frontend::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Plack based web frontend for App::Standby

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

use Template;
use Try::Tiny;

lib/App/Standby/Group.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Group::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Core logic

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Data::Dumper;
use Try::Tiny;

# extends ...

lib/App/Standby/Service.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Service::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Service Plugin baseclass

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'App::Standby';

lib/App/Standby/Service/HTTP.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Service::HTTP::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Baseclass for any simple HTTP service

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
use Try::Tiny;
use JSON;
use LWP::UserAgent;
use URI::Escape;

lib/App/Standby/Service/MS.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Service::MS::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: a Monitoring::Spooler service

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'App::Standby::Service::HTTP';

lib/App/Standby/Service/Pingdom.pm  view on Meta::CPAN

BEGIN {
  $App::Standby::Service::Pingdom::AUTHORITY = 'cpan:TEX';
}
# ABSTRACT: Pingdom Service

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
use Try::Tiny;
use Pingdom::Client;

# extends ...

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.913 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )