X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FOptional%2FDependencies.pm;h=7b44658c770b9932c6137528ecd779407d4fbab6;hb=de895f0944b944ef52a79b889415a37807130c4b;hp=a96c189976d848fb7a215ecc0155dc6c92a1c5bd;hpb=4a233f3019d2baa4bf2abee0c873c74d5cdf3a11;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Optional/Dependencies.pm b/lib/DBIx/Class/Optional/Dependencies.pm index a96c189..7b44658 100644 --- a/lib/DBIx/Class/Optional/Dependencies.pm +++ b/lib/DBIx/Class/Optional/Dependencies.pm @@ -18,6 +18,7 @@ my $json_any = { my $moose_basic = { 'Moose' => '0.98', 'MooseX::Types' => '0.21', + 'MooseX::Types::LoadableClass' => '0.011', }; my $replicated = { @@ -106,13 +107,6 @@ my $rdbms_firebird_odbc = { }; my $reqs = { - dist_podinherit => { - req => { - 'Pod::Inherit' => '0.90', - 'Pod::Tree' => '0', - } - }, - replicated => { req => $replicated, pod => { @@ -171,7 +165,7 @@ my $reqs = { test_pod => { req => { - 'Test::Pod' => '1.41', + 'Test::Pod' => '1.42', }, }, @@ -191,7 +185,7 @@ my $reqs = { test_strictures => { req => { - 'Test::Strict' => '0.16', + 'Test::Strict' => '0.20', }, }, @@ -253,7 +247,6 @@ my $reqs = { test_cdbicompat => { req => { - 'Class::DBI' => 0, 'Class::DBI::Plugin::DeepAbstractSearch' => '0', %$datetime_basic, 'Time::Piece::MySQL' => '0', @@ -617,8 +610,23 @@ my $reqs = { }, }, + dist_dir => { + req => { + 'ExtUtils::MakeMaker' => '6.64', + 'Pod::Inherit' => '0.90', + 'Pod::Tree' => '0', + } + }, + + dist_upload => { + req => { + 'CPAN::Uploader' => '0.103001', + }, + }, + }; +our %req_availability_cache; sub req_list_for { my ($class, $group) = @_; @@ -633,7 +641,16 @@ sub req_list_for { } -our %req_availability_cache; +sub die_unless_req_ok_for { + my ($class, $group) = @_; + + Carp::croak "die_unless_req_ok_for() expects a requirement group name" + unless $group; + + $class->_check_deps($group)->{status} + or die sprintf( "Required modules missing, unable to continue: %s\n", $class->_check_deps($group)->{missing} ); +} + sub req_ok_for { my ($class, $group) = @_; @@ -865,13 +882,23 @@ The author is expected to prepend the necessary text to this message before returning the actual error seen by the user. EOD + '=head2 die_unless_req_ok_for', + '=over', + '=item Arguments: $group_name', + '=back', + <<'EOD', +Checks if L passes for the supplied C<$group_name>, and +in case of failure throws an exception including the information +from L. +EOD + '=head2 req_errorlist_for', '=over', '=item Arguments: $group_name', '=item Return Value: \%list_of_loaderrors_per_module', '=back', <<'EOD', -Returns a hashref containing the actual errors that occured while attempting +Returns a hashref containing the actual errors that occurred while attempting to load each module in the requirement group. EOD '=head1 AUTHOR',