File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ sub _build_query_favorite {
44
44
}
45
45
46
46
my @ROGUE_DISTRIBUTIONS = qw(
47
+ Acme-DependOnEverything
47
48
Bundle-Everything
48
49
kurila
49
50
perl-5.005_02+apache1.3.3+modperl
Original file line number Diff line number Diff line change @@ -3,14 +3,13 @@ package MetaCPAN::Model::Search;
3
3
use MetaCPAN::Moose;
4
4
5
5
use Const::Fast qw( const ) ;
6
- use Log::Contextual qw( :log :dlog ) ;
7
- use MooseX::StrictConstructor;
8
6
use Cpanel::JSON::XS ();
9
-
10
7
use Hash::Merge qw( merge ) ;
11
8
use List::Util qw( min uniq ) ;
9
+ use Log::Contextual qw( :log :dlog ) ;
12
10
use MetaCPAN::Types qw( Object Str ) ;
13
11
use MetaCPAN::Util qw( single_valued_arrayref_to_scalar ) ;
12
+ use MooseX::StrictConstructor;
14
13
15
14
has es => (
16
15
is => ' ro' ,
@@ -25,9 +24,18 @@ has index => (
25
24
required => 1,
26
25
);
27
26
28
- const my $RESULTS_PER_RUN => 200;
29
- const my @ROGUE_DISTRIBUTIONS =>
30
- qw( kurila perl_debug perl_mlb perl-5.005_02+apache1.3.3+modperl pod2texi perlbench spodcxx Bundle-Everything) ;
27
+ const my $RESULTS_PER_RUN => 200;
28
+ const my @ROGUE_DISTRIBUTIONS => qw(
29
+ Acme-DependOnEverything
30
+ Bundle-Everything
31
+ kurila
32
+ perl-5.005_02+apache1.3.3+modperl
33
+ perlbench
34
+ perl_debug
35
+ perl_mlb
36
+ pod2texi
37
+ spodcxx
38
+ ) ;
31
39
32
40
sub _not_rogue {
33
41
my @rogue_dists
You can’t perform that action at this time.
0 commit comments