Skip to content

Commit

Permalink
initial setup for the documentation dist
Browse files Browse the repository at this point in the history
  • Loading branch information
genio committed Sep 5, 2016
0 parents commit 903cc79
Show file tree
Hide file tree
Showing 15 changed files with 1,182 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Set default behaviour, in case users don't have core.autocrlf set.
* text=lf

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text eol=lf
*.h text eol=lf
*.pl text eol=lf
*.pm text eol=lf
*.php text eol=lf
*.t text eol=lf
*.html text eol=lf

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary

.gitattributes export-ignore
.gitignore export-ignore
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Exceptions-*.tar.gz
Exceptions-*/
Build
META.yml
MYMETA.json
MYMETA.yml
_build/
blib/
cover_db/
.build/
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Chase Whitener <[email protected]> <[email protected]>
Chase Whitener <[email protected]> <[email protected]>
12 changes: 12 additions & 0 deletions .perltidyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
-pbp # Start with Perl Best Practices
-w # Show all warnings
-iob # Ignore old breakpoints
-l=80 # 80 characters per line
-mbl=2 # No more than 2 blank lines
-i=4 # Indentation is 2 columns
-ci=4 # Continuation indentation is 2 columns
-vt=0 # Less vertical tightness
-pt=2 # High parenthesis tightness
-bt=2 # High brace tightness
-sbt=2 # High square bracket tightness
-isbc # Don't indent comments without leading space
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: perl
perl:
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"
env:
- "AUTOMATED_TESTING=1 AUTHOR_TESTING=1 RELEASE_TESTING=1"
install:
- "cpanm -n Test::More Test::Pod Test::Pod::Coverage Test::CheckManifest"
- "cpanm -n Test::CPAN::Changes Test::Kwalitee Test::Pod::Spelling::CommonMistakes"
- "cpanm -n --installdeps ."
script:
- perl Makefile.PL && make manifest && make test
sudo: false
notifications:
email: false
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- Dist::Zilla now used

0.01 Wed Nov 27 13:48:49 1996
- original version; created by h2xs 1.1.1.10
Loading

0 comments on commit 903cc79

Please sign in to comment.