Skip to content

Commit 8db1107

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.10
1 parent bd4c163 commit 8db1107

File tree

15 files changed

+253
-0
lines changed

15 files changed

+253
-0
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
TagBot:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: JuliaRegistries/TagBot@v1
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}
13+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
/Manifest.toml
3+
/docs/build/

.travis.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia
2+
language: julia
3+
notifications:
4+
email: false
5+
julia:
6+
- 1
7+
- 1.0
8+
- nightly
9+
os:
10+
- linux
11+
- osx
12+
- windows
13+
arch:
14+
- x64
15+
cache:
16+
directories:
17+
- ~/.julia/artifacts
18+
jobs:
19+
fast_finish: true
20+
allow_failures:
21+
- julia: nightly
22+
include:
23+
- stage: Documentation
24+
julia: 1
25+
script: |
26+
julia --project=docs -e '
27+
using Pkg
28+
Pkg.develop(PackageSpec(path=pwd()))
29+
Pkg.instantiate()
30+
using Documenter: doctest
31+
using BlockScalars
32+
doctest(BlockScalars)
33+
include("docs/make.jl")'
34+
after_success: skip

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Invenia Technical Computing Corporation
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.

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "BlockScalars"
2+
uuid = "1e8d2bf6-9821-4900-9a2f-4d87552df2bd"
3+
authors = ["Invenia Technical Computing Corporation"]
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+
# BlockScalars
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/BlockScalars.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://invenia.github.io/BlockScalars.jl/dev)
5+
[![Build Status](https://travis-ci.com/invenia/BlockScalars.jl.svg?branch=master)](https://travis-ci.com/invenia/BlockScalars.jl)
6+
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
7+
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)

docs/Manifest.toml

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

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
BlockScalars = "1e8d2bf6-9821-4900-9a2f-4d87552df2bd"
3+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using BlockScalars
2+
using Documenter
3+
4+
makedocs(;
5+
modules=[BlockScalars],
6+
authors="Invenia Technical Computing Corporation",
7+
repo="https://github.com/invenia/BlockScalars.jl/blob/{commit}{path}#L{line}",
8+
sitename="BlockScalars.jl",
9+
format=Documenter.HTML(;
10+
prettyurls=get(ENV, "CI", "false") == "true",
11+
canonical="https://invenia.github.io/BlockScalars.jl",
12+
assets=String[],
13+
),
14+
pages=[
15+
"Home" => "index.md",
16+
],
17+
strict=true,
18+
checkdocs=:exports,
19+
)
20+
21+
deploydocs(;
22+
repo="github.com/invenia/BlockScalars.jl",
23+
)

0 commit comments

Comments
 (0)