Skip to content

Commit eaa3f28

Browse files
committed
Files generated by PkgTemplates
1 parent 5ab438d commit eaa3f28

File tree

11 files changed

+201
-0
lines changed

11 files changed

+201
-0
lines changed

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

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "FresnelIntegrals"
2+
uuid = "88497964-e39a-11e9-0fb5-b1bf0ffe80fe"
3+
authors = ["Kiran Shila\n <[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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# FresnelIntegrals
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://kiranshila.github.io/FresnelIntegrals.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://kiranshila.github.io/FresnelIntegrals.jl/dev)
5+
[![Build Status](https://travis-ci.com/kiranshila/FresnelIntegrals.jl.svg?branch=master)](https://travis-ci.com/kiranshila/FresnelIntegrals.jl)
6+
[![Codecov](https://codecov.io/gh/kiranshila/FresnelIntegrals.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/kiranshila/FresnelIntegrals.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 = "0513f1a8991e9d83255e0140aace0d0fc4486600"
17+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
18+
version = "0.8.0"
19+
20+
[[Documenter]]
21+
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
22+
git-tree-sha1 = "1b6ae3796f60311e39cd1770566140d2c056e87f"
23+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
24+
version = "0.23.3"
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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using Documenter, FresnelIntegrals
2+
3+
makedocs(;
4+
modules=[FresnelIntegrals],
5+
format=Documenter.HTML(),
6+
pages=[
7+
"Home" => "index.md",
8+
],
9+
repo="https://github.com/kiranshila/FresnelIntegrals.jl/blob/{commit}{path}#L{line}",
10+
sitename="FresnelIntegrals.jl",
11+
authors="Kiran Shila
12+
13+
assets=String[],
14+
)
15+
16+
deploydocs(;
17+
repo="github.com/kiranshila/FresnelIntegrals.jl",
18+
)

docs/src/index.md

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

src/FresnelIntegrals.jl

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

0 commit comments

Comments
 (0)