Skip to content

Commit

Permalink
Change refs after name change QHull -> QuickHull
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Lycken committed Sep 9, 2016
1 parent 4b42234 commit db4a69c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ notifications:
email: false
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("QHull")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("QuickHull")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("QHull")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("QuickHull")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# generate and push Documentation
- julia -e 'cd(Pkg.dir("QHull")); Pkg.add("Documenter"); include(joinpath("docs","make.jl"))'
- julia -e 'cd(Pkg.dir("QuickHull")); Pkg.add("Documenter"); include(joinpath("docs","make.jl"))'
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The QHull.jl package is licensed under the MIT "Expat" License:
The QuickHull.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2016: Tomas Lycken.
>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# QHull
# QuickHull

[![Build Status](https://travis-ci.org/tlycken/QHull.jl.svg?branch=master)](https://travis-ci.org/tomas.lycken@gmail.com/QHull.jl)
[![Build Status](https://travis-ci.org/tlycken/QuickHull.jl.svg?branch=master)](https://travis-ci.org/tlycken/QuickHull.jl)

[![Coverage Status](https://coveralls.io/repos/tlycken/QHull.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/tomas.lycken@gmail.com/QHull.jl?branch=master)
[![Coverage Status](https://coveralls.io/repos/tlycken/QuickHull.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/tlycken/QuickHull.jl?branch=master)

[![codecov.io](http://codecov.io/github/tlycken/QHull.jl/coverage.svg?branch=master)](http://codecov.io/github/tomas.lycken@gmail.com/QHull.jl?branch=master)
[![codecov.io](http://codecov.io/github/tlycken/QuickHull.jl/coverage.svg?branch=master)](http://codecov.io/github/tlycken/QuickHull.jl?branch=master)
2 changes: 1 addition & 1 deletion src/QHull.jl → src/QuickHull.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module QHull
module QuickHull

using FixedSizeArrays

Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module QHullTests
module QuickHullTests

using QHull
using QuickHull
using Base.Test
using FixedSizeArrays

Expand Down

0 comments on commit db4a69c

Please sign in to comment.