1use strict;
2use warnings;
3package Module::Runtime::Conflicts; # git description: v0.002-9-gc4cd9f2
4# vim: set ts=8 sts=4 sw=4 tw=115 et :
5# ABSTRACT: Provide information on conflicts for Module::Runtime
6# KEYWORDS: conflicts breaks modules prerequisites upgrade
7
8our $VERSION = '0.003';
9
10use Module::Runtime ();
11use Dist::CheckConflicts
12    -dist      => 'Module::Runtime',
13    -conflicts => {
14        # listed modules are the highest *non-working* version when used in
15        # combination with the indicated version of Module::Runtime
16
17        eval { Module::Runtime->VERSION('0.014'); 1 } ? (
18            'Moose' => '2.1202',
19            'MooseX::NonMoose' => '0.24',
20            'Elasticsearch' => '1.00',
21        ) : (),
22    },
23    -also => [
24        'Package::Stash::Conflicts',
25        'Moose::Conflicts',
26    ];
27
281;
29
30__END__
31
32=pod
33
34=encoding UTF-8
35
36=head1 NAME
37
38Module::Runtime::Conflicts - Provide information on conflicts for Module::Runtime
39
40=head1 VERSION
41
42version 0.003
43
44=head1 SYNOPSIS
45
46    `moose-outdated`
47
48or
49
50    use Module::Runtime::Conflicts;
51    Module::Runtime::Conflicts->check_conflicts;
52
53=head1 DESCRIPTION
54
55This module provides conflicts checking for L<Module::Runtime>, which had a
56recent release that broke some versions of L<Moose>. It is called from
57L<Moose::Conflicts> and C<moose-outdated>.
58
59=head1 SEE ALSO
60
61=over 4
62
63=item *
64
65L<Dist::CheckConflicts>
66
67=item *
68
69L<Moose::Conflicts>
70
71=item *
72
73L<Dist::Zilla::Plugin::Breaks>
74
75=item *
76
77L<Dist::Zilla::Plugin::Test::CheckBreaks>
78
79=back
80
81=head1 SUPPORT
82
83Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Runtime-Conflicts>
84(or L<bug-Module-Runtime-Conflicts@rt.cpan.org|mailto:bug-Module-Runtime-Conflicts@rt.cpan.org>).
85
86There is also a mailing list available for users of this distribution, at
87L<http://lists.perl.org/list/cpan-workers.html>.
88
89There is also an irc channel available for users of this distribution, at
90L<C<#toolchain> on C<irc.perl.org>|irc://irc.perl.org/#toolchain>.
91
92I am also usually active on irc, as 'ether' at C<irc.perl.org>.
93
94=head1 AUTHOR
95
96Karen Etheridge <ether@cpan.org>
97
98=head1 COPYRIGHT AND LICENCE
99
100This software is copyright (c) 2014 by Karen Etheridge.
101
102This is free software; you can redistribute it and/or modify it under
103the same terms as the Perl 5 programming language system itself.
104
105=cut
106