App-mimi

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         },
         "requires" : {
            "DBI" : "0",
            "Docopt" : "0",
            "perl" : "5.008001"
         }
      },
      "test" : {
         "requires" : {
            "DBD::SQLite" : "0",
            "Test::Fatal" : "0",
            "Test::More" : "0.98",
            "Test::TempDir::Tiny" : "0"
         }
      }
   },
   "provides" : {
      "App::mimi" : {
         "file" : "lib/App/mimi.pm",
         "version" : "0.03"
      },

META.yml  view on Meta::CPAN

---
abstract: 'Migrations for small home projects'
author:
  - 'Viacheslav Tykhanovskyi, C<viacheslav.t@gmail.com>'
build_requires:
  DBD::SQLite: '0'
  Test::Fatal: '0'
  Test::More: '0.98'
  Test::TempDir::Tiny: '0'
configure_requires:
  Module::Build::Tiny: '0.035'
dynamic_config: 0
generated_by: 'Minilla/v3.0.9, CPAN::Meta::Converter version 2.150005'
license: unknown
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

cpanfile  view on Meta::CPAN


requires 'Docopt';
requires 'DBI';

recommends 'DBD::SQLite';
recommends 'DBD::Pg';

on 'test' => sub {
    requires 'DBD::SQLite';
    requires 'Test::More', '0.98';
    requires 'Test::Fatal';
    requires 'Test::TempDir::Tiny';
};

mimi.fatpack  view on Meta::CPAN


$fatpacked{"Module/Build/PodParser.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_BUILD_PODPARSER';
  package Module::Build::PodParser;use strict;use warnings;our$VERSION='0.03';$VERSION=eval$VERSION;sub new {my$package=shift;my$self;$self=bless {have_pod_parser=>0,@_},$package;unless ($self->{fh}){die "No 'file' or 'fh' parameter given" unless$sel...
MODULE_BUILD_PODPARSER

$fatpacked{"Module/Build/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_BUILD_TINY';
  package Module::Build::Tiny;$Module::Build::Tiny::VERSION='0.03';use strict;use warnings;use Exporter 5.57 'import';our@EXPORT=qw/Build Build_PL/;use CPAN::Meta;use ExtUtils::Config 0.003;use ExtUtils::Helpers 0.020 qw/make_executable split_like_sh...
MODULE_BUILD_TINY

$fatpacked{"Test/Fatal.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEST_FATAL';
  use strict;use warnings;package Test::Fatal;$Test::Fatal::VERSION='0.03';use Carp ();use Try::Tiny 0.07;use Exporter 5.57 'import';our@EXPORT=qw(exception);our@EXPORT_OK=qw(exception success dies_ok lives_ok);our ($REAL_TBL,$REAL_CALCULATED_TBL)=(1...
TEST_FATAL

$fatpacked{"Test/TempDir/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEST_TEMPDIR_TINY';
  use 5.006002;use strict;use warnings;package Test::TempDir::Tiny;our$VERSION='0.03';use Exporter 5.57 qw/import/;our@EXPORT=qw/tempdir in_tempdir/;use Carp qw/confess/;use Cwd qw/abs_path/;use Errno qw/EEXIST ENOENT/;{no warnings 'numeric';use File...
TEST_TEMPDIR_TINY

$fatpacked{"Try/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TRY_TINY';
  package Try::Tiny;use 5.006;our$VERSION='0.03';use strict;use warnings;use Exporter 5.57 'import';our@EXPORT=our@EXPORT_OK=qw(try catch finally);use Carp;$Carp::Internal{+__PACKAGE__}++;BEGIN {my$su=$INC{'Sub/Util.pm'}&& defined&Sub::Util::set_subn...
TRY_TINY

t/migrator.t  view on Meta::CPAN

use strict;
use warnings;

use lib 't/lib';

use Test::More;
use Test::Fatal;
use Test::TempDir::Tiny;
use TestDB;

use App::mimi;
use App::mimi::db;

subtest 'check: prints correct message when not set up' => sub {
    my $migrator = _build_migrator();

    open my $fh, '>', \my $stdout;



( run in 3.709 seconds using v1.01-cache-2.11-cpan-54e63673c56 )