forked from masak/proto
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add PostProcessor plugin pipeline
- Loading branch information
1 parent
b617f22
commit e58d9ca
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| package ModulesPerl6::DbBuilder::Dist::PostProcessor; | ||
|
|
||
| use strictures 2; | ||
|
|
||
| use ModulesPerl6::DbBuilder::Log; | ||
|
|
||
| use Moo; | ||
| use namespace::clean; | ||
|
|
||
| 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| package ModulesPerl6::DbBuilder::Dist::PostProcessor::TravisCI; | ||
|
|
||
| use strictures 2; | ||
| use base 'ModulesPerl6::DbBuilder::Dist::PostProcessor'; | ||
|
|
||
| use ModulesPerl6::DbBuilder::Log; | ||
|
|
||
| use Moo; | ||
| use namespace::clean; | ||
|
|
||
| 1; |