Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Be more lax about resources Meta type. Fixes #354.
  • Loading branch information
oalders committed Nov 4, 2014
1 parent 0c6017a commit 40a0f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/MetaCPAN/Types/Internal.pm
Expand Up @@ -10,7 +10,7 @@ use JSON;
use MooseX::Getopt::OptionTypeMap;
use MooseX::Types::Common::String qw(NonEmptySimpleStr);
use MooseX::Types::Moose qw( ArrayRef Bool HashRef Item Int Num Str Undef );
use MooseX::Types::Structured qw(Dict Tuple Optional);
use MooseX::Types::Structured qw( Dict Optional slurpy Tuple );

use MooseX::Types -declare => [
qw(
Expand Down Expand Up @@ -113,7 +113,7 @@ subtype Resources,
bugtracker =>
Optional [ Dict [ web => Optional [Str], mailto => Optional [Str] ] ],
repository => Optional [
Dict [
slurpy Dict [
url => Optional [Str],
web => Optional [Str],
type => Optional [Str]
Expand Down

0 comments on commit 40a0f4f

Please sign in to comment.