Skip to content

Commit

Permalink
Travis CI, Dist::Zilla, and minimum version OCD updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gryphonshafer committed Feb 12, 2017
1 parent b654afa commit b4863bd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 29 deletions.
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/blib/
/.build/
*.bs
_build/
cover_db/
inc/
/.build/
Build
!Build/
Build.bat
cover_db/
inc/
.last_cover_stats
/Makefile
/Makefile.old
/MANIFEST.bak
/META.yml
/META.json
/META.yml
/MYMETA.*
nytprof.out
/pm_to_blib
*.o
*.bs
dest
/pm_to_blib
.prove
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
language: perl
perl:
- 5.23
- 5.20
- 5.18
- 5.24
- 5.22
- 5.16
- 5.12
env: PERL_CPANM_OPT="--quiet --notest --force --skip-satisfied"
before_install:
- git clone git://github.com/haarg/perl-travis-helper
Expand All @@ -27,4 +27,4 @@ notifications:
on_failure: always
on_success: change
recipients:
- gryphon@gryphonshafer.com
- gryphon@cpan.org
24 changes: 7 additions & 17 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name = Daemon-Device
author = Gryphon Shafer <gryphon@cpan.org>
license = Perl_5
name = Daemon-Device
author = Gryphon Shafer <gryphon@cpan.org>
license = Perl_5
copyright_holder = Gryphon Shafer
copyright_year = 2015
copyright_year = 2017

[Git::NextVersion]

[@Basic]

;[@Filter]
;-bundle = @Basic
;-remove = ConfirmRelease
;-remove = UploadToCPAN
[PruneFiles]
match = ^cover_db

[MinimumPerl]

Expand All @@ -24,7 +21,7 @@ copyright_year = 2015
[PodWeaver]

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

Expand All @@ -51,10 +48,3 @@ issues = 1

[@Git]
untracked_files = ignore

;[@Filter]
;-bundle = @Git
;-remove = Git::Push
;untracked_files = ignore

;[FakeRelease]
3 changes: 2 additions & 1 deletion lib/Daemon/Device.pm
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package Daemon::Device;
# ABSTRACT: Forking daemon device construct

use 5.012;
use strict;
use warnings;
use 5.0113;

use Daemon::Control;
use Carp qw( croak carp );
use POSIX ":sys_wait_h";
Expand Down

0 comments on commit b4863bd

Please sign in to comment.