Skip to content

Commit 8b53669

Browse files
committed
Files generated by PkgTemplates
1 parent 6152747 commit 8b53669

10 files changed

+90
-0
lines changed

.codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
*.jl.cov
3+
*.jl.*.cov
4+
*.jl.mem
5+
/docs/build/
6+
/docs/site/

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 0.6
8+
- nightly
9+
matrix:
10+
allow_failures:
11+
- julia: nightly
12+
fast_finish: true
13+
notifications:
14+
email: false
15+
script:
16+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17+
- julia -e 'Pkg.clone(pwd()); Pkg.build("LibPQ"); Pkg.test("LibPQ"; coverage=true)'
18+
after_success:
19+
- julia -e 'cd(Pkg.dir("LibPQ")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
20+
- julia -e 'Pkg.add("Documenter"); cd(Pkg.dir("LibPQ")); include(joinpath("docs", "make.jl"))'

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2017 Eric Davies
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# LibPQ
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://iamed2.github.io/LibPQ.jl/stable)
4+
[![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://iamed2.github.io/LibPQ.jl/latest)
5+
[![Build Status](https://travis-ci.org/iamed2/LibPQ.jl.svg?branch=master)](https://travis-ci.org/iamed2/LibPQ.jl)
6+
[![CodeCov](https://codecov.io/gh/iamed2/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/iamed2/LibPQ.jl)

REQUIRE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
julia 0.6

docs/make.jl

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using Documenter, LibPQ
2+
3+
makedocs(;
4+
modules=[LibPQ],
5+
format=:html,
6+
pages=[
7+
"Home" => "index.md",
8+
],
9+
repo="https://github.com/iamed2/LibPQ.jl/blob/{commit}{path}#L{line}",
10+
sitename="LibPQ.jl",
11+
authors="Eric Davies",
12+
assets=[],
13+
)
14+
15+
deploydocs(;
16+
repo="github.com/iamed2/LibPQ.jl",
17+
target="build",
18+
julia="0.6",
19+
deps=nothing,
20+
make=nothing,
21+
)

docs/src/index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# LibPQ
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://iamed2.github.io/LibPQ.jl/stable)
4+
[![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://iamed2.github.io/LibPQ.jl/latest)
5+
[![Build Status](https://travis-ci.org/iamed2/LibPQ.jl.svg?branch=master)](https://travis-ci.org/iamed2/LibPQ.jl)
6+
[![CodeCov](https://codecov.io/gh/iamed2/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/iamed2/LibPQ.jl)

src/LibPQ.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module LibPQ
2+
3+
# Package code goes here.
4+
5+
end

test/runtests.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
using LibPQ
2+
using Base.Test
3+
4+
# Write your own tests here.
5+
@test 1 == 2

0 commit comments

Comments
 (0)