Skip to content

Commit af7d880

Browse files
committed
add API Doc to configuration package and header to exception package files
1 parent e5df33b commit af7d880

File tree

207 files changed

+1049
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+1049
-281
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
12
name: Build
23
on: [push]
34
jobs:

.github/workflows/linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
12
name: Linter
23
on: [push]
34
jobs:

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
12
name: Publish documentation to project website and Package to Maven Central Repository
23
on:
3-
# release:
4-
# types: [created]
5-
[push]
4+
release:
5+
types: [created]
66
jobs:
77
publish-doc:
88
runs-on: ubuntu-20.04
@@ -23,9 +23,7 @@ jobs:
2323
source .workflow-scripts/put_scala_docs_aside.sh ./target ../api_docs
2424
cp .workflow-scripts/move_scala_docs.sh ../api_docs/
2525
cp .workflow-scripts/update_json_api_versions.py ../api_docs/
26-
echo "$scala_versions"
2726
echo "scala_versions=$scala_versions" >> $GITHUB_ENV
28-
echo "$api_version"
2927
echo "api_version=$api_version" >> $GITHUB_ENV
3028
- name: Git checkout on gh-pages
3129
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
12
name: Unittests
23
on: [push]
34
jobs:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
2+
13
*.class
24
*.log
35

.img/boolean_logical_tree.png

-55.7 KB
Loading

.img/jsonlogicscala_logo.jpg

638 KB
Loading

.workflow-scripts/move_scala_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
22

33
# shellcheck disable=SC2154
44
for scala_version in $scala_versions

.workflow-scripts/put_scala_docs_aside.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
# Copyright 2019 celadari. All rights reserved. MIT license.
22

33
# shellcheck disable=SC2010
44
scala_versions=$(ls "$1" | grep -Eo "[0-9]\.[0-9][0-9]" | tr '\n' ' ')

.workflow-scripts/update_json_api_versions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# Copyright 2019 celadari. All rights reserved. MIT license.
23

34
import argparse
45
import json

0 commit comments

Comments
 (0)