Dist::Zilla::Role::ConfigDumper - something that can dump its (public, simplified) configuraiton


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::ConfigDumper - something that can dump its (public, simplified) configuraiton

VERSION

Top

version 4.200008

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::ConfigDumper;
BEGIN {
  $Dist::Zilla::Role::ConfigDumper::VERSION = '4.200008';
}
# ABSTRACT: something that can dump its (public, simplified) configuraiton
use Moose::Role;

use namespace::autoclean;

sub dump_config { return {}; }

no Moose::Role;
1;

__END__