App-GitGerrit
view release on metacpan or search on metacpan
[New features]
- It's possible now to specify a default set of options for each
sub-command using the variable git-gerrit.options.COMMAND.
[Changes]
- Take off the message about this being beta code from README.
[Fixes]
- Remove dependency from File::Slurp in order to correctly support
locale-based encodings in the message file created by the editor.
0.014 2013-10-12 22:03:10 America/Sao_Paulo
[New features]
- The configuration variables ('remote', 'baseurl', and 'project')
now have suitable defaults which should allow most users to start
using git-gerrit out of the box, without any pre-configuration
required.
- You can --force a 'git gerrit push' to succeed when the working
[Fixes]
- Drop Win32 dependency which was preventing the build on any other
platform.
0.008 2013-09-30 22:53:58 America/Sao_Paulo
[Fixes]
- Fix 'git gerrit reviewers'. It wasn't adding reviewers correctly.
- Avoid the use of ':locale' IO layer on Windows, because it's not
well supported there.
0.007 2013-09-29 22:26:20 America/Sao_Paulo
[Changes]
- Remove the --verbose option from 'git gerrit show', as it wasn't
adding anything useful.
- Improve the output formating of 'git gerrit show' and 'git gerrit
query' using the Text::Table module, if available.
containing the most relevant vote for the 'Code-Review' label.
[Fixes]
- Fix 'git gerrit submit', which wasn't working at all.
- Fix 'git gerrit show', which wasn't outputting the votes for the
change labels.
- Fix credential management on Windows.
- Fix IO encoding/decoding making it locale-based.
0.006 2013-09-26 21:33:39 America/Sao_Paulo
[Changes]
- Rename 'git gerrit backout' to 'git gerrit upstream', which is
more meaningful.
- The git-gerrit.username config variable doesn't exist anymore. The
username can be informed via the git-gerrit.baseurl variable.
Data::Dumper: 0
Exporter: 0
File::Spec: 0
File::Temp: 0
Gerrit::REST: 0.009
Getopt::Long: 0
Pod::Usage: 0
Text::Table: 0
URI: 0
URI::Escape: 0
locale: 0
open: 1.07
perl: 5.010
strict: 0
utf8: 0
warnings: 0
resources:
bugtracker: https://github.com/gnustavo/git-gerrit/issues
homepage: http://search.cpan.org/dist/App-GitGerrit/
repository: git://github.com/gnustavo/git-gerrit.git
version: 0.022
Makefile.PL view on Meta::CPAN
"Data::Dumper" => 0,
"Exporter" => 0,
"File::Spec" => 0,
"File::Temp" => 0,
"Gerrit::REST" => "0.009",
"Getopt::Long" => 0,
"Pod::Usage" => 0,
"Text::Table" => 0,
"URI" => 0,
"URI::Escape" => 0,
"locale" => 0,
"open" => "1.07",
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Test::More" => 0,
"lib" => 0
},
"VERSION" => "0.022",
Makefile.PL view on Meta::CPAN
"File::Spec" => 0,
"File::Temp" => 0,
"Gerrit::REST" => "0.009",
"Getopt::Long" => 0,
"Pod::Usage" => 0,
"Test::More" => 0,
"Text::Table" => 0,
"URI" => 0,
"URI::Escape" => 0,
"lib" => 0,
"locale" => 0,
"open" => "1.07",
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
lib/App/GitGerrit.pm view on Meta::CPAN
use utf8;
use 5.010;
use strict;
use warnings;
use locale ':not_characters';
# The following incantation is here to avoid this bug:
# https://rt.perl.org/rt3/Public/Bug/Display.html?id=63402
my $encoding;
BEGIN {
if ($^O eq 'MSWin32') {
require Win32;
my $cp = Win32::GetConsoleCP();
$encoding = ":encoding(cp$cp)";
} else {
$encoding = ':locale';
}
}
use open ':std', $encoding;
package App::GitGerrit;
{
$App::GitGerrit::VERSION = '0.022';
}
# ABSTRACT: A container for functions for the git-gerrit program
( run in 0.619 second using v1.01-cache-2.11-cpan-ceb78f64989 )