Skip to content

Commit

Permalink
v0.120090
Browse files Browse the repository at this point in the history
    - first implementation
  • Loading branch information
wchristian committed Jan 9, 2012
1 parent f7744a1 commit 7c6b4c0
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 11 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Revision history for {{$dist->name}}

{{$NEXT}}

0.120090 2012-01-09 14:21:33 Europe/Berlin
- first implementation
12 changes: 6 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"abstract" : "PluginBundle helper to generate files",
"abstract" : "helper to generate files with little repetition in a PluginBundle",
"author" : [
"Christian Walde <walde.christian@googlemail.com>"
],
Expand Down Expand Up @@ -52,7 +52,7 @@
"provides" : {
"Dist::Zilla::Util::FileGenerator" : {
"file" : "lib/Dist/Zilla/Util/FileGenerator.pm",
"version" : "0.1"
"version" : "0.120090"
}
},
"release_status" : "stable",
Expand All @@ -61,13 +61,13 @@
"mailto" : "bug-dist-zilla-util-filegenerator at rt.cpan.org",
"web" : "http://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Util-FileGenerator"
},
"homepage" : "http://homepage",
"homepage" : "https://github.com/wchristian/dist-zilla-util-filegenerator",
"repository" : {
"type" : "git",
"url" : "https://github.com/user/repo.git",
"web" : "https://github.com/user/repo"
"url" : "https://github.com/wchristian/dist-zilla-util-filegenerator.git",
"web" : "https://github.com/wchristian/dist-zilla-util-filegenerator"
}
},
"version" : 0.1
"version" : "0.120090"
}

35 changes: 31 additions & 4 deletions README.pod
Original file line number Diff line number Diff line change
@@ -1,10 +1,37 @@
=head1 NAME

Dist::Zilla::Util::FileGenerator - PluginBundle helper to generate files
Dist::Zilla::Util::FileGenerator - helper to generate files with little repetition in a PluginBundle

=head1 VERSION

version 0.1
version 0.120090

=head1 METHODS

=head2 combine_with

my @plugins_with_generated_files = $gen->combine_with( @plain_plugins );

Given an array containing specs for a plugin bundle this method returns an array
with the necessary exclusions, generators and copiers added.

=head2 generators

my @generator_plugins = $gen->generators;

Returns an array with the necessary generators for inclusion in a plugin bundle.

=head2 file_names

my @generated_files = $gen->file_names;

Returns an array with the file names of the generated files.

=head2 copiers

my @generated_files = $gen->copiers;

Returns an array with the necessary copiers for inclusion in a plugin bundle.

=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders

Expand All @@ -21,9 +48,9 @@ You will be notified automatically of any progress on your issue.
This is open source software. The code repository is available for
public review and contribution under the terms of the license.

L<https://github.com/user/repo>
L<https://github.com/wchristian/dist-zilla-util-filegenerator>

git clone https://github.com/user/repo.git
git clone https://github.com/wchristian/dist-zilla-util-filegenerator.git

=head1 AUTHOR

Expand Down
3 changes: 2 additions & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ license = WTFPL_2
copyright_holder = Christian Walde
copyright_year = 2012

[@MITHALDU]
[@MITHALDU]
major_version = 0

0 comments on commit 7c6b4c0

Please sign in to comment.