Skip to content

Commit

Permalink
Update MANIFEST; consolidate author tests in xt/
Browse files Browse the repository at this point in the history
  • Loading branch information
cxw42 committed Jan 2, 2019
1 parent 88ed932 commit d209258
Show file tree
Hide file tree
Showing 20 changed files with 46 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Revision history for Build-Hopen

0.01 Date/time
First version, released on an unsuspecting world.
0.000003 2018-01-02
First full trial release

32 changes: 28 additions & 4 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@
bin/hopen
Changes
lib/Build/Hopen.pm
lib/Build/Hopen/App.pm
lib/Build/Hopen/Base.pm
lib/Build/Hopen/G.pod
lib/Build/Hopen/G/DAG.pm
lib/Build/Hopen/G/Entity.pm
lib/Build/Hopen/G/Goal.pm
lib/Build/Hopen/G/Link.pm
lib/Build/Hopen/G/Node.pm
lib/Build/Hopen/G/Op.pm
lib/Build/Hopen/G/PassthroughOp.pm
lib/Build/Hopen/Gen.pod
lib/Build/Hopen/Phase.pod
lib/Build/Hopen/Phase/Gen.pm
lib/Build/Hopen/Phase/Probe.pm
LICENSE.md
Makefile.PL
MANIFEST This list of files
MANIFEST
MANIFEST.SKIP
README
README.md
t/00-load.t
t/manifest.t
t/pod-coverage.t
t/pod.t
t/001-entity.t
t/002-link.t
t/003-node.t
t/004-goal.t
t/005-op.t
t/006-passthrough-op.t
t/007-hnew.t
t/020-dag.t
t/021-dag-single-goal.t
t/lib/HopenTest.pm
xt/boilerplate.t
xt/manifest.t
xt/pod-coverage.t
xt/pod.t
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
\bfoo\b.*
t/.*\.out$
lua$
TEMPLATE

#modified included
# Avoid version control files.
Expand Down Expand Up @@ -34,6 +35,8 @@ lua$
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
\b_eumm/ # 7.05_05 and above

\.tar\.gz$

# Avoid temp and backup files.
~$
\.old$
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package Build::Hopen;
use Build::Hopen::Base;
use parent 'Exporter';

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

our @EXPORT = qw(boolify hnew hlog);
# Docs {{{1
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/App.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::App;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use Getopt::Long qw(GetOptionsFromArray :config gnu_getopt);

Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package Build::Hopen::Base;
use parent 'Exporter';
use Import::Into;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

# Pragmas
use 5.014;
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/DAG.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::DAG;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Op';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/Entity.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::Entity;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use Class::Tiny qw(name);

Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/Goal.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::Goal;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Op';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/Link.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::Link;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Entity';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/Node.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::Node;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Entity';
#use Class::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/Op.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::Op;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Node';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/G/PassthroughOp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Build::Hopen::G::PassthroughOp;
use Build::Hopen;
use Build::Hopen::Base;

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'Build::Hopen::G::Op';
use Class::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/Phase/Gen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Build::Hopen;
use Build::Hopen::Base;
use parent 'Exporter';

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use Class::Tiny qw(TODO);

Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/Phase/Probe.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Build::Hopen;
use Build::Hopen::Base;
use parent 'Exporter';

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use Class::Tiny qw(TODO);

Expand Down
2 changes: 1 addition & 1 deletion lib/Build/Hopen/TEMPLATE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Build::Hopen;
use Build::Hopen::Base;
use parent 'Exporter';

our $VERSION = '0.000002'; # TRIAL
our $VERSION = '0.000003'; # TRIAL

use parent 'TODO';
use Class::Tiny qw(TODO);
Expand Down
1 change: 0 additions & 1 deletion xt/boilerplate.t
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ sub module_boilerplate_ok {
}

TODO: {
local $TODO = "Need to replace the boilerplate text";

not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d209258

Please sign in to comment.