Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/GitFollow/Cli/OptionsNormalizer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use strict;
use warnings;
use Exporter qw(import);
use GitFollow::Log qw(parse_opts);
use GitFollow::Stdlib::NumberUtils qw(is_numeric);

our @EXPORT_OK = qw(
format
Expand Down
1 change: 1 addition & 0 deletions src/GitFollow/Log.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use strict;
use warnings;
use Exporter qw(import);
use GitFollow::Environment qw($GIT_PATH);
use GitFollow::Stdlib::NumberUtils qw(is_numeric);

our @EXPORT_OK = qw(
parse_opts
Expand Down
2 changes: 2 additions & 0 deletions src/GitFollow/Stdlib/NumberUtils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ sub is_numeric {
return (defined $num)
? ($num =~ /^\d+$/ ? 1 : 0) : 0;
}

1;