Skip to content

Commit 93b5cb9

Browse files
committed
LoggingExtras.jl generated files.
license: MIT authors: (name = "Lyndon White", email = "[email protected]") years: 2018 user: oxinabox Julia Version 0.7.0 [a4cb80f3ed]
1 parent f392b12 commit 93b5cb9

File tree

8 files changed

+88
-0
lines changed

8 files changed

+88
-0
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem
4+
/Manifest.toml

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 0.7
8+
- nightly
9+
notifications:
10+
email: false
11+
12+
# comment the following lines to disallow failures on nightly julia
13+
matrix:
14+
allow_failures:
15+
- julia: nightly
16+
17+
## uncomment and modify the following lines to manually install system packages
18+
#addons:
19+
# apt: # apt-get for linux
20+
# packages:
21+
# - gfortran
22+
#before_script: # homebrew for mac
23+
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
24+
25+
## uncomment the following lines to override the default test script
26+
#script:
27+
# - julia -e 'import Pkg; Pkg.build(); Pkg.test(; coverage=true)'
28+
29+
after_success:
30+
# push coverage results to Codecov
31+
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

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

Project.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
authors = ["Lyndon White <[email protected]>"]
2+
name = "LoggingExtras"
3+
uuid = "bda5643c-bbc4-11e8-2bd7-9ffae705afc0"
4+
version = "0.1.0"
5+
6+
[deps]
7+
8+
[compat]
9+
julia = "0.7"
10+
11+
[extras]
12+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
14+
[targets]
15+
test = ["Test"]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# LoggingExtras
2+
3+
[![Build Status](https://travis-ci.org/oxinabox/LoggingExtras.jl.svg?branch=master)](https://travis-ci.org/oxinabox/LoggingExtras.jl)
4+
5+
[![codecov.io](http://codecov.io/github/oxinabox/LoggingExtras.jl/coverage.svg?branch=master)](http://codecov.io/github/oxinabox/LoggingExtras.jl?branch=master)

src/LoggingExtras.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module LoggingExtras
2+
3+
greet() = print("Hello World!")
4+
5+
end # module

test/runtests.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
using LoggingExtras
2+
using Test
3+
4+
# write your own tests here
5+
@test 1 == 2

0 commit comments

Comments
 (0)