App-Sandy

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "PerlIO::gzip" : "0.19",
            "Pod::Usage" : "0",
            "Scalar::Util" : "0",
            "Storable" : "2.51",
            "Text::ASCIITable" : "0",
            "Try::Tiny" : "0",
            "XSLoader" : "0",
            "base" : "0",
            "constant" : "0",
            "feature" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.018000",
            "strict" : "0",
            "true" : "0",
            "utf8" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "Test::Perl::Critic" : "0",

META.yml  view on Meta::CPAN

  PerlIO::gzip: '0.19'
  Pod::Usage: '0'
  Scalar::Util: '0'
  Storable: '2.51'
  Text::ASCIITable: '0'
  Try::Tiny: '0'
  XSLoader: '0'
  base: '0'
  constant: '0'
  feature: '0'
  namespace::autoclean: '0'
  perl: '5.018000'
  strict: '0'
  'true': '0'
  utf8: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/galantelab/sandy/issues
  homepage: https://galantelab.github.io/sandy/
  repository: git://github.com/galantelab/sandy.git
version: '0.25'

Makefile.PL  view on Meta::CPAN

    "PerlIO::gzip" => "0.19",
    "Pod::Usage" => 0,
    "Scalar::Util" => 0,
    "Storable" => "2.51",
    "Text::ASCIITable" => 0,
    "Try::Tiny" => 0,
    "XSLoader" => 0,
    "base" => 0,
    "constant" => 0,
    "feature" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "true" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Class::Data::Inheritable" => "0.08",
    "Test::Class" => "0.50",
    "Test::Most" => "0.35",
    "Test::UseAllModules" => 0,

Makefile.PL  view on Meta::CPAN

  "Test::Class" => "0.50",
  "Test::Most" => "0.35",
  "Test::UseAllModules" => 0,
  "Text::ASCIITable" => 0,
  "Try::Tiny" => 0,
  "XSLoader" => 0,
  "autodie" => 0,
  "base" => 0,
  "constant" => 0,
  "feature" => 0,
  "namespace::autoclean" => 0,
  "strict" => 0,
  "true" => 0,
  "utf8" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

cpanfile  view on Meta::CPAN

requires "PerlIO::gzip" => "0.19";
requires "Pod::Usage" => "0";
requires "Scalar::Util" => "0";
requires "Storable" => "2.51";
requires "Text::ASCIITable" => "0";
requires "Try::Tiny" => "0";
requires "XSLoader" => "0";
requires "base" => "0";
requires "constant" => "0";
requires "feature" => "0";
requires "namespace::autoclean" => "0";
requires "perl" => "5.018000";
requires "strict" => "0";
requires "true" => "0";
requires "utf8" => "0";
requires "warnings" => "0";

on 'build' => sub {
  requires "LWP::Simple" => "0";
};

lib/App/Sandy/Base.pm  view on Meta::CPAN

use utf8 ();
use feature ();
use true ();
use Carp ();
use IO::Handle;
use Try::Tiny ();
use Hook::AfterRuntime;
use Import::Into;
use Data::OptList;
use Module::Runtime 'use_module';
use namespace::autoclean;

our $VERSION = '0.25'; # VERSION

BEGIN {
	$SIG{'__DIE__'} = sub {
		if($^S) {
			return;
		}
		Carp::confess(@_) if $ENV{DEBUG};
		die(@_);

lib/App/Sandy/Base.pm  view on Meta::CPAN

			}
		} else {
			Carp::carp "Ignoring unknown import option '$_'";
		}
	}

	#This must come after anything else that might change warning
	# levels in the caller (e.g. Moose)
	warnings->import('FATAL'=>'all');

	namespace::autoclean->import(
		-cleanee => $caller,
		-except  => \@no_clean,
	);

	return;
}

1; ## --- end module App::Sandy::Base

__END__



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