App-Basis

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

requires:
  Digest::MD5: '0'
  Exporter: '0'
  File::HomeDir: '0'
  Getopt::Long: '0'
  IPC::Cmd: '0'
  List::Util: '0'
  Moo: '0'
  POSIX: '0'
  Path::Tiny: '0'
  Try::Tiny: '0'
  YAML::Tiny::Color: '0'
  YAML::XS: '0'
  perl: '5.014'
  strict: '0'
  utf8::all: '0'
  vars: '0'
  warnings: '0'
resources:
  repository: git://github.com/27escape/App-Basis.git
version: '1.2'

Makefile.PL  view on Meta::CPAN

  "PREREQ_PM" => {
    "Digest::MD5" => 0,
    "Exporter" => 0,
    "File::HomeDir" => 0,
    "Getopt::Long" => 0,
    "IPC::Cmd" => 0,
    "List::Util" => 0,
    "Moo" => 0,
    "POSIX" => 0,
    "Path::Tiny" => 0,
    "Try::Tiny" => 0,
    "YAML::Tiny::Color" => 0,
    "YAML::XS" => 0,
    "strict" => 0,
    "utf8::all" => 0,
    "vars" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0
  },

Makefile.PL  view on Meta::CPAN

  "Digest::MD5" => 0,
  "Exporter" => 0,
  "File::HomeDir" => 0,
  "Getopt::Long" => 0,
  "IPC::Cmd" => 0,
  "List::Util" => 0,
  "Moo" => 0,
  "POSIX" => 0,
  "Path::Tiny" => 0,
  "Test::More" => 0,
  "Try::Tiny" => 0,
  "YAML::Tiny::Color" => 0,
  "YAML::XS" => 0,
  "strict" => 0,
  "utf8::all" => 0,
  "vars" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {

cpanfile  view on Meta::CPAN

requires "Digest::MD5" => "0";
requires "Exporter" => "0";
requires "File::HomeDir" => "0";
requires "Getopt::Long" => "0";
requires "IPC::Cmd" => "0";
requires "List::Util" => "0";
requires "Moo" => "0";
requires "POSIX" => "0";
requires "Path::Tiny" => "0";
requires "Try::Tiny" => "0";
requires "YAML::Tiny::Color" => "0";
requires "YAML::XS" => "0";
requires "perl" => "5.014";
requires "strict" => "0";
requires "utf8::all" => "0";
requires "vars" => "0";
requires "warnings" => "0";

on 'test' => sub {
  requires "Test::More" => "0";

lib/App/Basis/Config.pm  view on Meta::CPAN



package App::Basis::Config;
$App::Basis::Config::VERSION = '1.2';
use 5.010;
use warnings;
use strict;
use Moo;
use YAML::XS qw( Load Dump);
use Path::Tiny;
use Try::Tiny;
use App::Basis;



# ----------------------------------------------------------------------------
# the raw config data hash
has raw => (
    is   => 'ro',
    lazy => 1,

t/01_app.t  view on Meta::CPAN


=head1 AUTHOR

 kevin mulholland, moodfarm@cpan.org

=cut

use v5.10;
use strict;
use warnings;
use Try::Tiny;
use Path::Tiny ;
use File::HomeDir ;
use Test::More tests => 20;

my $logfile = "/tmp/$$.log" ;

BEGIN { use_ok('App::Basis'); }

# App::Basis can die rather than exit, specially to help us test it!
set_test_mode(1);



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