Skip to content

Commit

Permalink
switch to my pluginbundle; fixes various encoding issues
Browse files Browse the repository at this point in the history
  • Loading branch information
karenetheridge committed May 4, 2014
1 parent 8d434c8 commit 5f93ab9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 97 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- remove the install-side pod test with encoding complaints

0.14 2013-02-22 18:53:00Z
- New strict types, which verify that the data actually can be
Expand Down
92 changes: 9 additions & 83 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,98 +3,24 @@ author = Tomas Doran (t0m) <bobtfish@bobtfish.net>
abstract = ISO8601 date and duration string type constraints and coercions for Moose
copyright_holder = Tomas Doran
license = Perl_5
copyright_year = 2009

[Git::GatherDir]

[@Filter]
-bundle = @Basic
-remove = GatherDir
-remove = ExtraTests

; use V= to override; otherwise version is incremented from last tag
[Git::NextVersion]
version_regexp = ^v([\d._]+)(-TRIAL)?$

[GithubMeta]
homepage = http://metacpan.org/module/MooseX::Types::ISO8601

[AutoPrereqs]
skip = ^DT$
[@Author::ETHER]
AutoPrereqs.skip[] = ^DT$
Test::ReportPrereqs.include = Dist::CheckConflicts
-remove = Test::PodSpelling

[Prereqs / RuntimeRequires]
DateTime::Format::ISO8601 = 0

[Prereqs / RuntimeRecommends]
MooseX::Types::DateTime::MySQL = 0

[InstallGuide]
[MetaConfig]
[MetaProvides::Package]
[MetaJSON]
[Git::Describe]
[PkgVersion]
[MinimumPerl]

[ReadmeAnyFromPod]
type = markdown
filename = README.md
location = root

[NoTabsTests]
[EOLTests]
[PodSyntaxTests]
[PodCoverageTests]
[Test::Pod::LinkCheck]
[Test::Pod::No404s]

[Test::Compile]
bail_out_on_fail = 1

[Test::MinimumVersion]
[MetaTests]
[Test::CPAN::Changes]
[Test::Version]
;[Test::UnusedVars] ; broken in 5.16.0!
[Test::ChangesHasContent]

[Test::CheckDeps]
:version = 0.005
fatal = 1

[RunExtraTests]

[CheckPrereqsIndexed]

[Git::Remote::Check]
remote_branch = master

[Git::CheckFor::CorrectBranch]
:version = 0.004
release_branch = master
release_branch = stable

[Git::Check]
allow_dirty = README.md

[NextRelease]
:version = 4.300018
format = %-8V %{yyyy-MM-dd HH:mm:ss ZZZZ}d (%U)

[Git::Commit]
allow_dirty = Changes
allow_dirty = README.md
commit_msg = %N-%v%t%n%n%c

[Git::Tag]
tag_format = v%v%t
tag_message = v%v%t

[Git::Push]

[InstallRelease]
install_command = cpanm .
[Prereqs / DevelopRequires]
Test::CleanNamespaces = 0.08

[Clean]
; authordep Pod::Weaver::Section::Contributors
[ContributorsFromGit]

[Test::CheckBreaks]
conflicts_module = Moose::Conflicts
1 change: 1 addition & 0 deletions lib/MooseX/Types/ISO8601.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package MooseX::Types::ISO8601;
use strict;
use warnings;

use utf8;
use DateTime 0.41;
# this alias lets us distinguish the class from the class_type in versions of
# MooseX::Types that can't figure that out for us (i.e. before 0.32)
Expand Down
14 changes: 0 additions & 14 deletions t/01pod.t

This file was deleted.

6 changes: 6 additions & 0 deletions weaver.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[@Default]

[-Transformer]
transformer = List

[Contributors]

0 comments on commit 5f93ab9

Please sign in to comment.