App-Stash

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    dist_version_from   => 'lib/App/Stash.pm',
    requires => {
        'File::HomeDir' => 0,
        'File::Path'    => 0,
        'Path::Class'   => 0,
        'JSON::Util'    => 0,
        'Class::Accessor::Chained::Fast' => 0,
    },
    build_requires => {
        'Test::More'        => 0,
        'Test::Differences' => 0,
        'Test::Exception'   => 0,
        'File::Temp'        => 0,
    },
    add_to_cleanup      => [ 'App-Stash-*' ],
    create_readme       => 1,
    sign                => 1,
    meta_merge => {
        resources => {
            repository => 'git://github.com/jozef/App-Stash.git',
            bugtracker => 'http://github.com/jozef/App-Stash/issues',

META.yml  view on Meta::CPAN

---
abstract: 'persistent application data storage'
author:
  - 'Jozef Kutej <jkutej@cpan.org>'
build_requires:
  File::Temp: 0
  Test::Differences: 0
  Test::Exception: 0
  Test::More: 0
configure_requires:
  Module::Build: 0.36
generated_by: 'Module::Build version 0.3607'
keywords:
  - application
  - data
  - storage
  - persistant

t/01_App-Stash.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

#use Test::More 'no_plan';
use Test::More tests => 7;
use Test::Differences;
use Test::Exception;
use File::Temp 'tempdir';
use Path::Class;

BEGIN {
	use_ok ( 'App::Stash' ) or exit;
}

exit main();



( run in 0.653 second using v1.01-cache-2.11-cpan-6aa56a78535 )