Skip to content

Commit 23fb69d

Browse files
committed
Files generated by PkgTemplates
1 parent cd043fd commit 23fb69d

12 files changed

+231
-0
lines changed

.appveyor.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Documentation: https://github.com/JuliaCI/Appveyor.jl
2+
environment:
3+
matrix:
4+
- julia_version: 1.0
5+
- julia_version: nightly
6+
platform:
7+
- x86
8+
- x64
9+
matrix:
10+
allow_failures:
11+
- julia_version: nightly
12+
branches:
13+
only:
14+
- master
15+
- /release-.*/
16+
notifications:
17+
- provider: Email
18+
on_build_success: false
19+
on_build_failure: false
20+
on_build_status_changed: false
21+
install:
22+
- ps: iex ((new-object net.webclient).DownloadString("https://github.com/raw/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
23+
build_script:
24+
- echo "%JL_BUILD_SCRIPT%"
25+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
26+
test_script:
27+
- echo "%JL_TEST_SCRIPT%"
28+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
29+
on_success:
30+
- echo "%JL_CODECOV_SCRIPT%"
31+
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.jl.*.cov
2+
*.jl.cov
3+
*.jl.mem
4+
.DS_Store
5+
/Manifest.toml
6+
/dev/
7+
/docs/build/
8+
/docs/site/

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 1.0
8+
- nightly
9+
matrix:
10+
allow_failures:
11+
- julia: nightly
12+
fast_finish: true
13+
notifications:
14+
email: false
15+
after_success:
16+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
17+
jobs:
18+
include:
19+
- stage: Documentation
20+
julia: 1.0
21+
script: julia --project=docs -e '
22+
using Pkg;
23+
Pkg.develop(PackageSpec(path=pwd()));
24+
Pkg.instantiate();
25+
include("docs/make.jl");'
26+
after_success: skip

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2019 Chris Foster <[email protected]>
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.

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "TerminalLoggers"
2+
uuid = "5d786b92-1e48-4d6f-9151-6b4477ca9bed"
3+
authors = ["Chris Foster <[email protected]>"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# TerminalLoggers
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://c42f.github.io/TerminalLoggers.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://c42f.github.io/TerminalLoggers.jl/dev)
5+
[![Build Status](https://travis-ci.com/c42f/TerminalLoggers.jl.svg?branch=master)](https://travis-ci.com/c42f/TerminalLoggers.jl)
6+
[![Build Status](https://ci.appveyor.com/api/projects/status/github/c42f/TerminalLoggers.jl?svg=true)](https://ci.appveyor.com/project/c42f/TerminalLoggers-jl)
7+
[![Codecov](https://codecov.io/gh/c42f/TerminalLoggers.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/c42f/TerminalLoggers.jl)

docs/Manifest.toml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[Base64]]
4+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
5+
6+
[[Dates]]
7+
deps = ["Printf"]
8+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
9+
10+
[[Distributed]]
11+
deps = ["Random", "Serialization", "Sockets"]
12+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
13+
14+
[[DocStringExtensions]]
15+
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
16+
git-tree-sha1 = "88bb0edb352b16608036faadcc071adda068582a"
17+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
18+
version = "0.8.1"
19+
20+
[[Documenter]]
21+
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
22+
git-tree-sha1 = "d45c163c7a3ae293c15361acc52882c0f853f97c"
23+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
24+
version = "0.23.4"
25+
26+
[[InteractiveUtils]]
27+
deps = ["Markdown"]
28+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
29+
30+
[[JSON]]
31+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
32+
git-tree-sha1 = "b34d7cef7b337321e97d22242c3c2b91f476748e"
33+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
34+
version = "0.21.0"
35+
36+
[[LibGit2]]
37+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
38+
39+
[[Logging]]
40+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
41+
42+
[[Markdown]]
43+
deps = ["Base64"]
44+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
45+
46+
[[Mmap]]
47+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
48+
49+
[[Parsers]]
50+
deps = ["Dates", "Test"]
51+
git-tree-sha1 = "ef0af6c8601db18c282d092ccbd2f01f3f0cd70b"
52+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
53+
version = "0.3.7"
54+
55+
[[Pkg]]
56+
deps = ["Dates", "LibGit2", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
57+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
58+
59+
[[Printf]]
60+
deps = ["Unicode"]
61+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
62+
63+
[[REPL]]
64+
deps = ["InteractiveUtils", "Markdown", "Sockets"]
65+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
66+
67+
[[Random]]
68+
deps = ["Serialization"]
69+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
70+
71+
[[SHA]]
72+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
73+
74+
[[Serialization]]
75+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
76+
77+
[[Sockets]]
78+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
79+
80+
[[Test]]
81+
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
82+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
83+
84+
[[UUIDs]]
85+
deps = ["Random", "SHA"]
86+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
87+
88+
[[Unicode]]
89+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

docs/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using Documenter, TerminalLoggers
2+
3+
makedocs(;
4+
modules=[TerminalLoggers],
5+
format=Documenter.HTML(),
6+
pages=[
7+
"Home" => "index.md",
8+
],
9+
repo="https://github.com/c42f/TerminalLoggers.jl/blob/{commit}{path}#L{line}",
10+
sitename="TerminalLoggers.jl",
11+
authors="Chris Foster <[email protected]>",
12+
assets=String[],
13+
)
14+
15+
deploydocs(;
16+
repo="github.com/c42f/TerminalLoggers.jl",
17+
)

docs/src/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# TerminalLoggers.jl
2+
3+
```@index
4+
```
5+
6+
```@autodocs
7+
Modules = [TerminalLoggers]
8+
```

src/TerminalLoggers.jl

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

test/runtests.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using TerminalLoggers
2+
using Test
3+
4+
@testset "TerminalLoggers.jl" begin
5+
# Write your own tests here.
6+
end

0 commit comments

Comments
 (0)