Skip to content

Commit a0d922f

Browse files
authored
Merge pull request #10 from gaelforget/docs
add deploydocs and doc badges
2 parents 8303851 + d6dd8f6 commit a0d922f

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.jl.*.cov
33
*.jl.mem
44
devel
5+
docs/build/

Diff for: README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
[![codecov](https://codecov.io/gh/gaelforget/GCMFaces.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/gaelforget/GCMFaces.jl)
66
[![Coverage Status](https://coveralls.io/repos/github/gaelforget/GCMFaces_jl/badge.svg?branch=master)](https://coveralls.io/github/gaelforget/GCMFaces_jl?branch=master)
77
[![DOI](https://zenodo.org/badge/143987632.svg)](https://zenodo.org/badge/latestdoi/143987632)
8+
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://gaelforget.github.io/MeshArrays.jl/stable)
9+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://gaelforget.github.io/MeshArrays.jl/dev)
810

911
This repository contains the `MeshArrays.jl` package introduced at the [JuliaCon-2018](http://juliacon.org/2018/) conference by [this presentation](https://youtu.be/RDxAy_zSUvg). The code has passed a full test suite with `julia v0.7 and v1.0` but is still regarded as a **preliminary implementation**.
1012

@@ -14,7 +16,7 @@ To install this `Julia` package first execute `add MeshArrays` at the `pkg>` pro
1416

1517
### Main Package Features
1618

17-
`MeshArrays.jl` primarily defines composite types that embed inter-connected array collections within a `struct` and provides an `exchange` function that effectively transfers data between connected arrays.
19+
`MeshArrays.jl` primarily defines composite types that embed inter-connected array collections within a `struct` and provides an `exchange` function that effectively transfers data between connected arrays.
1820

1921
The composite types specify how each array collection forms a mesh and provide information to allow `exchange` to dispatch to the appropriate method. Various configurations that are commonly used in `Earth System Models` are implemented using the concrete type called `gcmfaces`. Embedded arrays, or meshes, each represent a subdomain within, e.g., an Earth System Model grid.
2022

@@ -32,8 +34,4 @@ wget --recursive {$DemoGrids}/GRID_LLC90/
3234
mv mit.ecco-group.org/gforget/grid_examples/GRID_* .
3335
```
3436

35-
But the [JuliaCon2018Notebooks repo](https://github.com/gaelforget/JuliaCon2018Notebooks.git) also contains `demo_smooth.ipynb` which illustrates how the `smooth` function is used for CI testing purposes and does not require downloading any of the predefined grids.
36-
37-
38-
39-
37+
But the [JuliaCon2018Notebooks repo](https://github.com/gaelforget/JuliaCon2018Notebooks.git) also contains `demo_smooth.ipynb` which illustrates how the `smooth` function is used for CI testing purposes and does not require downloading any of the predefined grids.

Diff for: docs/make.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ makedocs(
1010
# Documenter can also automatically deploy documentation to gh-pages.
1111
# See "Hosting Documentation" and deploydocs() in the Documenter manual
1212
# for more information.
13-
#=deploydocs(
14-
repo = "<repository url>"
15-
)=#
13+
deploydocs(
14+
repo = "github.com/gaelforget/MeshArrays.jl.git",
15+
)

0 commit comments

Comments
 (0)