Skip to content

Commit

Permalink
s/List::MoreUtils/List::SomeUtils/g
Browse files Browse the repository at this point in the history
  • Loading branch information
plicease committed Dec 28, 2024
1 parent 32dad74 commit 8bb461b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ my %module_build_args = (
"Hash::Merge::Simple" => 0,
"IO::Handle::Util" => "0.01",
"LWP::UserAgent" => 0,
"List::MoreUtils" => "0.401",
"List::SomeUtils" => "0",
"Log::Any" => 0,
"Log::Any::Adapter" => 0,
"MIME::Types" => 0,
Expand Down
2 changes: 1 addition & 1 deletion cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ requires 'HTTP::Request', 0;
requires 'Hash::Merge::Simple', 0;
requires 'IO::Handle::Util', '0.01';
requires 'LWP::UserAgent', 0;
requires 'List::MoreUtils', '0.401';
requires 'List::SomeUtils', 0;
requires 'Log::Any', 0;
requires 'Log::Any::Adapter', 0;
requires 'MIME::Types',0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Condition/Builder/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Catmandu::Sane;

our $VERSION = '1.2022';

use List::MoreUtils qw(all_u any);
use List::SomeUtils qw(all_u any);
use Catmandu::Util::Path qw(as_path);
use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/index.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ our $VERSION = '1.2022';

use Moo;
use Catmandu::Util::Path qw(as_path);
use List::MoreUtils qw(indexes first_index);
use List::SomeUtils qw(indexes first_index);
use namespace::clean;
use Catmandu::Fix::Has;

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/sort_field.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Catmandu::Sane;

our $VERSION = '1.2022';

use List::MoreUtils qw(uniq);
use List::SomeUtils qw(uniq);
use Catmandu::Util::Path qw(as_path);
use Moo;
use namespace::clean;
Expand Down
4 changes: 2 additions & 2 deletions lib/Catmandu/Fix/uniq.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Catmandu::Sane;

our $VERSION = '1.2022';

use List::MoreUtils qw(uniq);
use List::SomeUtils qw(uniq);
use Catmandu::Util::Path qw(as_path);
use Moo;
use namespace::clean;
Expand All @@ -19,7 +19,7 @@ sub _build_fixer {
as_path($self->path)->updater(
if_array_ref => sub {
no warnings 'uninitialized';
[List::MoreUtils::uniq(@{$_[0]})];
[List::SomeUtils::uniq(@{$_[0]})];
}
);
}
Expand Down

0 comments on commit 8bb461b

Please sign in to comment.