Git-Wrapper

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Git-Wrapper

0.048     2018-03-29 11:14:42-07:00 America/Los_Angeles

        No changes since last development release.

0.047_090 2018-03-19 21:19:22-07:00 America/Los_Angeles (TRIAL RELEASE)

        update t/path_class.t to remove tilde; fixes [#41] (Jean-Damien.Durand)
        Unset (possible) global gpgsign [#91] (Sergey Romanov)
        remove timing bug in basic.t (Christian Walde)
        POD typo fix (Сергей Романов)
        Include dist.ini in distribution (Karen Etheridge)

0.047     2016-09-18 15:30:58-07:00 America/Los_Angeles

        Properly track commits in test (Graham Knop)

0.046     2016-09-12 20:13:04-07:00 America/Los_Angeles

t/basic.t  view on Meta::CPAN

if ( versioncmp( $git->version , '1.5.0') eq -1 ) {
  plan skip_all =>
    "Git prior to v1.5.0 doesn't support 'config' subcmd which we need for this test."
}

diag( "Testing git version: " . $version );

$git->init; # 'git init' also added in v1.5.0 so we're safe

# see https://github.com/genehack/Git-Wrapper/issues/91
$git->config('commit.gpgsign', 'false');

$git->config( 'user.name'  , 'Test User'        );
$git->config( 'user.email' , 'test@example.com' );

# make sure git isn't munging our content so we have consistent hashes
$git->config( 'core.autocrlf' , 'false' );
$git->config( 'core.safecrlf' , 'false' );

mkpath(File::Spec->catfile($dir, 'foo'));

t/path_class.t  view on Meta::CPAN

if ( versioncmp( $git->version , '1.5.0') eq -1 ) {
  plan skip_all =>
    "Git prior to v1.5.0 doesn't support 'config' subcmd which we need for this test."
}

diag( "Testing git version: " . $version );

$git->init; # 'git init' also added in v1.5.0 so we're safe

# see https://github.com/genehack/Git-Wrapper/issues/91
$git->config('commit.gpgsign', 'false');

$git->config( 'user.name'  , 'Test User'        );
$git->config( 'user.email' , 'test@example.com' );

# make sure git isn't munging our content so we have consistent hashes
$git->config( 'core.autocrlf' , 'false' );
$git->config( 'core.safecrlf' , 'false' );

my $foo = $dir->subdir('foo');
$foo->mkpath;



( run in 1.111 second using v1.01-cache-2.11-cpan-df04353d9ac )