Added .gitignore, .travis.yml and MANIFEST.SKIP
This commit is contained in:
parent
50ef24bea6
commit
445e4b9833
3 changed files with 25 additions and 0 deletions
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
Parse-RPM-Spec-*.tar.gz
|
||||
Parse-RPM-Spec/
|
||||
Build
|
||||
Changes
|
||||
META.json
|
||||
META.yml
|
||||
MYMETA.json
|
||||
MYMETA.yml
|
||||
Makefile.PL
|
||||
_build/
|
||||
blib/
|
||||
cover_db/
|
12
.travis.yml
Normal file
12
.travis.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
language: perl
|
||||
perl:
|
||||
- "5.12"
|
||||
- "5.14"
|
||||
- "5.16"
|
||||
- "5.18"
|
||||
- "5.20"
|
||||
|
||||
before_install:
|
||||
cpanm -n Devel::Cover::Report::Coveralls
|
||||
script:
|
||||
perl Build.PL && ./Build build && cover -test -report coveralls
|
1
MANIFEST.SKIP
Normal file
1
MANIFEST.SKIP
Normal file
|
@ -0,0 +1 @@
|
|||
^MYMETA.yml$
|
Loading…
Add table
Reference in a new issue