Skip to content

Commit

Permalink
dist::zilla
Browse files Browse the repository at this point in the history
  • Loading branch information
domm committed Mar 29, 2013
1 parent 39d932d commit 75c84f4
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 119 deletions.
33 changes: 0 additions & 33 deletions Build.PL

This file was deleted.

26 changes: 0 additions & 26 deletions MANIFEST

This file was deleted.

52 changes: 0 additions & 52 deletions MANIFEST.SKIP

This file was deleted.

8 changes: 3 additions & 5 deletions bin/acme_returnvalue.pl
Expand Up @@ -4,11 +4,9 @@
use warnings;
use Acme::ReturnValue;

# ABSTRACT: run Acme::ReturnValue
# PODNAME: acme_returnvalue.pl

Acme::ReturnValue->new_with_options->run;

__END__
if (my $dumpdir = $opts{generate_html}) {
$arv->generate_report_from_dump($dumpdir);
exit;
}

4 changes: 4 additions & 0 deletions bin/acme_returnvalue_makesite.pl
Expand Up @@ -4,5 +4,9 @@
use warnings;
use Acme::ReturnValue::MakeSite;

# ABSTRACT: run Acme::ReturnValue::MakeSite
# PODNAME: acme_returnvalue_makesite.pl


Acme::ReturnValue::MakeSite->new_with_options->run;

44 changes: 44 additions & 0 deletions dist.ini
@@ -0,0 +1,44 @@
name = Acme-ReturnValue
author = Thomas Klausner <domm@cpan.org>
license = Perl_5
copyright_holder = Thomas Klausner
copyright_year = 2013

[GatherDir]
[PruneCruft]
[ManifestSkip]
[MetaYAML]
[License]
[Readme]
[ExecDir]
[ShareDir]
[Repository]

[MetaResources]
homepage=http://returnvalues.useperl.at

[CheckChangeLog]

[Manifest]

[TestRelease]
[ConfirmRelease]

[Glob / FooTests]
glob = t/*.t

[AutoPrereqs]
skip = ^testlib::.+
test_finder = :FooTests



[VersionFromModule]
[ModuleBuild]
[PodWeaver]

[InstallGuide]
[MetaJSON]

[@Git]

4 changes: 3 additions & 1 deletion lib/Acme/ReturnValue.pm
Expand Up @@ -4,7 +4,9 @@ package Acme::ReturnValue;
use 5.010;
use strict;
use warnings;
use version; our $VERSION = qv '1.000';
our $VERSION = '1.000';

# ABSTRACT: report interesting return values

use PPI;
use File::Find;
Expand Down
4 changes: 2 additions & 2 deletions lib/Acme/ReturnValue/MakeSite.pm
Expand Up @@ -4,7 +4,8 @@ package Acme::ReturnValue::MakeSite;
use 5.010;
use strict;
use warnings;
use version; our $VERSION = qv '0.70.0';

# ABSTRACT: generate returnvalues.useperl.at

use Path::Class qw();
use URI::Escape;
Expand Down Expand Up @@ -396,7 +397,6 @@ Version: $version<br>
EOHTMLFOOT
}


"let's generate another stupid website";

__END__
Expand Down

0 comments on commit 75c84f4

Please sign in to comment.